mirror of
https://github.com/hcengineering/platform.git
synced 2024-12-29 22:44:36 +03:00
7621bccf22
Signed-off-by: Andrey Sobolev <haiodo@gmail.com>
67 lines
1.7 KiB
TypeScript
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)
|
|
}
|
|
}
|