Skip to content

Commit f72ffda

Browse files
refactor: refactor the way event listeners are removed on unmount
1 parent e529bf5 commit f72ffda

File tree

2 files changed

+10
-7
lines changed

2 files changed

+10
-7
lines changed

packages/runed/src/lib/utilities/useNetworkStatus/useNetworkStatus.svelte.ts

+8-7
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1+
import { browser } from "$lib/internal/utils/browser.js";
12
import { addEventListener } from "$lib/internal/utils/event.js";
23
import { Previous } from "$lib/utilities/index.js";
3-
import { browser } from "$app/environment";
44

55
/**
66
* @desc The `NetworkInformation` interface of the Network Information API
@@ -86,6 +86,7 @@ interface NetworkStatus {
8686
* @returns null if the function is not run in the browser
8787
*/
8888
export function useNetworkStatus() {
89+
console.log("browser", browser);
8990
if (!browser) {
9091
return {
9192
get current() {
@@ -119,18 +120,18 @@ export function useNetworkStatus() {
119120
};
120121

121122
$effect(() => {
123+
const callbacks: VoidFunction[] = [];
124+
122125
// The connection event handler also manages online and offline states.
123126
if (connection) {
124-
addEventListener(connection, "change", handleStatusChange, { passive: true });
127+
callbacks.push(addEventListener(connection, "change", handleStatusChange, { passive: true }));
125128
} else {
126-
addEventListener(window, "online", handleStatusChange, { passive: true });
127-
addEventListener(window, "offline", handleStatusChange, { passive: true });
129+
callbacks.push(addEventListener(window, "online", handleStatusChange, { passive: true }));
130+
callbacks.push(addEventListener(window, "offline", handleStatusChange, { passive: true }));
128131
}
129132

130133
return () => {
131-
window.removeEventListener("online", handleStatusChange);
132-
window.removeEventListener("online", handleStatusChange);
133-
connection?.removeEventListener("change", handleStatusChange);
134+
callbacks.forEach((c) => c());
134135
};
135136
});
136137

sites/docs/src/lib/components/demos/use-network-status.svelte

+2
Original file line numberDiff line numberDiff line change
@@ -50,5 +50,7 @@
5050
<DemoContainer>
5151
{#if networkStatus.current}
5252
<pre>{JSON.stringify(networkStatus.current, null, 2)}</pre>
53+
{:else}
54+
<p>Network Status is currently not available on your device</p>
5355
{/if}
5456
</DemoContainer>

0 commit comments

Comments
 (0)