1234567891011121314151617181920212223242526272829303132 |
- // Copyright (C) 2012-2024 Zammad Foundation, https://zammad-foundation.org/
- import { defineStore } from 'pinia'
- import { ref } from 'vue'
- import type { EnumObjectManagerObjects } from '#shared/graphql/types.ts'
- import log from '#shared/utils/log.ts'
- import type { ObjectAttributesObject } from '../types/store.ts'
- export const useObjectAttributesStore = defineStore('objectAttributes', () => {
- const objectAttributesObjectLookup = ref<
- Record<string, ObjectAttributesObject>
- >({})
- const getObjectAttributesForObject = (object: EnumObjectManagerObjects) => {
- const objectAttributesObject = objectAttributesObjectLookup.value[object]
- if (!objectAttributesObject) {
- log.error(
- `Please load the form object attributes first, the object "${object}" does not exists in the store.`,
- )
- }
- return objectAttributesObject
- }
- return {
- objectAttributesObjectLookup,
- getObjectAttributesForObject,
- }
- })
|