Skip to content

Commit

Permalink
Updated UI with vue-3 and PrimeVue components
Browse files Browse the repository at this point in the history
  • Loading branch information
mrin9 committed Feb 11, 2021
1 parent 3f11e4b commit 592e8bc
Show file tree
Hide file tree
Showing 46 changed files with 36,532 additions and 14 deletions.

This file was deleted.

10 changes: 0 additions & 10 deletions web-api/src/main/webapp/welcome.html

This file was deleted.

3 changes: 3 additions & 0 deletions web-ui/.browserslistrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
> 1%
last 2 versions
not dead
7 changes: 7 additions & 0 deletions web-ui/.editorconfig
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
[*.{js,jsx,ts,tsx,vue}]
indent_style = space
indent_size = 2
end_of_line = lf
trim_trailing_whitespace = true
insert_final_newline = true
max_line_length = 100
27 changes: 27 additions & 0 deletions web-ui/.eslintrc.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
module.exports = {
root: true,
env: {
node: true,
},
extends: [
'plugin:vue/vue3-essential',
'@vue/airbnb',
'@vue/typescript/recommended',
],
parserOptions: {
ecmaVersion: 2020,
},
rules: {
'no-console': process.env.NODE_ENV === 'production' ? 'warn' : 'off',
'no-debugger': process.env.NODE_ENV === 'production' ? 'warn' : 'off',
'max-len': [2, 200, 2],
'object-curly-newline': [
'warn', {
ObjectExpression: { multiline: true, minProperties: 5, consistent: true },
ObjectPattern: { multiline: true, minProperties: 5, consistent: true },
ImportDeclaration: 'never',
ExportDeclaration: 'never',
},
],
},
};
23 changes: 23 additions & 0 deletions web-ui/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
.DS_Store
node_modules
/dist


# local env files
.env.local
.env.*.local

# Log files
npm-debug.log*
yarn-debug.log*
yarn-error.log*
pnpm-debug.log*

# Editor directories and files
.idea
.vscode
*.suo
*.ntvs*
*.njsproj
*.sln
*.sw?
5 changes: 5 additions & 0 deletions web-ui/babel.config.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
module.exports = {
presets: [
'@vue/cli-plugin-babel/preset',
],
};
Loading

0 comments on commit 592e8bc

Please sign in to comment.