diff --git a/src/boot/quasar.js b/src/boot/quasar.js index 5db6edd24..3cd917958 100644 --- a/src/boot/quasar.js +++ b/src/boot/quasar.js @@ -3,6 +3,8 @@ import qFormMixin from './qformMixin'; import mainShortcutMixin from './mainShortcutMixin'; import keyShortcut from './keyShortcut'; import useNotify from 'src/composables/useNotify.js'; +import { AccessError } from 'src/utils/errors'; + const { notify } = useNotify(); export default boot(({ app }) => { @@ -11,6 +13,12 @@ export default boot(({ app }) => { app.directive('shortcut', keyShortcut); app.config.errorHandler = function (err) { console.error(err); - notify('globals.error', 'negative', 'error'); + switch (err.constructor) { + case AccessError: + notify('errors.statusUnauthorized', 'negative', 'account_circle_off'); + break; + default: + notify('globals.error', 'negative', 'error'); + } }; }); diff --git a/src/components/CrudModel.vue b/src/components/CrudModel.vue index 0386e037b..b93fbdad1 100644 --- a/src/components/CrudModel.vue +++ b/src/components/CrudModel.vue @@ -1,6 +1,6 @@ @@ -235,6 +242,11 @@ const columns = computed(() => [ icon="add" @keydown.tab.prevent="saveButtonRef.$el.focus()" @click="claimDevelopmentForm.insert()" + :disable="!claimDevelopmentForm.hasWritePremission" + :title=" + !claimDevelopmentForm.hasWritePremission && + claimDevelopmentForm.accessDeniedTitle + " /> diff --git a/src/stores/useArrayDataStore.js b/src/stores/useArrayDataStore.js index ea029bc12..063e11bf4 100644 --- a/src/stores/useArrayDataStore.js +++ b/src/stores/useArrayDataStore.js @@ -17,6 +17,7 @@ export const useArrayDataStore = defineStore('arrayDataStore', () => { searchUrl: 'params', navigate: null, page: 1, + checkAcl: true, }; function get(key) { diff --git a/src/utils/errors.js b/src/utils/errors.js new file mode 100644 index 000000000..f8c86fd76 --- /dev/null +++ b/src/utils/errors.js @@ -0,0 +1,9 @@ +class AccessError extends Error { + constructor(details, message) { + super(message ?? 'Access denied'); + this.name = AccessError.name; + this.details = details; + } +} + +export { AccessError };