PHP 7.4.33
Preview: onlineManager.ts Size: 1.77 KB
/var/www/gtechmarathon2026.bitkit.dk/httpdocs/node_modules/@tanstack/query-core/src/onlineManager.ts
import { Subscribable } from './subscribable'
import { isServer } from './utils'

type Listener = (online: boolean) => void
type SetupFn = (setOnline: Listener) => (() => void) | undefined

export class OnlineManager extends Subscribable<Listener> {
  #online = true
  #cleanup?: () => void

  #setup: SetupFn

  constructor() {
    super()
    this.#setup = (onOnline) => {
      // addEventListener does not exist in React Native, but window does
      // eslint-disable-next-line @typescript-eslint/no-unnecessary-condition
      if (!isServer && window.addEventListener) {
        const onlineListener = () => onOnline(true)
        const offlineListener = () => onOnline(false)
        // Listen to online
        window.addEventListener('online', onlineListener, false)
        window.addEventListener('offline', offlineListener, false)

        return () => {
          // Be sure to unsubscribe if a new handler is set
          window.removeEventListener('online', onlineListener)
          window.removeEventListener('offline', offlineListener)
        }
      }

      return
    }
  }

  protected onSubscribe(): void {
    if (!this.#cleanup) {
      this.setEventListener(this.#setup)
    }
  }

  protected onUnsubscribe() {
    if (!this.hasListeners()) {
      this.#cleanup?.()
      this.#cleanup = undefined
    }
  }

  setEventListener(setup: SetupFn): void {
    this.#setup = setup
    this.#cleanup?.()
    this.#cleanup = setup(this.setOnline.bind(this))
  }

  setOnline(online: boolean): void {
    const changed = this.#online !== online

    if (changed) {
      this.#online = online
      this.listeners.forEach((listener) => {
        listener(online)
      })
    }
  }

  isOnline(): boolean {
    return this.#online
  }
}

export const onlineManager = new OnlineManager()

Directory Contents

Dirs: 0 × Files: 22
Name Size Perms Modified Actions
2.06 KB lrw-r--r-- 2025-07-14 06:33:17
Edit Download
8.08 KB lrw-r--r-- 2025-07-14 06:33:17
Edit Download
1.52 KB lrw-r--r-- 2025-07-14 06:33:17
Edit Download
5.27 KB lrw-r--r-- 2025-07-14 06:33:17
Edit Download
4.69 KB lrw-r--r-- 2025-07-14 06:33:17
Edit Download
8.98 KB lrw-r--r-- 2025-07-14 06:33:17
Edit Download
6.86 KB lrw-r--r-- 2025-07-14 06:33:17
Edit Download
4.76 KB lrw-r--r-- 2025-07-14 06:33:17
Edit Download
2.36 KB lrw-r--r-- 2025-07-14 06:33:17
Edit Download
1.77 KB lrw-r--r-- 2025-07-14 06:33:17
Edit Download
7.54 KB lrw-r--r-- 2025-07-14 06:33:17
Edit Download
18.48 KB lrw-r--r-- 2025-07-14 06:33:17
Edit Download
5.55 KB lrw-r--r-- 2025-07-14 06:33:17
Edit Download
16.36 KB lrw-r--r-- 2025-07-14 06:33:17
Edit Download
22.87 KB lrw-r--r-- 2025-07-14 06:33:17
Edit Download
851 B lrw-r--r-- 2025-07-14 06:33:17
Edit Download
5.50 KB lrw-r--r-- 2025-07-14 06:33:17
Edit Download
2.71 KB lrw-r--r-- 2025-07-14 06:33:17
Edit Download
557 B lrw-r--r-- 2025-07-14 06:33:17
Edit Download
2.87 KB lrw-r--r-- 2025-07-14 06:33:17
Edit Download
38.76 KB lrw-r--r-- 2025-07-14 06:33:17
Edit Download
11.10 KB lrw-r--r-- 2025-07-14 06:33:17
Edit Download
If ZipArchive is unavailable, a .tar will be created (no compression).