mirror of
https://github.com/GraphiteEditor/Graphite.git
synced 2026-09-19 02:48:12 +08:00
Migrated the import shortcut used in Svelte from @ to @graphite for better future package compatibility Co-authored-by: Andre Roelofs <andreroelofsai@gmail.com> Co-authored-by: Keavon Chambers <keavon@keavon.com>
89 lines
2.9 KiB
TypeScript
89 lines
2.9 KiB
TypeScript
import {tick} from "svelte";
|
|
import {writable} from "svelte/store";
|
|
|
|
import { type Editor } from "@graphite/wasm-communication/editor";
|
|
import {
|
|
defaultWidgetLayout,
|
|
patchWidgetLayout,
|
|
TriggerRefreshBoundsOfViewports,
|
|
UpdateDocumentBarLayout,
|
|
UpdateDocumentModeLayout,
|
|
UpdateToolOptionsLayout,
|
|
UpdateToolShelfLayout,
|
|
UpdateWorkingColorsLayout,
|
|
} from "@graphite/wasm-communication/messages";
|
|
|
|
// eslint-disable-next-line @typescript-eslint/explicit-function-return-type
|
|
export function createDocumentState(editor: Editor) {
|
|
const state = writable({
|
|
// Layouts
|
|
documentModeLayout: defaultWidgetLayout(),
|
|
toolOptionsLayout: defaultWidgetLayout(),
|
|
documentBarLayout: defaultWidgetLayout(),
|
|
toolShelfLayout: defaultWidgetLayout(),
|
|
workingColorsLayout: defaultWidgetLayout(),
|
|
});
|
|
const { subscribe, update } = state;
|
|
|
|
// Update layouts
|
|
editor.subscriptions.subscribeJsMessage(UpdateDocumentModeLayout, async (updateDocumentModeLayout) => {
|
|
await tick();
|
|
|
|
update((state) => {
|
|
// `state.documentModeLayout` is mutated in the function
|
|
patchWidgetLayout(state.documentModeLayout, updateDocumentModeLayout);
|
|
return state;
|
|
});
|
|
});
|
|
editor.subscriptions.subscribeJsMessage(UpdateToolOptionsLayout, async (updateToolOptionsLayout) => {
|
|
await tick();
|
|
|
|
update((state) => {
|
|
// `state.documentModeLayout` is mutated in the function
|
|
patchWidgetLayout(state.toolOptionsLayout, updateToolOptionsLayout);
|
|
return state;
|
|
});
|
|
});
|
|
editor.subscriptions.subscribeJsMessage(UpdateDocumentBarLayout, async (updateDocumentBarLayout) => {
|
|
await tick();
|
|
|
|
update((state) => {
|
|
// `state.documentModeLayout` is mutated in the function
|
|
patchWidgetLayout(state.documentBarLayout, updateDocumentBarLayout);
|
|
return state;
|
|
});
|
|
});
|
|
editor.subscriptions.subscribeJsMessage(UpdateToolShelfLayout, async (updateToolShelfLayout) => {
|
|
await tick();
|
|
|
|
update((state) => {
|
|
// `state.documentModeLayout` is mutated in the function
|
|
patchWidgetLayout(state.toolShelfLayout, updateToolShelfLayout);
|
|
return state;
|
|
});
|
|
});
|
|
editor.subscriptions.subscribeJsMessage(UpdateWorkingColorsLayout, async (updateWorkingColorsLayout) => {
|
|
await tick();
|
|
|
|
update((state) => {
|
|
// `state.documentModeLayout` is mutated in the function
|
|
patchWidgetLayout(state.workingColorsLayout, updateWorkingColorsLayout);
|
|
return state;
|
|
});
|
|
});
|
|
editor.subscriptions.subscribeJsMessage(TriggerRefreshBoundsOfViewports, async () => {
|
|
// Wait to display the unpopulated document panel (missing: tools, options bar content, scrollbar positioning, and canvas)
|
|
await tick();
|
|
// Wait to display the populated document panel
|
|
await tick();
|
|
|
|
// Request a resize event so the viewport gets measured now that the canvas is populated and positioned correctly
|
|
window.dispatchEvent(new CustomEvent("resize"));
|
|
});
|
|
|
|
return {
|
|
subscribe,
|
|
};
|
|
}
|
|
export type DocumentState = ReturnType<typeof createDocumentState>;
|