mirror of
https://github.com/bitburner-official/bitburner-src.git
synced 2024-11-26 17:43:48 +01:00
Merge pull request #2625 from MartinFournier/fix/terminal-unmount
Cancel debounced events on terminal unmount
This commit is contained in:
commit
62ac7f7d17
@ -95,20 +95,42 @@ export function TerminalRoot({ terminal, router, player }: IProps): React.ReactE
|
|||||||
setKey((key) => key + 1);
|
setKey((key) => key + 1);
|
||||||
}
|
}
|
||||||
|
|
||||||
useEffect(() => TerminalEvents.subscribe(_.debounce(async () => rerender(), 25, { maxWait: 50 })), []);
|
useEffect(() => {
|
||||||
useEffect(() => TerminalClearEvents.subscribe(_.debounce(async () => clear(), 25, { maxWait: 50 })), []);
|
const debounced = _.debounce(async () => rerender(), 25, { maxWait: 50 });
|
||||||
|
const unsubscribe = TerminalEvents.subscribe(debounced);
|
||||||
|
return () => {
|
||||||
|
debounced.cancel();
|
||||||
|
unsubscribe();
|
||||||
|
}
|
||||||
|
}, []);
|
||||||
|
|
||||||
function doScroll(): void {
|
useEffect(() => {
|
||||||
|
const debounced = _.debounce(async () => clear(), 25, { maxWait: 50 });
|
||||||
|
const unsubscribe = TerminalClearEvents.subscribe(debounced);
|
||||||
|
return () => {
|
||||||
|
debounced.cancel();
|
||||||
|
unsubscribe();
|
||||||
|
}
|
||||||
|
}, []);
|
||||||
|
|
||||||
|
function doScroll(): number | undefined {
|
||||||
const hook = scrollHook.current;
|
const hook = scrollHook.current;
|
||||||
if (hook !== null) {
|
if (hook !== null) {
|
||||||
setTimeout(() => hook.scrollIntoView(true), 50);
|
return window.setTimeout(() => hook.scrollIntoView(true), 50);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
doScroll();
|
doScroll();
|
||||||
|
|
||||||
useEffect(() => {
|
useEffect(() => {
|
||||||
setTimeout(doScroll, 50);
|
let scrollId: number;
|
||||||
|
const id = setTimeout(() => {
|
||||||
|
scrollId = doScroll() ?? 0;
|
||||||
|
}, 50);
|
||||||
|
return () => {
|
||||||
|
clearTimeout(id);
|
||||||
|
clearTimeout(scrollId);
|
||||||
|
}
|
||||||
}, []);
|
}, []);
|
||||||
|
|
||||||
function lineClass(s: string): string {
|
function lineClass(s: string): string {
|
||||||
|
Loading…
Reference in New Issue
Block a user