-
Notifications
You must be signed in to change notification settings - Fork 31
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Complete rewrite of the JS part of the UI
With this commit the previous frameworks: - backbone, - foundation, - rickshaw, - bower. Are replaced by: - VueJS, - Vuetify, - d3, - vitejs. Co-authored-by: Marion Giusti <[email protected]> Co-authored-by: Pierre-Louis GONON <[email protected]>
- Loading branch information
Showing
50 changed files
with
10,107 additions
and
357 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
powa/static/dist |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
module.exports = { | ||
root: true, | ||
env: { | ||
node: true, | ||
}, | ||
extends: ["eslint:recommended", "plugin:vue/vue3-recommended", "prettier"], | ||
rules: { | ||
"vue/multi-word-component-names": [ | ||
"error", | ||
{ | ||
ignores: [ | ||
"Content", | ||
"Dashboard", | ||
"Graph", | ||
"Grid", | ||
"Tabcontainer", | ||
"Wizard", | ||
], | ||
}, | ||
], | ||
"vue/valid-v-slot": [ | ||
"error", | ||
{ | ||
allowModifiers: true, | ||
}, | ||
], | ||
"vue/no-v-html": "off", | ||
}, | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -7,6 +7,5 @@ powa/static/build/ | |
powa-web.conf | ||
build | ||
powa.egg.info | ||
dist | ||
.*.sw? | ||
.pypirc |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
#!/usr/bin/env sh | ||
. "$(dirname -- "$0")/_/husky.sh" | ||
|
||
npm run lint | ||
npm run format |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
{} |
Oops, something went wrong.