{"version":3,"file":"adminPreferenceStore-86c492bc.js","sources":["../../../resources/js/Store/adminPreferenceStore.js"],"sourcesContent":["// Utilities\nimport { defineStore } from \"pinia\"\nconst PROJECT_LIST_LOCAL_STORAGE_KEY = \"admin-preference\"\n\nexport const usePreferenceStore = defineStore(\"admin-preference\", {\n\tstate: () => ({\n\t\tadminPreferences:\n\t\t\tJSON.parse(localStorage.getItem(PROJECT_LIST_LOCAL_STORAGE_KEY)) || {},\n\t}),\n\tgetters: {\n\t\tgetPreference() {\n\t\t\tif (this.adminPreferences == undefined) return null\n\t\t\treturn this.adminPreferences\n\t\t},\n\t},\n\tactions: {\n\t\tsetPreference(key, value) {\n\t\t\tthis.adminPreferences[key] = value\n\t\t\tlocalStorage.setItem(\n\t\t\t\tPROJECT_LIST_LOCAL_STORAGE_KEY,\n\t\t\t\tJSON.stringify(this.adminPreferences),\n\t\t\t)\n\t\t},\n\t},\n})\n"],"names":["PROJECT_LIST_LOCAL_STORAGE_KEY","usePreferenceStore","defineStore","key","value"],"mappings":"kYAEA,MAAMA,EAAiC,mBAE1BC,EAAqBC,EAAY,mBAAoB,CACjE,MAAO,KAAO,CACb,iBACC,KAAK,MAAM,aAAa,QAAQF,CAA8B,CAAC,GAAK,CAAE,CACzE,GACC,QAAS,CACR,eAAgB,CACf,OAAI,KAAK,kBAAoB,KAAkB,KACxC,KAAK,gBACZ,CACD,EACD,QAAS,CACR,cAAcG,EAAKC,EAAO,CACzB,KAAK,iBAAiBD,CAAG,EAAIC,EAC7B,aAAa,QACZJ,EACA,KAAK,UAAU,KAAK,gBAAgB,CACpC,CACD,CACD,CACF,CAAC"}