Compare commits
No commits in common. "a858ee31c6c8298ef695856936cf65d3f2295d94" and "2e51e779e7ad3d00b2973b14a36d4b5313ed41e1" have entirely different histories.
a858ee31c6
...
2e51e779e7
|
@ -136,16 +136,7 @@ export function promiseDialog<T extends Promise<any>>(
|
||||||
return promise;
|
return promise;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
|
||||||
* Counter for generating unique popup IDs.
|
|
||||||
* @type {number}
|
|
||||||
*/
|
|
||||||
let popupIdCount = 0;
|
let popupIdCount = 0;
|
||||||
|
|
||||||
/**
|
|
||||||
* A reactive list of the currently opened popups. This is used in a Vue component
|
|
||||||
* in a v-for loop to render the popups.
|
|
||||||
*/
|
|
||||||
export const popups = ref<{
|
export const popups = ref<{
|
||||||
id: number;
|
id: number;
|
||||||
component: Component;
|
component: Component;
|
||||||
|
@ -153,23 +144,12 @@ export const popups = ref<{
|
||||||
events: Record<string, any>;
|
events: Record<string, any>;
|
||||||
}[]>([]);
|
}[]>([]);
|
||||||
|
|
||||||
/**
|
|
||||||
* An object containing z-index values for different priority levels.
|
|
||||||
*/
|
|
||||||
const zIndexes = {
|
const zIndexes = {
|
||||||
veryLow: 500000,
|
veryLow: 500000,
|
||||||
low: 1000000,
|
low: 1000000,
|
||||||
middle: 2000000,
|
middle: 2000000,
|
||||||
high: 3000000,
|
high: 3000000,
|
||||||
};
|
};
|
||||||
|
|
||||||
/**
|
|
||||||
* Claims a z-index value for a given priority level.
|
|
||||||
* Increments the z-index value for the specified priority by 100 and returns the new value.
|
|
||||||
*
|
|
||||||
* @param {keyof typeof zIndexes} [priority='low'] - The priority level for which to claim a z-index.
|
|
||||||
* @returns {number} The new z-index value for the specified priority.
|
|
||||||
*/
|
|
||||||
export function claimZIndex(priority: keyof typeof zIndexes = 'low'): number {
|
export function claimZIndex(priority: keyof typeof zIndexes = 'low'): number {
|
||||||
zIndexes[priority] += 100;
|
zIndexes[priority] += 100;
|
||||||
return zIndexes[priority];
|
return zIndexes[priority];
|
||||||
|
@ -197,15 +177,6 @@ type EmitsExtractor<T> = {
|
||||||
[K in keyof T as K extends `onVnode${string}` ? never : K extends `on${infer E}` ? Uncapitalize<E> : K extends string ? never : K]: T[K];
|
[K in keyof T as K extends `onVnode${string}` ? never : K extends `on${infer E}` ? Uncapitalize<E> : K extends string ? never : K]: T[K];
|
||||||
};
|
};
|
||||||
|
|
||||||
/**
|
|
||||||
* Opens a popup with the specified component, props, and events.
|
|
||||||
*
|
|
||||||
* @template T - The type of the component.
|
|
||||||
* @param {T} component - The Vue component to display in the popup.
|
|
||||||
* @param {ComponentProps<T>} props - The props to pass to the component.
|
|
||||||
* @param {ComponentEmit<T>} [events={}] - The events to bind to the component.
|
|
||||||
* @returns {{ dispose: () => void }} An object containing a dispose function to close the popup.
|
|
||||||
*/
|
|
||||||
export function popup<T extends Component>(
|
export function popup<T extends Component>(
|
||||||
component: T,
|
component: T,
|
||||||
props: ComponentProps<T>,
|
props: ComponentProps<T>,
|
||||||
|
@ -213,18 +184,13 @@ export function popup<T extends Component>(
|
||||||
): { dispose: () => void } {
|
): { dispose: () => void } {
|
||||||
markRaw(component);
|
markRaw(component);
|
||||||
|
|
||||||
// Generate a unique ID for this popup.
|
|
||||||
const id = ++popupIdCount;
|
const id = ++popupIdCount;
|
||||||
|
|
||||||
// On disposal, remove this popup from the list of open popups.
|
|
||||||
const dispose = () => {
|
const dispose = () => {
|
||||||
// このsetTimeoutが無いと挙動がおかしくなる(autocompleteが閉じなくなる)。Vueのバグ?
|
// このsetTimeoutが無いと挙動がおかしくなる(autocompleteが閉じなくなる)。Vueのバグ?
|
||||||
window.setTimeout(() => {
|
window.setTimeout(() => {
|
||||||
popups.value = popups.value.filter(p => p.id !== id);
|
popups.value = popups.value.filter(p => p.id !== id);
|
||||||
}, 0);
|
}, 0);
|
||||||
};
|
};
|
||||||
|
|
||||||
// Bundle the component, props, and events into a state object.
|
|
||||||
const state = {
|
const state = {
|
||||||
component,
|
component,
|
||||||
props,
|
props,
|
||||||
|
@ -232,19 +198,13 @@ export function popup<T extends Component>(
|
||||||
id,
|
id,
|
||||||
};
|
};
|
||||||
|
|
||||||
// Add the popup to the list of open popups.
|
|
||||||
popups.value.push(state);
|
popups.value.push(state);
|
||||||
|
|
||||||
// Return a function that can be called to close the popup.
|
|
||||||
return {
|
return {
|
||||||
dispose,
|
dispose,
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
|
||||||
* Open the page with the given path in a pop-up window.
|
|
||||||
* @param path The path of the page to open.
|
|
||||||
*/
|
|
||||||
export function pageWindow(path: string) {
|
export function pageWindow(path: string) {
|
||||||
const { dispose } = popup(MkPageWindow, {
|
const { dispose } = popup(MkPageWindow, {
|
||||||
initialPath: path,
|
initialPath: path,
|
||||||
|
@ -253,11 +213,6 @@ export function pageWindow(path: string) {
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
|
||||||
* Displays a toast message to the user.
|
|
||||||
*
|
|
||||||
* @param {string} message - The message to display in the toast.
|
|
||||||
*/
|
|
||||||
export function toast(message: string) {
|
export function toast(message: string) {
|
||||||
const { dispose } = popup(MkToast, {
|
const { dispose } = popup(MkToast, {
|
||||||
message,
|
message,
|
||||||
|
@ -266,15 +221,6 @@ export function toast(message: string) {
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
|
||||||
* Displays an alert dialog to the user.
|
|
||||||
*
|
|
||||||
* @param {Object} props - The properties for the alert dialog.
|
|
||||||
* @param {'error' | 'info' | 'success' | 'warning' | 'waiting' | 'question'} [props.type] - The type of the alert.
|
|
||||||
* @param {string} [props.title] - The title of the alert dialog.
|
|
||||||
* @param {string} [props.text] - The text content of the alert dialog.
|
|
||||||
* @returns {Promise<void>} A promise that resolves when the alert dialog is closed.
|
|
||||||
*/
|
|
||||||
export function alert(props: {
|
export function alert(props: {
|
||||||
type?: 'error' | 'info' | 'success' | 'warning' | 'waiting' | 'question';
|
type?: 'error' | 'info' | 'success' | 'warning' | 'waiting' | 'question';
|
||||||
title?: string;
|
title?: string;
|
||||||
|
|
Loading…
Reference in a new issue