{"version":3,"file":"index.0ae8525a.js","sources":["../../../../../../src/store/index.ts"],"sourcesContent":["import { derived, readable, writable } from 'svelte/store';\nimport { Workspace } from '@aymeric_henry_sr/svelte-proto/workspace_pb';\nimport type { EnumRole } from '../grpc/types/member';\nimport { persistentWritable } from '$lib/utils/persistentWritable';\n\nexport type Invitation = {\n\tid: string;\n\trole: EnumRole;\n\tworkspaceId: string;\n\tworkspaceName: string;\n};\n\nexport const store = {\n\tuser: {\n\t\tisLogged: persistentWritable(false, 'user.isLogged'),\n\t\tusername: persistentWritable('', 'user.username'),\n\t\tid: persistentWritable('', 'user.id')\n\t},\n\tinvitations: writable([] as Invitation[]),\n\tworkspace: {\n\t\tidxWorskpaceSelected: persistentWritable(-1, 'workspace.idxWorskpaceSelected'),\n\t\tlist: writable([] as Workspace[]),\n\t\trole: persistentWritable(4 as EnumRole, 'workspace.role'),\n\t\thasSubscription: persistentWritable(false, 'workspace.hasSubscription'),\n\t\tcurrentWorkspace: readable(new Workspace())\n\t},\n\tcredits: {\n\t\tbalance: persistentWritable(0, 'credits.balance'),\n\t\tcostEmail: persistentWritable(1, 'credits.costEmail'),\n\t\tcostPhone: persistentWritable(10, 'credits.costPhone'),\n\t\tsalesNavigator: persistentWritable(50, 'credits.salesNavigator'),\n\t\tpriceId: persistentWritable('', 'credits.priceId'),\n\t\tisCustom: persistentWritable(false, 'credits.isCustom'),\n\t\tperiodStartAt: persistentWritable(new Date(), 'credits.periodStartAt')\n\t}\n};\n\nasync function setWorkspaceIdInLocalStorage(selectedWorkspace: Workspace) {\n\tconst currentWorkspaceId = window.localStorage.getItem('workspaceId');\n\tconst workspaceId = selectedWorkspace.getId();\n\tif (workspaceId && workspaceId !== currentWorkspaceId) {\n\t\ttry {\n\t\t\twindow.localStorage.setItem('workspaceId', workspaceId);\n\t\t} catch (error) {\n\t\t\tconsole.error('Error setting workspaceId in local storage', error);\n\t\t}\n\t}\n}\n\nstore.workspace.currentWorkspace = derived(\n\t[store.workspace.list, store.workspace.idxWorskpaceSelected],\n\t([$list, $idx]) => {\n\t\tconst myWorkspace = $list?.[$idx] ?? new Workspace();\n\t\tsetWorkspaceIdInLocalStorage(myWorkspace);\n\t\treturn myWorkspace;\n\t}\n);\n\nexport function resetStore() {\n\tstore.user.isLogged.set(false);\n\tstore.user.username.set('');\n\tstore.user.id.set('');\n\tstore.invitations.set([]);\n\tstore.workspace.idxWorskpaceSelected.set(-1);\n\tstore.workspace.list.set([]);\n\tstore.workspace.hasSubscription.set(false);\n\tstore.workspace.role.set(4);\n\tstore.credits.balance.set(0);\n\tstore.credits.costEmail.set(1);\n\tstore.credits.costPhone.set(10);\n\tstore.credits.salesNavigator.set(50);\n}\n"],"names":["store","persistentWritable","writable","readable","Workspace","setWorkspaceIdInLocalStorage","selectedWorkspace","currentWorkspaceId","workspaceId","error","derived","$list","$idx","myWorkspace","resetStore"],"mappings":"6eAYO,MAAMA,EAAQ,CACpB,KAAM,CACL,SAAUC,EAAmB,GAAO,eAAe,EACnD,SAAUA,EAAmB,GAAI,eAAe,EAChD,GAAIA,EAAmB,GAAI,SAAS,CACrC,EACA,YAAaC,EAAS,EAAkB,EACxC,UAAW,CACV,qBAAsBD,EAAmB,GAAI,gCAAgC,EAC7E,KAAMC,EAAS,EAAiB,EAChC,KAAMD,EAAmB,EAAe,gBAAgB,EACxD,gBAAiBA,EAAmB,GAAO,2BAA2B,EACtE,iBAAkBE,EAAS,IAAIC,EAAAA,SAAW,CAC3C,EACA,QAAS,CACR,QAASH,EAAmB,EAAG,iBAAiB,EAChD,UAAWA,EAAmB,EAAG,mBAAmB,EACpD,UAAWA,EAAmB,GAAI,mBAAmB,EACrD,eAAgBA,EAAmB,GAAI,wBAAwB,EAC/D,QAASA,EAAmB,GAAI,iBAAiB,EACjD,SAAUA,EAAmB,GAAO,kBAAkB,EACtD,cAAeA,EAAuB,IAAA,KAAQ,uBAAuB,CACtE,CACD,EAEA,eAAeI,EAA6BC,EAA8B,CACzE,MAAMC,EAAqB,OAAO,aAAa,QAAQ,aAAa,EAC9DC,EAAcF,EAAkB,QAClC,GAAAE,GAAeA,IAAgBD,EAC9B,GAAA,CACI,OAAA,aAAa,QAAQ,cAAeC,CAAW,QAC9CC,EAAO,CACP,QAAA,MAAM,6CAA8CA,CAAK,CAClE,CAEF,CAEAT,EAAM,UAAU,iBAAmBU,EAClC,CAACV,EAAM,UAAU,KAAMA,EAAM,UAAU,oBAAoB,EAC3D,CAAC,CAACW,EAAOC,CAAI,IAAM,CAClB,MAAMC,GAAcF,GAAA,YAAAA,EAAQC,KAAS,IAAIR,EAAU,UACnD,OAAAC,EAA6BQ,CAAW,EACjCA,CACR,CACD,EAEO,SAASC,GAAa,CACtBd,EAAA,KAAK,SAAS,IAAI,EAAK,EACvBA,EAAA,KAAK,SAAS,IAAI,EAAE,EACpBA,EAAA,KAAK,GAAG,IAAI,EAAE,EACdA,EAAA,YAAY,IAAI,CAAA,CAAE,EAClBA,EAAA,UAAU,qBAAqB,IAAI,EAAE,EAC3CA,EAAM,UAAU,KAAK,IAAI,CAAE,CAAA,EACrBA,EAAA,UAAU,gBAAgB,IAAI,EAAK,EACnCA,EAAA,UAAU,KAAK,IAAI,CAAC,EACpBA,EAAA,QAAQ,QAAQ,IAAI,CAAC,EACrBA,EAAA,QAAQ,UAAU,IAAI,CAAC,EACvBA,EAAA,QAAQ,UAAU,IAAI,EAAE,EACxBA,EAAA,QAAQ,eAAe,IAAI,EAAE,CACpC"}