33 lines
922 B
TypeScript
33 lines
922 B
TypeScript
/**
|
|
* Copyright (c) 2023-present Plane Software, Inc. and contributors
|
|
* SPDX-License-Identifier: AGPL-3.0-only
|
|
* See the LICENSE file for details.
|
|
*/
|
|
|
|
import { computed, makeObservable } from "mobx";
|
|
// types / constants
|
|
import type { IBaseCommandPaletteStore } from "@/store/base-command-palette.store";
|
|
import { BaseCommandPaletteStore } from "@/store/base-command-palette.store";
|
|
|
|
export interface ICommandPaletteStore extends IBaseCommandPaletteStore {
|
|
// computed
|
|
isAnyModalOpen: boolean;
|
|
}
|
|
|
|
export class CommandPaletteStore extends BaseCommandPaletteStore implements ICommandPaletteStore {
|
|
constructor() {
|
|
super();
|
|
makeObservable(this, {
|
|
// computed
|
|
isAnyModalOpen: computed,
|
|
});
|
|
}
|
|
|
|
/**
|
|
* Checks whether any modal is open or not in the base command palette.
|
|
* @returns boolean
|
|
*/
|
|
get isAnyModalOpen(): boolean {
|
|
return Boolean(super.getCoreModalsState());
|
|
}
|
|
}
|