Convert portal feature flags store to TS
This commit is contained in:
parent
ffb47bf3ee
commit
799b6b15d7
|
@ -4,14 +4,14 @@ import { admin } from "@/stores/portal"
|
|||
import analytics from "@/analytics"
|
||||
import { BudiStore } from "@/stores/BudiStore"
|
||||
import {
|
||||
GetGlobalSelfResponse,
|
||||
isSSOUser,
|
||||
SetInitInfoRequest,
|
||||
UpdateSelfRequest,
|
||||
User,
|
||||
} from "@budibase/types"
|
||||
|
||||
interface PortalAuthStore {
|
||||
user?: User
|
||||
user?: GetGlobalSelfResponse
|
||||
initInfo?: Record<string, any>
|
||||
accountPortalAccess: boolean
|
||||
loaded: boolean
|
||||
|
@ -33,7 +33,7 @@ class AuthStore extends BudiStore<PortalAuthStore> {
|
|||
})
|
||||
}
|
||||
|
||||
setUser(user?: User) {
|
||||
setUser(user?: GetGlobalSelfResponse) {
|
||||
this.set({
|
||||
loaded: true,
|
||||
user: user,
|
||||
|
|
|
@ -1,16 +0,0 @@
|
|||
import { derived } from "svelte/store"
|
||||
import { auth } from "@/stores/portal"
|
||||
|
||||
export const INITIAL_FEATUREFLAG_STATE = {
|
||||
SQS: false,
|
||||
DEFAULT_VALUES: false,
|
||||
BUDIBASE_AI: false,
|
||||
AI_CUSTOM_CONFIGS: false,
|
||||
}
|
||||
|
||||
export const featureFlags = derived([auth], ([$auth]) => {
|
||||
return {
|
||||
...INITIAL_FEATUREFLAG_STATE,
|
||||
...($auth?.user?.flags || {}),
|
||||
}
|
||||
})
|
|
@ -0,0 +1,19 @@
|
|||
import { derived, Readable } from "svelte/store"
|
||||
import { auth } from "@/stores/portal"
|
||||
|
||||
export const INITIAL_FEATUREFLAG_STATE = {
|
||||
SQS: false,
|
||||
DEFAULT_VALUES: false,
|
||||
BUDIBASE_AI: false,
|
||||
AI_CUSTOM_CONFIGS: false,
|
||||
}
|
||||
|
||||
export const featureFlags: Readable<Record<string, any>> = derived(
|
||||
[auth],
|
||||
([$auth]) => {
|
||||
return {
|
||||
...INITIAL_FEATUREFLAG_STATE,
|
||||
...($auth?.user?.flags || {}),
|
||||
}
|
||||
}
|
||||
)
|
|
@ -8,5 +8,5 @@ export interface GenerateAPIKeyResponse extends DevInfo {}
|
|||
export interface FetchAPIKeyResponse extends DevInfo {}
|
||||
|
||||
export interface GetGlobalSelfResponse extends User {
|
||||
flags?: Record<string, string>
|
||||
flags?: Record<string, any>
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue