mirror of
https://github.com/wavetermdev/waveterm.git
synced 2025-01-08 19:38:51 +01:00
555ab07861
This is an experimental modal to show tips. If it helps improve discoverability, it will be improved in the future.
19 lines
674 B
TypeScript
19 lines
674 B
TypeScript
// Copyright 2024, Command Line Inc.
|
|
// SPDX-License-Identifier: Apache-2.0
|
|
|
|
import { AboutModal } from "./about";
|
|
import { TipsModal } from "./tipsmodal";
|
|
import { TosModal } from "./tos";
|
|
import { UserInputModal } from "./userinputmodal";
|
|
|
|
const modalRegistry: { [key: string]: React.ComponentType<any> } = {
|
|
[TosModal.displayName || "TosModal"]: TosModal,
|
|
[UserInputModal.displayName || "UserInputModal"]: UserInputModal,
|
|
[AboutModal.displayName || "AboutModal"]: AboutModal,
|
|
[TipsModal.displayName || "TipsModal"]: TipsModal,
|
|
};
|
|
|
|
export const getModalComponent = (key: string): React.ComponentType<any> | undefined => {
|
|
return modalRegistry[key];
|
|
};
|