aboutsummaryrefslogtreecommitdiff
path: root/src/utils/modal.tsx
diff options
context:
space:
mode:
authorNuckyz <61953774+Nuckyz@users.noreply.github.com>2023-03-01 01:26:13 -0300
committerGitHub <noreply@github.com>2023-03-01 05:26:13 +0100
commitfaa90eccd363b635b84be2162376645d6a83ad55 (patch)
tree01473b58f52a54c2dc08234a51a20f0069487981 /src/utils/modal.tsx
parentc91b0df6071639471cd41b481e7188259a3c1159 (diff)
downloadVencord-faa90eccd363b635b84be2162376645d6a83ad55.tar.gz
Vencord-faa90eccd363b635b84be2162376645d6a83ad55.tar.bz2
Vencord-faa90eccd363b635b84be2162376645d6a83ad55.zip
feat: Crash Handler (#531)
Co-authored-by: Ven <vendicated@riseup.net>
Diffstat (limited to 'src/utils/modal.tsx')
-rw-r--r--src/utils/modal.tsx8
1 files changed, 8 insertions, 0 deletions
diff --git a/src/utils/modal.tsx b/src/utils/modal.tsx
index 3174cac..35aaaf8 100644
--- a/src/utils/modal.tsx
+++ b/src/utils/modal.tsx
@@ -117,6 +117,7 @@ const ModalAPI = mapMangledModuleLazy("onCloseRequest:null!=", {
openModal: filters.byCode("onCloseRequest:null!="),
closeModal: filters.byCode("onCloseCallback&&"),
openModalLazy: m => m?.length === 1 && filters.byCode(".apply(this,arguments)")(m),
+ closeAllModals: filters.byCode(".value.key,")
});
/**
@@ -142,3 +143,10 @@ export function openModal(render: RenderFunction, options?: ModalOptions, contex
export function closeModal(modalKey: string, contextKey?: string): void {
return ModalAPI.closeModal(modalKey, contextKey);
}
+
+/**
+ * Close all open modals
+ */
+export function closeAllModals(): void {
+ return ModalAPI.closeAllModals();
+}