Compare commits
2 Commits
dfb924bb3f
...
5952c9b7f2
Author | SHA1 | Date |
---|---|---|
Ferdinand Thiessen | 5952c9b7f2 | |
Ferdinand Thiessen | 73f50e9f4f |
15
.eslintrc.js
15
.eslintrc.js
|
@ -76,13 +76,20 @@ module.exports = {
|
|||
// add your custom rules here
|
||||
rules: {
|
||||
// VueStuff
|
||||
'vue/multi-word-component-names': 'off',
|
||||
// Defaults to error on eslint-plugin-vue 8.0.3, but let us be not too strict with names
|
||||
'vue/multi-word-component-names': 'warn',
|
||||
|
||||
// Misc
|
||||
// Rejects on promises should always be of the Error type (and allow empty rejects as well)
|
||||
'prefer-promise-reject-errors': ["error", {"allowEmptyReject": true}],
|
||||
|
||||
// TypeScript
|
||||
quotes: ['warn', 'single', { avoidEscape: true }],
|
||||
// Allow " if ' is contained inside the string, so we can avoid escaping
|
||||
quotes: [
|
||||
process.env.NODE_ENV === 'production' ? 'error' : 'warn',
|
||||
'single',
|
||||
{ avoidEscape: true }
|
||||
],
|
||||
|
||||
// TypeScript, let us be not too strict
|
||||
'@typescript-eslint/explicit-function-return-type': 'off',
|
||||
'@typescript-eslint/explicit-module-boundary-types': 'off',
|
||||
|
||||
|
|
28
package.json
28
package.json
|
@ -17,27 +17,27 @@
|
|||
"dependencies": {
|
||||
"@flaschengeist/api": "file:./api",
|
||||
"@flaschengeist/users": "^1.0.0-alpha.1",
|
||||
"axios": "^0.21.1",
|
||||
"axios": "^0.24.0",
|
||||
"cordova": "^10.0.0",
|
||||
"pinia": "^2.0.0-rc.6",
|
||||
"quasar": "^2.0.4"
|
||||
"pinia": "^2.0.2",
|
||||
"quasar": "^2.3.1"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@flaschengeist/types": "^1.0.0-alpha.4",
|
||||
"@quasar/app": "^3.1.0",
|
||||
"@quasar/extras": "^1.10.12",
|
||||
"@types/node": "^12.20.21",
|
||||
"@quasar/app": "^3.2.1",
|
||||
"@quasar/extras": "^1.11.5",
|
||||
"@types/node": "^12.20.37",
|
||||
"@types/webpack": "^5.28.0",
|
||||
"@types/webpack-env": "^1.16.2",
|
||||
"@typescript-eslint/eslint-plugin": "^4.29.3",
|
||||
"@typescript-eslint/parser": "^4.29.3",
|
||||
"eslint": "^7.32.0",
|
||||
"@types/webpack-env": "^1.16.3",
|
||||
"@typescript-eslint/eslint-plugin": "^5.3.1",
|
||||
"@typescript-eslint/parser": "^5.3.1",
|
||||
"eslint": "^8.2.0",
|
||||
"eslint-config-prettier": "^8.3.0",
|
||||
"eslint-plugin-vue": "^7.17.0",
|
||||
"eslint-webpack-plugin": "^3.0.1",
|
||||
"eslint-plugin-vue": "^8.0.3",
|
||||
"eslint-webpack-plugin": "^3.1.0",
|
||||
"modify-source-webpack-plugin": "^3.0.0",
|
||||
"prettier": "^2.3.2",
|
||||
"typescript": "~4.3.5",
|
||||
"prettier": "^2.4.1",
|
||||
"typescript": "^4.4.4",
|
||||
"vuedraggable": "^4.1.0"
|
||||
},
|
||||
"prettier": {
|
||||
|
|
|
@ -16,7 +16,7 @@ import { hasPermissions } from '@flaschengeist/api';
|
|||
import { FG_Plugin } from '@flaschengeist/types';
|
||||
|
||||
export default defineComponent({
|
||||
name: 'Dashboard',
|
||||
name: 'PageDashboard',
|
||||
setup() {
|
||||
const flaschengeist = inject<FG_Plugin.Flaschengeist>('flaschengeist');
|
||||
const widgets = computed(() => {
|
||||
|
|
|
@ -77,7 +77,7 @@ import { setBaseURL, api } from 'boot/axios';
|
|||
import { useQuasar } from 'quasar';
|
||||
|
||||
export default defineComponent({
|
||||
name: 'Login',
|
||||
name: 'PageLogin',
|
||||
components: { PasswordInput },
|
||||
setup() {
|
||||
const mainStore = useMainStore();
|
||||
|
@ -145,7 +145,8 @@ export default defineComponent({
|
|||
Notify.create({
|
||||
group: false,
|
||||
type: 'ongoing',
|
||||
message: 'Sollte der Benutzername korrekt und vorhanden sein, erhälst du jetzt eine E-Mail.',
|
||||
message:
|
||||
'Sollte der Benutzername korrekt und vorhanden sein, erhälst du jetzt eine E-Mail.',
|
||||
timeout: 10000,
|
||||
progress: true,
|
||||
actions: [{ icon: 'mdi-close', color: 'white' }],
|
||||
|
|
|
@ -39,14 +39,15 @@ import { defineComponent, ref, onUnmounted } from 'vue';
|
|||
import { useRouter } from 'vue-router';
|
||||
|
||||
export default defineComponent({
|
||||
name: 'Offline',
|
||||
name: 'PageOffline',
|
||||
setup() {
|
||||
const router = useRouter();
|
||||
const reload = ref(10);
|
||||
const ival = setInterval(() => {
|
||||
reload.value -= 1;
|
||||
if (reload.value <= 0) {
|
||||
if (router.currentRoute.value.params && 'refresh' in router.currentRoute.value.params) router.go(0);
|
||||
if (router.currentRoute.value.params && 'refresh' in router.currentRoute.value.params)
|
||||
router.go(0);
|
||||
const path = router.currentRoute.value.query.redirect;
|
||||
void router.replace(path ? { path: <string>path } : { name: 'login' });
|
||||
}
|
||||
|
|
|
@ -38,7 +38,7 @@
|
|||
import { defineComponent } from 'vue';
|
||||
|
||||
export default defineComponent({
|
||||
name: 'PluginError',
|
||||
name: 'PagePluginError',
|
||||
});
|
||||
</script>
|
||||
|
||||
|
|
|
@ -40,7 +40,7 @@ import { Loading, Notify } from 'quasar';
|
|||
import { defineComponent, ref } from 'vue';
|
||||
|
||||
export default defineComponent({
|
||||
// name: 'PageName'
|
||||
name: 'PageReset',
|
||||
setup() {
|
||||
const mainStore = useMainStore();
|
||||
const router = useRouter();
|
||||
|
|
|
@ -92,7 +92,7 @@ const developers = [
|
|||
},
|
||||
];
|
||||
export default defineComponent({
|
||||
name: 'About',
|
||||
name: 'PageAbout',
|
||||
components: { Developer },
|
||||
setup() {
|
||||
const plugins = inject<FG_Plugin.Flaschengeist>('flaschengeist')?.plugins || [];
|
||||
|
|
Loading…
Reference in New Issue