Fixed Typings
This commit is contained in:
parent
a1f1be7fb6
commit
ef71481931
|
@ -27,13 +27,15 @@ export default boot<Store<StateInterface>>(({ router, store }) => {
|
||||||
to.matched.every((record: RouteRecord) => {
|
to.matched.every((record: RouteRecord) => {
|
||||||
if (!('meta' in record) || !('permissions' in record.meta))
|
if (!('meta' in record) || !('permissions' in record.meta))
|
||||||
return true;
|
return true;
|
||||||
const test = record.meta.permissions.every((permission: string) => {
|
if (record.meta) {
|
||||||
|
if ((<{permissions: FG.Permission[]}>record.meta).permissions) {
|
||||||
|
return (<{permissions: FG.Permission[]}>record.meta).permissions.every((permission: string) => {
|
||||||
return permissions.includes(
|
return permissions.includes(
|
||||||
permission
|
permission
|
||||||
);
|
);
|
||||||
})
|
})
|
||||||
console.log('permissions', test)
|
}
|
||||||
return test
|
}
|
||||||
})
|
})
|
||||||
) {
|
) {
|
||||||
next();
|
next();
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
<template>
|
<template>
|
||||||
<q-item clickable tag="a" target="self" :to="{ name: link }">
|
<q-item clickable tag="a" target="self" :to="{ name: link }" v-if="hasPermissions">
|
||||||
<q-item-section v-if="icon" avatar>
|
<q-item-section v-if="icon" avatar>
|
||||||
<q-icon :name="icon"/>
|
<q-icon :name="icon"/>
|
||||||
</q-item-section>
|
</q-item-section>
|
||||||
|
@ -7,7 +7,7 @@
|
||||||
<q-item-section>
|
<q-item-section>
|
||||||
<q-item-label>{{ realTitle }}</q-item-label>
|
<q-item-label>{{ realTitle }}</q-item-label>
|
||||||
<q-item-label caption>
|
<q-item-label caption>
|
||||||
{{ caption }}
|
{{ permissions }}
|
||||||
</q-item-label>
|
</q-item-label>
|
||||||
</q-item-section>
|
</q-item-section>
|
||||||
</q-item>
|
</q-item>
|
||||||
|
@ -15,6 +15,8 @@
|
||||||
|
|
||||||
<script lang="ts">
|
<script lang="ts">
|
||||||
import {computed, defineComponent} from '@vue/composition-api';
|
import {computed, defineComponent} from '@vue/composition-api';
|
||||||
|
import {Store} from 'vuex'
|
||||||
|
import {StateInterface} from "src/store";
|
||||||
|
|
||||||
export default defineComponent({
|
export default defineComponent({
|
||||||
name: 'EssentialLink',
|
name: 'EssentialLink',
|
||||||
|
@ -37,6 +39,9 @@ export default defineComponent({
|
||||||
icon: {
|
icon: {
|
||||||
type: String,
|
type: String,
|
||||||
default: ''
|
default: ''
|
||||||
|
},
|
||||||
|
permissions: {
|
||||||
|
default: undefined
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
|
||||||
|
@ -53,7 +58,18 @@ export default defineComponent({
|
||||||
}
|
}
|
||||||
return props.title;
|
return props.title;
|
||||||
});
|
});
|
||||||
return { realTitle: title };
|
|
||||||
|
const hasPermissions = computed(() => {
|
||||||
|
let permissions = props.permissions
|
||||||
|
if (permissions) {
|
||||||
|
return (<string[]>permissions).every(permission => {
|
||||||
|
return (<{'user/permissions': string[]}>(<Store<StateInterface>>root.$store).getters)['user/permissions'].includes(permission)
|
||||||
|
})
|
||||||
|
}
|
||||||
|
return true
|
||||||
|
})
|
||||||
|
|
||||||
|
return {realTitle: title, hasPermissions};
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
</script>
|
</script>
|
||||||
|
|
|
@ -1,9 +1,11 @@
|
||||||
<template>
|
<template>
|
||||||
<q-btn flat dense :icon="icon" :to="{ name: link }" />
|
<q-btn flat dense :icon="icon" :to="{ name: link }" v-if="hasPermissions"/>
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
<script lang="ts">
|
<script lang="ts">
|
||||||
import { defineComponent } from '@vue/composition-api';
|
import {computed, defineComponent} from '@vue/composition-api';
|
||||||
|
import {Store} from "vuex";
|
||||||
|
import {StateInterface} from "src/store";
|
||||||
export default defineComponent({
|
export default defineComponent({
|
||||||
name: 'ShortCutLink',
|
name: 'ShortCutLink',
|
||||||
props: {
|
props: {
|
||||||
|
@ -14,7 +16,23 @@ export default defineComponent({
|
||||||
icon: {
|
icon: {
|
||||||
required: true,
|
required: true,
|
||||||
type: String
|
type: String
|
||||||
|
},
|
||||||
|
permissions: {
|
||||||
|
default: undefined
|
||||||
}
|
}
|
||||||
|
},
|
||||||
|
setup(props, {root}) {
|
||||||
|
|
||||||
|
const hasPermissions = computed(() => {
|
||||||
|
let permissions = props.permissions
|
||||||
|
if (permissions) {
|
||||||
|
return (<string[]>permissions).every(permission => {
|
||||||
|
return (<{'user/permissions': string[]}>(<Store<StateInterface>>root.$store).getters)['user/permissions'].includes(permission)
|
||||||
|
})
|
||||||
|
}
|
||||||
|
return true
|
||||||
|
})
|
||||||
|
return {hasPermissions}
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
</script>
|
</script>
|
||||||
|
|
|
@ -28,7 +28,7 @@
|
||||||
:key="'shortcut' + index"
|
:key="'shortcut' + index"
|
||||||
:link="shortcut.link"
|
:link="shortcut.link"
|
||||||
:icon="shortcut.icon"
|
:icon="shortcut.icon"
|
||||||
v-if="hasPermissions(shortcut.permissions)"
|
:permissions="shortcut.permissions"
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
<q-btn flat round dense icon="mdi-exit-to-app" @click="logout()"/>
|
<q-btn flat round dense icon="mdi-exit-to-app" @click="logout()"/>
|
||||||
|
@ -51,7 +51,7 @@
|
||||||
:title="link.title"
|
:title="link.title"
|
||||||
:link="link.link"
|
:link="link.link"
|
||||||
:icon="link.icon"
|
:icon="link.icon"
|
||||||
v-if="hasPermissions(link.permissions)"
|
:permissions="link.permissions"
|
||||||
/>
|
/>
|
||||||
</q-list>
|
</q-list>
|
||||||
<q-separator/>
|
<q-separator/>
|
||||||
|
@ -65,7 +65,7 @@
|
||||||
:title="link.title"
|
:title="link.title"
|
||||||
:link="link.link"
|
:link="link.link"
|
||||||
:icon="link.icon"
|
:icon="link.icon"
|
||||||
v-if="hasPermissions(link.permissions)"
|
:permissions="link.permissions"
|
||||||
/>
|
/>
|
||||||
</q-list>
|
</q-list>
|
||||||
|
|
||||||
|
@ -89,7 +89,7 @@
|
||||||
:title="link.title"
|
:title="link.title"
|
||||||
:link="link.link"
|
:link="link.link"
|
||||||
:icon="link.icon"
|
:icon="link.icon"
|
||||||
v-if="hasPermissions(link.permissions)"
|
:permissions="link.permissions"
|
||||||
/>
|
/>
|
||||||
</q-drawer>
|
</q-drawer>
|
||||||
|
|
||||||
|
@ -151,6 +151,7 @@ export default defineComponent({
|
||||||
})
|
})
|
||||||
);
|
);
|
||||||
const leftDrawerMini = ref(false);
|
const leftDrawerMini = ref(false);
|
||||||
|
|
||||||
function leftDrawerClicker() {
|
function leftDrawerClicker() {
|
||||||
if (leftDrawerMini.value) {
|
if (leftDrawerMini.value) {
|
||||||
leftDrawerMini.value = false;
|
leftDrawerMini.value = false;
|
||||||
|
@ -184,15 +185,6 @@ export default defineComponent({
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
function hasPermissions(permissions: FG.Permission[] | undefined) {
|
|
||||||
if (permissions) {
|
|
||||||
return permissions.every(permission => {
|
|
||||||
return ctx.root.$store.getters['user/permissions'].includes(permission)
|
|
||||||
})
|
|
||||||
}
|
|
||||||
return true
|
|
||||||
}
|
|
||||||
|
|
||||||
return {
|
return {
|
||||||
leftDrawerOpen,
|
leftDrawerOpen,
|
||||||
leftDrawerMini,
|
leftDrawerMini,
|
||||||
|
@ -200,8 +192,7 @@ export default defineComponent({
|
||||||
links,
|
links,
|
||||||
pluginChildLinks,
|
pluginChildLinks,
|
||||||
shortcuts,
|
shortcuts,
|
||||||
logout,
|
logout
|
||||||
hasPermissions
|
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
|
@ -13,7 +13,7 @@
|
||||||
:title="route.title"
|
:title="route.title"
|
||||||
:icon="route.icon"
|
:icon="route.icon"
|
||||||
:link="route.name"
|
:link="route.name"
|
||||||
v-if="hasPermissions(route.permissions)"
|
:permissions="route.meta.permissions"
|
||||||
/>
|
/>
|
||||||
</q-list>
|
</q-list>
|
||||||
</q-card-section>
|
</q-card-section>
|
||||||
|
@ -34,15 +34,7 @@ export default defineComponent({
|
||||||
const checkMain = computed(() => {
|
const checkMain = computed(() => {
|
||||||
return root.$route.matched.length == 2;
|
return root.$route.matched.length == 2;
|
||||||
});
|
});
|
||||||
function hasPermissions(permissions: FG.Permission[] | undefined) {
|
return { checkMain, mainRoutes };
|
||||||
if (permissions) {
|
|
||||||
return permissions.every(permission => {
|
|
||||||
return root.$store.getters['user/permissions'].includes(permission)
|
|
||||||
})
|
|
||||||
}
|
|
||||||
return true
|
|
||||||
}
|
|
||||||
return { checkMain, mainRoutes, hasPermissions };
|
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
</script>
|
</script>
|
||||||
|
|
|
@ -66,7 +66,7 @@ export default defineComponent({
|
||||||
? 'mdi-linux'
|
? 'mdi-linux'
|
||||||
: platform == 'windows'
|
: platform == 'windows'
|
||||||
? 'mdi-microsoft-windows'
|
? 'mdi-microsoft-windows'
|
||||||
: platform == 'apple'
|
: platform == 'macos'
|
||||||
? 'mdi-apple'
|
? 'mdi-apple'
|
||||||
: 'mdi-help';
|
: 'mdi-help';
|
||||||
}
|
}
|
||||||
|
|
|
@ -13,7 +13,7 @@
|
||||||
:title="route.title"
|
:title="route.title"
|
||||||
:icon="route.icon"
|
:icon="route.icon"
|
||||||
:link="route.name"
|
:link="route.name"
|
||||||
v-if="hasPermissions(route.permissions)"
|
:permissions="route.meta.permissions"
|
||||||
/>
|
/>
|
||||||
</q-list>
|
</q-list>
|
||||||
</q-card-section>
|
</q-card-section>
|
||||||
|
@ -34,15 +34,7 @@ export default defineComponent({
|
||||||
const checkMain = computed(() => {
|
const checkMain = computed(() => {
|
||||||
return root.$route.matched.length == 2;
|
return root.$route.matched.length == 2;
|
||||||
});
|
});
|
||||||
function hasPermissions(permissions: FG.Permission[] | undefined) {
|
return { checkMain, mainRoutes};
|
||||||
if (permissions) {
|
|
||||||
return permissions.every(permission => {
|
|
||||||
return root.$store.getters['user/permissions'].includes(permission)
|
|
||||||
})
|
|
||||||
}
|
|
||||||
return true
|
|
||||||
}
|
|
||||||
return { checkMain, mainRoutes, hasPermissions};
|
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
</script>
|
</script>
|
||||||
|
|
Loading…
Reference in New Issue