platform/packages/ui/src/panelup.ts
Andrey Sobolev 7621bccf22
UBER-1074: Svelte 4 (#4014)
Signed-off-by: Andrey Sobolev <haiodo@gmail.com>
2023-11-20 17:01:43 +07:00

67 lines
1.7 KiB
TypeScript

import { writable } from 'svelte/store'
import { getLocation, navigate } from './location'
import { type AnyComponent, type PopupAlignment } from './types'
export interface PanelProps {
component: AnyComponent
_id: string
_class: string
element?: PopupAlignment
rightSection?: AnyComponent
}
export const panelstore = writable<{ panel?: PanelProps | undefined }>({ panel: undefined })
let currentLocation: string | undefined
export function getPanelURI (component: AnyComponent, _id: string, _class: string, element?: PopupAlignment): string {
const panelProps = [component, _id, _class]
if (typeof element === 'string') {
panelProps.push(element)
}
return encodeURIComponent(panelProps.join('|'))
}
export function showPanel (
component: AnyComponent,
_id: string,
_class: string,
element?: PopupAlignment,
rightSection?: AnyComponent
): void {
openPanel(component, _id, _class, element, rightSection)
const loc = getLocation()
if (loc.fragment !== currentLocation) {
loc.fragment = currentLocation
navigate(loc)
}
}
export function openPanel (
component: AnyComponent,
_id: string,
_class: string,
element?: PopupAlignment,
rightSection?: AnyComponent
): void {
const newLoc = getPanelURI(component, _id, _class, element)
if (currentLocation === newLoc) {
return
}
currentLocation = newLoc
panelstore.update(() => {
return { panel: { component, _id, _class, element, rightSection } }
})
}
export function closePanel (shoulRedirect: boolean = true): void {
currentLocation = undefined
panelstore.update(() => {
return { panel: undefined }
})
if (shoulRedirect) {
const loc = getLocation()
loc.fragment = undefined
navigate(loc)
}
}