mkdir apps/web/scripts
mv scripts/{cleanup.sh,ci_package.sh,copy-res.ts,deploy.py,package.sh} apps/web/scripts
And a couple of gitignore tweaks
Signed-off-by: Michael Telatynski <7t3chguy@gmail.com>
96 lines
3.1 KiB
TypeScript
96 lines
3.1 KiB
TypeScript
/*
|
|
Copyright 2024 New Vector Ltd.
|
|
Copyright 2020 The Matrix.org Foundation C.I.C.
|
|
|
|
SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial
|
|
Please see LICENSE files in the repository root for full details.
|
|
*/
|
|
|
|
import EventEmitter from "events";
|
|
import { logger } from "matrix-js-sdk/src/logger";
|
|
import { type JSX } from "react";
|
|
|
|
import type React from "react";
|
|
import { type ComponentClass } from "../@types/common";
|
|
|
|
export interface IToast<C extends ComponentClass> {
|
|
key: string;
|
|
// higher priority number will be shown on top of lower priority
|
|
priority: number;
|
|
title?: string;
|
|
icon?: JSX.Element;
|
|
component: C;
|
|
className?: string;
|
|
bodyClassName?: string;
|
|
|
|
/**
|
|
* What to do if the user clicks the close button. If this is undefined, the
|
|
* close button is not displayed.
|
|
*
|
|
* Note: the close button is only displayed if the toast has a title (i.e. if {@link title} is truthy).
|
|
*/
|
|
onCloseButtonClicked?: () => void;
|
|
|
|
props?: Omit<React.ComponentProps<C>, "toastKey">; // toastKey is injected by ToastContainer
|
|
}
|
|
|
|
/**
|
|
* Holds the active toasts
|
|
*/
|
|
export default class ToastStore extends EventEmitter {
|
|
private toasts: IToast<any>[] = [];
|
|
|
|
public static sharedInstance(): ToastStore {
|
|
if (!window.mxToastStore) window.mxToastStore = new ToastStore();
|
|
return window.mxToastStore;
|
|
}
|
|
|
|
public reset(): void {
|
|
this.toasts = [];
|
|
}
|
|
|
|
/**
|
|
* Add or replace a toast
|
|
* If a toast with the same toastKey already exists, the given toast will replace it
|
|
* Toasts are always added underneath any toasts of the same priority, so existing
|
|
* toasts stay at the top unless a higher priority one arrives (better to not change the
|
|
* toast unless necessary).
|
|
*
|
|
* @param {object} newToast The new toast
|
|
*/
|
|
public addOrReplaceToast<C extends ComponentClass>(newToast: IToast<C>): void {
|
|
const oldIndex = this.toasts.findIndex((t) => t.key === newToast.key);
|
|
if (oldIndex === -1) {
|
|
logger.info(`Opening toast with key '${newToast.key}': title '${newToast.title}'`);
|
|
let newIndex = this.toasts.length;
|
|
while (newIndex > 0 && this.toasts[newIndex - 1].priority < newToast.priority) --newIndex;
|
|
this.toasts.splice(newIndex, 0, newToast);
|
|
} else {
|
|
logger.info(`Replacing existing toast with key '${newToast.key}': title now '${newToast.title}'`);
|
|
this.toasts[oldIndex] = newToast;
|
|
}
|
|
this.emit("update");
|
|
}
|
|
|
|
public dismissToast(key: string): void {
|
|
const length = this.toasts.length;
|
|
this.toasts = this.toasts.filter((t) => t.key !== key);
|
|
if (length !== this.toasts.length) {
|
|
logger.info(`Removed toast with key '${key}'`);
|
|
this.emit("update");
|
|
}
|
|
}
|
|
|
|
/**
|
|
* Is a toast currently present on the store.
|
|
* @param key The toast key to look for.
|
|
*/
|
|
public hasToast(key: string): boolean {
|
|
return this.toasts.some((toast) => toast.key === key);
|
|
}
|
|
|
|
public getToasts(): IToast<any>[] {
|
|
return this.toasts;
|
|
}
|
|
}
|