Revert "Rewrite toaster hook to not re-create the window (#217)"

This reverts commit 3ac0abc82b.
This commit is contained in:
AAGaming
2022-10-14 22:41:46 -04:00
parent 6e48aefce8
commit 7445f066ed
2 changed files with 25 additions and 14 deletions
+1 -1
View File
@@ -32,7 +32,7 @@ const Toast: FunctionComponent<ToastProps> = ({ toast }) => {
return (
<div
style={{ '--toast-duration': `${toast.nToastDurationMS}ms` } as React.CSSProperties}
className={toastClasses.toastEnter}
className={joinClassNames(toastClasses.ToastPopup, toastClasses.toastEnter)}
>
<div
onClick={toast.data.onClick}
+24 -13
View File
@@ -38,23 +38,34 @@ class Toaster extends Logger {
await sleep(2000);
}
this.node = instance.sibling.child;
this.node = instance.return.return;
let toast: any;
let renderedToast: ReactNode = null;
afterPatch(this.node, 'type', (args: any[], ret: any) => {
const currentToast = args[0].notification;
if (currentToast?.decky) {
if (currentToast !== toast) {
toast = currentToast;
renderedToast = <Toast toast={toast} />;
}
ret.props.children = renderedToast;
} else {
toast = null;
renderedToast = null;
this.node.stateNode.render = (...args: any[]) => {
const ret = this.node.stateNode.__proto__.render.call(this.node.stateNode, ...args);
if (ret) {
this.instanceRetPatch = afterPatch(ret, 'type', (_: any, ret: any) => {
if (ret?.props?.children[1]?.children?.props) {
const currentToast = ret.props.children[1].children.props.notification;
if (currentToast?.decky) {
if (currentToast == toast) {
ret.props.children[1].children = renderedToast;
} else {
toast = currentToast;
renderedToast = <Toast toast={toast} />;
ret.props.children[1].children = renderedToast;
}
} else {
toast = null;
renderedToast = null;
}
}
return ret;
});
}
return ret;
});
};
this.node.stateNode.forceUpdate();
this.settingsModule = findModuleChild((m) => {
if (typeof m !== 'object') return undefined;
for (let prop in m) {