@wcstack/notification 1.13.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.esm.js","sources":["../src/config.ts","../src/core/NotificationCore.ts","../src/autoTrigger.ts","../src/components/Notify.ts","../src/registerComponents.ts","../src/bootstrapNotification.ts"],"sourcesContent":["import { IConfig, IWritableConfig } from \"./types.js\";\n\ninterface IInternalConfig extends IConfig {\n autoTrigger: boolean;\n triggerAttribute: string;\n tagNames: {\n notify: string;\n };\n}\n\nconst _config: IInternalConfig = {\n autoTrigger: true,\n triggerAttribute: \"data-notifytarget\",\n tagNames: {\n notify: \"wcs-notify\",\n },\n};\n\nfunction deepFreeze<T>(obj: T): T {\n if (obj === null || typeof obj !== \"object\") return obj;\n Object.freeze(obj);\n for (const key of Object.keys(obj)) {\n deepFreeze((obj as Record<string, unknown>)[key]);\n }\n return obj;\n}\n\nfunction deepClone<T>(obj: T): T {\n if (obj === null || typeof obj !== \"object\") return obj;\n const clone: Record<string, unknown> = {};\n for (const key of Object.keys(obj)) {\n clone[key] = deepClone((obj as Record<string, unknown>)[key]);\n }\n return clone as T;\n}\n\nlet frozenConfig: IConfig | null = null;\n\n// Internal, mutable live config used by the components/autoTrigger (they read it\n// at call time so setConfig() takes effect without re-import). Typed as the\n// readonly IConfig at the export boundary — the `as IConfig` is a compile-time\n// view only and does NOT freeze the object, so this export must stay\n// package-internal (it is not re-exported from exports.ts). Public consumers get\n// the deep-frozen clone from getConfig() instead.\nexport const config: IConfig = _config as IConfig;\n\nexport function getConfig(): IConfig {\n if (!frozenConfig) {\n frozenConfig = deepFreeze(deepClone(_config));\n }\n return frozenConfig;\n}\n\nexport function setConfig(partialConfig: IWritableConfig): void {\n if (typeof partialConfig.autoTrigger === \"boolean\") {\n _config.autoTrigger = partialConfig.autoTrigger;\n }\n if (typeof partialConfig.triggerAttribute === \"string\") {\n _config.triggerAttribute = partialConfig.triggerAttribute;\n }\n if (partialConfig.tagNames) {\n Object.assign(_config.tagNames, partialConfig.tagNames);\n }\n frozenConfig = null;\n}\n","import {\n IWcBindable, NotifyBackend, NotifyOptions, NotificationPermissionRaw,\n PermissionStateOrUnsupported, WcsNotifyClickDetail, WcsNotifyErrorDetail,\n} from \"../types.js\";\n\n// Wrapper stored in a notification's `data` so the Service Worker side (a\n// separate global scope with no access to this instance) can recover the\n// identity and the caller's payload. The constructor backend uses the same\n// wrapper for uniformity, and both paths unwrap it before emitting.\ninterface WcsNotifyData {\n __wcsId: string;\n payload: unknown;\n}\n\n// Message shape posted by `wireNotificationClicks()` (src/sw.ts) over both\n// BroadcastChannel and clients.postMessage. `id` is unique per click\n// (`tag#seq`), so the two transports delivering the *same* click de-dup, while\n// two genuine clicks on the same `tag` do not.\ninterface WcsNotifyInbound {\n __wcsNotify: true;\n id: string;\n tag: string;\n data: unknown;\n action: string;\n}\n\n/**\n * Headless desktop-notification primitive. A thin, framework-agnostic wrapper\n * around the Notifications API exposed through the wc-bindable protocol.\n *\n * Unlike `@wcstack/permission` (a read-only monitor — the Permissions API has no\n * `request()`), the Notifications API *does* expose `Notification.requestPermission()`,\n * so this node is self-contained: it both **requests/monitors** the permission and\n * **shows** notifications. It is the first @wcstack node where the command-token\n * (show: `notify`) and event-token (`click` / `close` / `show`) directions both\n * live in one tag.\n *\n * - **request()** asks for the `notifications` permission (`Notification.requestPermission`).\n * - **notify(title, options)** shows a notification and returns its identifying tag\n * (a caller `options.tag`, or a generated `wcs-<n>`). It picks a backend per\n * `mode`: the `Notification` constructor (desktop) or\n * `ServiceWorkerRegistration.showNotification()` (mobile). `\"auto\"` prefers the\n * constructor and falls back to the SW on a `TypeError`.\n * - **close(tag) / closeAll()** dismiss notifications by tag / all.\n * - Clicks flow back as the `wcs-notify:click` event: directly via the\n * Notification's `onclick` (constructor), or via the SW helper's\n * BroadcastChannel/postMessage relay (SW). `permission` mirrors the live grant.\n *\n * Failures never throw: they surface through `error` (and the `unsupported`\n * permission state) so they flow into the declarative state.\n */\nexport class NotificationCore extends EventTarget {\n static wcBindable: IWcBindable = {\n protocol: \"wc-bindable\",\n version: 1,\n properties: [\n { name: \"permission\", event: \"wcs-notify:permission-change\" },\n { name: \"granted\", event: \"wcs-notify:permission-change\", getter: (e: Event) => (e as CustomEvent).detail === \"granted\" },\n { name: \"denied\", event: \"wcs-notify:permission-change\", getter: (e: Event) => (e as CustomEvent).detail === \"denied\" },\n { name: \"prompt\", event: \"wcs-notify:permission-change\", getter: (e: Event) => (e as CustomEvent).detail === \"prompt\" },\n { name: \"unsupported\", event: \"wcs-notify:permission-change\", getter: (e: Event) => (e as CustomEvent).detail === \"unsupported\" },\n { name: \"error\", event: \"wcs-notify:error\" },\n { name: \"clicked\", event: \"wcs-notify:click\", getter: (e: Event) => (e as CustomEvent).detail },\n { name: \"closed\", event: \"wcs-notify:close\", getter: (e: Event) => (e as CustomEvent).detail },\n { name: \"shown\", event: \"wcs-notify:show\", getter: (e: Event) => (e as CustomEvent).detail },\n ],\n commands: [\n { name: \"request\", async: true },\n { name: \"notify\" },\n { name: \"close\" },\n { name: \"closeAll\" },\n ],\n };\n\n private _target: EventTarget;\n private _mode: NotifyBackend = \"auto\";\n\n private _permission: PermissionStateOrUnsupported = \"prompt\";\n private _error: WcsNotifyErrorDetail | null = null;\n private _lastClick: WcsNotifyClickDetail | null = null;\n private _lastClose: WcsNotifyClickDetail | null = null;\n private _lastShow: WcsNotifyClickDetail | null = null;\n\n // Live PermissionStatus (when the Permissions API can query `notifications`),\n // kept so its `change` listener can be removed on dispose().\n private _permissionStatus: PermissionStatus | null = null;\n // True once a permission subscription has been (or is being) established; reset\n // by dispose(). Guards observe() so a reconnect re-queries while a redundant\n // observe() on a live subscription does not.\n private _permissionSubscribed: boolean = false;\n\n // Monotonic id of the current lifecycle. Bumped by every observe() and by\n // dispose(). In-flight async work (permission query, SW show, inbound click)\n // captures it and bails if stale, so a query/click that resolves after a\n // disconnect — or after a rapid disconnect→reconnect — never mutates state or\n // dispatches on a torn-down element.\n private _gen: number = 0;\n\n // Resolves once the connect-time permission probe settles. The Shell exposes\n // this as connectedCallbackPromise so SSR can await it before snapshotting.\n private _ready: Promise<void> = Promise.resolve();\n\n // Counter for auto-assigned tags when the caller omits one.\n private _idSeq: number = 0;\n\n // Notifications created via the constructor backend, by tag, so close()/closeAll()\n // can dismiss them. The SW backend has no handle (showNotification returns void),\n // so its tags are tracked separately and closed via registration.getNotifications().\n private _constructed: Map<string, Notification> = new Map();\n private _swTags: Set<string> = new Set();\n\n // Click subscription handles (SW relay).\n private _channel: BroadcastChannel | null = null;\n private _serviceWorker: ServiceWorkerContainer | null = null;\n private _clicksSubscribed: boolean = false;\n // Per-click ids already handled, to de-dup the two relay transports. FIFO-capped\n // so a long session does not leak; the two transports always arrive in the same\n // tick, so a small cap is ample.\n private _seenIds: string[] = [];\n\n constructor(target?: EventTarget) {\n super();\n this._target = target ?? this;\n }\n\n get permission(): PermissionStateOrUnsupported {\n return this._permission;\n }\n\n get granted(): boolean {\n return this._permission === \"granted\";\n }\n\n get denied(): boolean {\n return this._permission === \"denied\";\n }\n\n get prompt(): boolean {\n return this._permission === \"prompt\";\n }\n\n get unsupported(): boolean {\n return this._permission === \"unsupported\";\n }\n\n get error(): WcsNotifyErrorDetail | null {\n return this._error;\n }\n\n get clicked(): WcsNotifyClickDetail | null {\n return this._lastClick;\n }\n\n get closed(): WcsNotifyClickDetail | null {\n return this._lastClose;\n }\n\n get shown(): WcsNotifyClickDetail | null {\n return this._lastShow;\n }\n\n /** Resolves once the current (or initial) permission probe settles. */\n get ready(): Promise<void> {\n return this._ready;\n }\n\n // --- State setters with event dispatch ---\n\n private _setPermission(state: PermissionStateOrUnsupported): void {\n if (this._permission === state) return;\n this._permission = state;\n this._target.dispatchEvent(new CustomEvent(\"wcs-notify:permission-change\", {\n detail: state,\n bubbles: true,\n }));\n }\n\n private _setError(error: WcsNotifyErrorDetail | null): void {\n if (this._error === error) return;\n this._error = error;\n this._target.dispatchEvent(new CustomEvent(\"wcs-notify:error\", {\n detail: error,\n bubbles: true,\n }));\n }\n\n private _emit(kind: \"click\" | \"close\" | \"show\", detail: WcsNotifyClickDetail): void {\n if (kind === \"click\") this._lastClick = detail;\n else if (kind === \"close\") this._lastClose = detail;\n else this._lastShow = detail;\n this._target.dispatchEvent(new CustomEvent(`wcs-notify:${kind}`, {\n detail,\n bubbles: true,\n }));\n }\n\n // --- Public API ---\n\n /**\n * Start observing the `notifications` permission and subscribing to Service\n * Worker click relays. `mode` selects the show backend (default `\"auto\"`).\n * Idempotent while already subscribed: it only updates the stored mode; to\n * restart, dispose() first. Returns a promise that resolves once the first\n * permission probe settles, for SSR.\n *\n * Headless callers must call observe() to begin; the Shell calls it from\n * connectedCallback once the element's attributes resolve.\n */\n observe(mode: NotifyBackend = \"auto\"): Promise<void> {\n this._mode = mode;\n if (!this._permissionSubscribed) {\n this._ready = this._initPermission();\n this._subscribeClicks();\n }\n return this._ready;\n }\n\n /**\n * Ask the user for the `notifications` permission. Resolves to the resulting\n * (normalized) permission state. Never throws: an unavailable API resolves to\n * `\"unsupported\"`.\n */\n async request(): Promise<PermissionStateOrUnsupported> {\n const api = this._api();\n if (!api || typeof api.requestPermission !== \"function\") {\n this._setPermission(\"unsupported\");\n return this._permission;\n }\n try {\n const result = await api.requestPermission();\n this._setPermission(this._normalize(result));\n } catch {\n // Some legacy engines may reject; keep the current state rather than throw.\n }\n return this._permission;\n }\n\n /**\n * Show a notification. Returns the identifying tag (the caller's `options.tag`,\n * or a generated `wcs-<n>` when omitted). Never throws: when the API is\n * unavailable or the permission is not granted it surfaces an `error` and\n * returns an empty string.\n */\n notify(title: string, options: NotifyOptions = {}): string {\n if (!this._api()) {\n this._setError(this._err(\"unsupported\", \"Notifications API is not available in this environment.\"));\n return \"\";\n }\n if (this._permission !== \"granted\") {\n this._setError(this._err(\"not-granted\", \"Notification permission is not granted; call request() first.\"));\n return \"\";\n }\n if (typeof title !== \"string\") {\n this._setError(this._err(\"invalid-title\", \"notify() requires a string title.\"));\n return \"\";\n }\n\n const tag = (typeof options.tag === \"string\" && options.tag !== \"\") ? options.tag : this._nextId();\n const payload = options.data;\n const data: WcsNotifyData = { __wcsId: tag, payload };\n const backendOptions: NotifyOptions = { ...options, tag, data };\n\n this._setError(null);\n this._show(title, backendOptions, tag, payload);\n return tag;\n }\n\n /** Dismiss the notification(s) with `tag` across both backends. */\n close(tag?: string): void {\n if (typeof tag !== \"string\" || tag === \"\") return;\n const n = this._constructed.get(tag);\n if (n) {\n n.close();\n this._constructed.delete(tag);\n }\n if (this._swTags.has(tag)) {\n this._closeSw(tag);\n this._swTags.delete(tag);\n }\n }\n\n /**\n * Dismiss every notification this instance has shown. Scoped to this instance's\n * own tags on both backends — the SW path closes each tracked tag individually\n * rather than enumerating the whole origin, so it never dismisses notifications\n * shown by another `<wcs-notify>` or by an unrelated code path.\n */\n closeAll(): void {\n for (const n of this._constructed.values()) {\n n.close();\n }\n this._constructed.clear();\n for (const tag of this._swTags) {\n this._closeSw(tag);\n }\n this._swTags.clear();\n }\n\n /**\n * Detach permission and click subscriptions. Open notifications are intentionally\n * **left on screen** (a notification outlives the page that posted it — that is\n * the point); use close()/closeAll() to dismiss. Call from the Shell's\n * disconnectedCallback. A later observe() resumes.\n */\n dispose(): void {\n this._permissionSubscribed = false;\n this._clicksSubscribed = false;\n this._gen++;\n if (this._permissionStatus) {\n this._permissionStatus.removeEventListener(\"change\", this._onPermissionChange);\n this._permissionStatus = null;\n }\n if (this._channel) {\n this._channel.removeEventListener(\"message\", this._onInbound);\n this._channel.close();\n this._channel = null;\n }\n if (this._serviceWorker) {\n this._serviceWorker.removeEventListener(\"message\", this._onInbound);\n this._serviceWorker = null;\n }\n }\n\n // --- Internal: permission ---\n\n private _initPermission(): Promise<void> {\n const api = this._api();\n if (!api) {\n this._setPermission(\"unsupported\");\n // Intentionally does NOT set _permissionSubscribed: there is no permission\n // listener to tear down, so a reconnect simply re-probes (idempotent — the\n // same-value guard suppresses any redundant dispatch and no listener is ever\n // attached). _subscribeClicks() is re-entered too, but its own\n // _clicksSubscribed guard short-circuits the second pass, so no transport is\n // double-subscribed. Mirrors @wcstack/permission's unsupported path.\n return Promise.resolve();\n }\n this._permissionSubscribed = true;\n // Prefer the Permissions API: it provides a live `change` event. Fall back to\n // the static `Notification.permission` when it is absent or rejects the\n // `notifications` descriptor.\n if (typeof navigator !== \"undefined\" && navigator.permissions && typeof navigator.permissions.query === \"function\") {\n const gen = ++this._gen;\n return navigator.permissions.query({ name: \"notifications\" }).then(\n (status) => {\n if (gen !== this._gen) return;\n this._permissionStatus = status;\n this._setPermission(this._normalize(status.state as NotificationPermissionRaw));\n status.addEventListener(\"change\", this._onPermissionChange);\n },\n () => {\n if (gen !== this._gen) return;\n // Permissions API rejected the `notifications` descriptor — fall back to\n // the static `Notification.permission` (api is in scope and non-null here).\n this._setPermission(this._normalize(api.permission));\n },\n );\n }\n // No Permissions API: read the static permission once (no live change events).\n this._setPermission(this._normalize(api.permission));\n return Promise.resolve();\n }\n\n private _onPermissionChange = (event: Event): void => {\n const status = event.target as PermissionStatus;\n this._setPermission(this._normalize(status.state as NotificationPermissionRaw));\n };\n\n // Normalize the Notifications API's `\"default\"` to `\"prompt\"` so this node shares\n // the four-value surface of @wcstack/permission. The Permissions API already\n // reports `\"prompt\"`, so it passes through unchanged.\n private _normalize(raw: NotificationPermissionRaw | string): PermissionStateOrUnsupported {\n if (raw === \"default\") return \"prompt\";\n if (raw === \"granted\" || raw === \"denied\" || raw === \"prompt\") return raw;\n return \"prompt\";\n }\n\n // --- Internal: showing ---\n\n private _show(title: string, options: NotifyOptions, tag: string, payload: unknown): void {\n if (this._mode === \"sw\") {\n this._showViaSw(title, options, tag, payload);\n return;\n }\n const handled = this._showViaConstructor(title, options, tag, payload);\n if (handled) return;\n // Constructor threw TypeError (e.g. mobile, where `new Notification` is illegal).\n if (this._mode === \"auto\") {\n this._showViaSw(title, options, tag, payload);\n } else {\n this._setError(this._err(\"show-failed\", \"new Notification() is not usable here and mode=\\\"constructor\\\" disallows the Service Worker fallback.\"));\n }\n }\n\n // Returns false only when the constructor threw a TypeError (the signal to fall\n // back to the SW backend); true when it showed or surfaced a non-TypeError error.\n private _showViaConstructor(title: string, options: NotifyOptions, tag: string, payload: unknown): boolean {\n const api = this._api()!;\n const gen = this._gen;\n let n: Notification;\n try {\n n = new api(title, options as NotificationOptions);\n } catch (e) {\n if (e instanceof TypeError) return false;\n this._setError(this._err(\"show-failed\", \"Failed to create the notification.\"));\n return true;\n }\n this._constructed.set(tag, n);\n n.onshow = (): void => {\n if (gen !== this._gen) return;\n this._emit(\"show\", { tag, data: payload, action: \"\" });\n };\n n.onclick = (): void => {\n if (gen !== this._gen) return;\n this._emit(\"click\", { tag, data: payload, action: \"\" });\n };\n n.onclose = (): void => {\n this._constructed.delete(tag);\n if (gen !== this._gen) return;\n this._emit(\"close\", { tag, data: payload, action: \"\" });\n };\n n.onerror = (): void => {\n if (gen !== this._gen) return;\n this._setError(this._err(\"show-failed\", \"The notification failed to display.\"));\n };\n return true;\n }\n\n private _showViaSw(title: string, options: NotifyOptions, tag: string, payload: unknown): void {\n const sw = navigator.serviceWorker as ServiceWorkerContainer | undefined;\n if (!sw) {\n this._setError(this._err(\"no-service-worker\", \"Service Worker is required to show this notification but is unavailable.\"));\n return;\n }\n const gen = this._gen;\n this._swTags.add(tag);\n // A notification deliberately outlives the page (see § dispose), so we do NOT\n // bail before showNotification on a stale gen — a notify() issued while\n // connected still shows. The stale-gen guards only suppress dispatching the\n // observable `show` / `error` back onto a torn-down element.\n sw.ready\n .then((registration) => registration.showNotification(title, options as NotificationOptions))\n .then(() => {\n if (gen !== this._gen) return;\n this._emit(\"show\", { tag, data: payload, action: \"\" });\n })\n .catch(() => {\n if (gen !== this._gen) return;\n this._setError(this._err(\"show-failed\", \"ServiceWorkerRegistration.showNotification() failed.\"));\n });\n }\n\n // Close the SW notification(s) carrying `tag`. Always scoped to a single tag —\n // both callers (close / closeAll) iterate their own tracked tags, so the whole\n // origin is never enumerated.\n private _closeSw(tag: string): void {\n const sw = navigator.serviceWorker as ServiceWorkerContainer | undefined;\n if (!sw) return;\n sw.ready.then((registration) => {\n return registration.getNotifications({ tag }).then((list) => {\n for (const n of list) n.close();\n });\n }).catch(() => {\n // Closing is best-effort; a failure to enumerate is not surfaced.\n });\n }\n\n // --- Internal: click relay (SW) ---\n\n private _subscribeClicks(): void {\n if (this._clicksSubscribed) return;\n this._clicksSubscribed = true;\n if (typeof BroadcastChannel === \"function\") {\n this._channel = new BroadcastChannel(\"wcs-notify\");\n this._channel.addEventListener(\"message\", this._onInbound);\n }\n const sw = navigator.serviceWorker as ServiceWorkerContainer | undefined;\n if (sw) {\n this._serviceWorker = sw;\n sw.addEventListener(\"message\", this._onInbound);\n }\n }\n\n private _onInbound = (event: Event): void => {\n const msg = (event as MessageEvent).data as WcsNotifyInbound | undefined;\n if (!msg || msg.__wcsNotify !== true) return;\n if (this._isDuplicate(msg.id)) return;\n this._emit(\"click\", { tag: msg.tag, data: this._unwrap(msg.data), action: msg.action });\n };\n\n private _isDuplicate(id: string): boolean {\n if (this._seenIds.includes(id)) return true;\n this._seenIds.push(id);\n if (this._seenIds.length > 50) this._seenIds.shift();\n return false;\n }\n\n private _unwrap(raw: unknown): unknown {\n if (raw !== null && typeof raw === \"object\" && \"__wcsId\" in raw) {\n return (raw as WcsNotifyData).payload;\n }\n return raw;\n }\n\n // --- Internal: misc ---\n\n // Resolve the global `Notification` constructor at call time (not cached) so\n // tests can install/remove it and so unsupported environments report correctly.\n private _api(): (typeof Notification) | undefined {\n const g = globalThis as unknown as { Notification?: typeof Notification };\n return typeof g.Notification === \"function\" ? g.Notification : undefined;\n }\n\n private _nextId(): string {\n return `wcs-${++this._idSeq}`;\n }\n\n private _err(error: string, message: string): WcsNotifyErrorDetail {\n return { error, message };\n }\n}\n","import { config } from \"./config.js\";\nimport type { WcsNotify } from \"./components/Notify.js\";\n\nlet registered = false;\n\nfunction handleClick(event: Event): void {\n const target = event.target;\n if (!(target instanceof Element)) return;\n\n // A misconfigured triggerAttribute (e.g. one with a space) makes the attribute\n // selector invalid and closest() throw SyntaxError; guard so a bad config\n // disables only this shortcut rather than killing every document click handler.\n let triggerElement: Element | null;\n try {\n triggerElement = target.closest<Element>(`[${config.triggerAttribute}]`);\n } catch {\n return;\n }\n if (!triggerElement) return;\n\n const notifyId = triggerElement.getAttribute(config.triggerAttribute);\n if (!notifyId) return;\n\n // Resolve the registered constructor at call time instead of importing Notify as\n // a value, avoiding a components/Notify.ts ⇄ autoTrigger.ts cycle\n // (Notify.connectedCallback() calls registerAutoTrigger()). instanceof against\n // the customElements registry keeps the same identity guarantee.\n const NotifyCtor = customElements.get(config.tagNames.notify);\n const notifyElement = document.getElementById(notifyId);\n if (!NotifyCtor || !(notifyElement instanceof NotifyCtor)) return;\n\n // The title comes from the trigger element: an explicit `data-notifytitle`\n // attribute wins, otherwise the element's trimmed text content. The body is an\n // optional `data-notifybody`. This keeps the click-driven shortcut declarative\n // without inventing a payload channel.\n const explicit = triggerElement.getAttribute(\"data-notifytitle\");\n // `Element.textContent` is spec-guaranteed non-null (only Document / DocumentType\n // nodes return null, never an Element), so the cast is sound and lets us avoid an\n // unreachable `?? \"\"` branch. `triggerElement` is always an Element here.\n const title = explicit !== null ? explicit : (triggerElement.textContent as string).trim();\n const body = triggerElement.getAttribute(\"data-notifybody\");\n\n (notifyElement as WcsNotify).notify(title, body !== null ? { body } : undefined);\n}\n\nexport function registerAutoTrigger(): void {\n if (registered) return;\n registered = true;\n document.addEventListener(\"click\", handleClick);\n}\n\nexport function unregisterAutoTrigger(): void {\n if (!registered) return;\n registered = false;\n document.removeEventListener(\"click\", handleClick);\n}\n","import { config } from \"../config.js\";\nimport {\n IWcBindable, NotifyBackend, NotifyOptions, PermissionStateOrUnsupported,\n WcsNotifyClickDetail, WcsNotifyErrorDetail,\n} from \"../types.js\";\nimport { NotificationCore } from \"../core/NotificationCore.js\";\nimport { registerAutoTrigger } from \"../autoTrigger.js\";\n\n/**\n * `<wcs-notify>` — declarative desktop notifications. Wraps NotificationCore and\n * exposes both directions in one tag:\n *\n * - **`notice`** (reactive input): writing a *changed* value shows a notification,\n * suppressing same-value writes so it fires only when the bound source actually\n * changes. The imperative `notify` command instead shows on demand (even the\n * same text again). See `docs/notification-tag-design.md` § 2.\n * - **`request` / `notify` / `close` / `closeAll`** commands (state → element).\n * - per-notification options (`body` / `icon` / `badge` / `tag` / `lang` / `dir` /\n * `require-interaction` / `silent` / `renotify`) as mirrored attributes.\n * - `mode` selects the show backend (`auto` / `sw` / `constructor`).\n * - the Core's observable surface (permission / granted / … / error / clicked /\n * closed / shown) via delegated getters; clicked/closed/shown carry the\n * `{ tag, data, action }` payload for event-token wiring.\n */\nexport class WcsNotify extends HTMLElement {\n static hasConnectedCallbackPromise = true;\n static wcBindable: IWcBindable = {\n ...NotificationCore.wcBindable,\n // Shell-level settable surface. `notice` is a momentary reactive command-property\n // with no mirrored attribute (it carries dynamic text, not declarative config),\n // mirroring <wcs-speak>'s `say`. The rest mirror their HTML attributes idempotently.\n inputs: [\n { name: \"notice\" },\n { name: \"mode\", attribute: \"mode\" },\n { name: \"body\", attribute: \"body\" },\n { name: \"icon\", attribute: \"icon\" },\n { name: \"badge\", attribute: \"badge\" },\n { name: \"tag\", attribute: \"tag\" },\n { name: \"lang\", attribute: \"lang\" },\n { name: \"dir\", attribute: \"dir\" },\n { name: \"requireInteraction\", attribute: \"require-interaction\" },\n { name: \"silent\", attribute: \"silent\" },\n { name: \"renotify\", attribute: \"renotify\" },\n { name: \"manual\", attribute: \"manual\" },\n ],\n commands: NotificationCore.wcBindable.commands,\n };\n\n private _core: NotificationCore;\n private _notice: string = \"\";\n private _connectedCallbackPromise: Promise<void> = Promise.resolve();\n\n constructor() {\n super();\n this._core = new NotificationCore(this);\n }\n\n // --- Attribute accessors ---\n\n get mode(): NotifyBackend {\n const m = this.getAttribute(\"mode\");\n return (m === \"sw\" || m === \"constructor\") ? m : \"auto\";\n }\n\n set mode(value: NotifyBackend) {\n this.setAttribute(\"mode\", value);\n }\n\n get body(): string {\n return this.getAttribute(\"body\") ?? \"\";\n }\n\n set body(value: string | null) {\n this._reflect(\"body\", value);\n }\n\n get icon(): string {\n return this.getAttribute(\"icon\") ?? \"\";\n }\n\n set icon(value: string | null) {\n this._reflect(\"icon\", value);\n }\n\n get badge(): string {\n return this.getAttribute(\"badge\") ?? \"\";\n }\n\n set badge(value: string | null) {\n this._reflect(\"badge\", value);\n }\n\n get tag(): string {\n return this.getAttribute(\"tag\") ?? \"\";\n }\n\n set tag(value: string | null) {\n this._reflect(\"tag\", value);\n }\n\n // NOTE: `lang` and `dir` intentionally repurpose the standard HTMLElement IDL\n // attributes as per-notification options (forwarded to NotificationOptions).\n // This element is always display:none, so overriding their normal rendering\n // semantics has no visual effect — but be aware the values mean \"the\n // notification's language/direction\", not the host element's.\n get lang(): string {\n return this.getAttribute(\"lang\") ?? \"\";\n }\n\n set lang(value: string | null) {\n this._reflect(\"lang\", value);\n }\n\n get dir(): string {\n return this.getAttribute(\"dir\") ?? \"\";\n }\n\n set dir(value: string | null) {\n this._reflect(\"dir\", value);\n }\n\n get requireInteraction(): boolean {\n return this.hasAttribute(\"require-interaction\");\n }\n\n set requireInteraction(value: boolean) {\n this._reflectBool(\"require-interaction\", value);\n }\n\n get silent(): boolean {\n return this.hasAttribute(\"silent\");\n }\n\n set silent(value: boolean) {\n this._reflectBool(\"silent\", value);\n }\n\n get renotify(): boolean {\n return this.hasAttribute(\"renotify\");\n }\n\n set renotify(value: boolean) {\n this._reflectBool(\"renotify\", value);\n }\n\n get manual(): boolean {\n return this.hasAttribute(\"manual\");\n }\n\n set manual(value: boolean) {\n this._reflectBool(\"manual\", value);\n }\n\n // --- Reactive command-property ---\n\n get notice(): string {\n return this._notice;\n }\n\n set notice(value: string | null) {\n // Reactive: writing a new value shows it. `manual` mutes the path entirely\n // (the imperative `notify` command still works). A conforming binder never\n // delivers `undefined` (it skips the write), but a direct assignment can, so\n // normalize null/undefined to a no-op.\n if (value == null) return;\n if (this.manual) return;\n const v = String(value);\n // Same-value guard: only show when the bound source actually changes. To show\n // the same text again on demand, use the `notify` command instead. (This is\n // the only spam guard the package provides — see docs § 2-c; debounce is the\n // caller's job via a filter, e.g. `notice@x|debounce(1000)`.)\n if (v === this._notice) return;\n this._notice = v;\n this.notify(v);\n }\n\n // --- Core delegated getters ---\n\n get permission(): PermissionStateOrUnsupported {\n return this._core.permission;\n }\n\n get granted(): boolean {\n return this._core.granted;\n }\n\n get denied(): boolean {\n return this._core.denied;\n }\n\n get prompt(): boolean {\n return this._core.prompt;\n }\n\n get unsupported(): boolean {\n return this._core.unsupported;\n }\n\n get error(): WcsNotifyErrorDetail | null {\n return this._core.error;\n }\n\n get clicked(): WcsNotifyClickDetail | null {\n return this._core.clicked;\n }\n\n get closed(): WcsNotifyClickDetail | null {\n return this._core.closed;\n }\n\n get shown(): WcsNotifyClickDetail | null {\n return this._core.shown;\n }\n\n get connectedCallbackPromise(): Promise<void> {\n return this._connectedCallbackPromise;\n }\n\n // --- Commands ---\n\n request(): Promise<PermissionStateOrUnsupported> {\n return this._core.request();\n }\n\n notify(title: string, options?: NotifyOptions): string {\n // Explicit options (from a command-token emit) win per-key over the attribute\n // defaults, so `notify.emit(title, { body })` still picks up the element's icon.\n return this._core.notify(title, { ...this._options(), ...(options ?? {}) });\n }\n\n close(tag?: string): void {\n this._core.close(tag);\n }\n\n closeAll(): void {\n this._core.closeAll();\n }\n\n // --- Internal ---\n\n private _reflect(name: string, value: string | null): void {\n if (value == null) {\n this.removeAttribute(name);\n } else {\n this.setAttribute(name, String(value));\n }\n }\n\n private _reflectBool(name: string, value: boolean): void {\n if (value) {\n this.setAttribute(name, \"\");\n } else {\n this.removeAttribute(name);\n }\n }\n\n private _options(): NotifyOptions {\n const o: NotifyOptions = {};\n if (this.body !== \"\") o.body = this.body;\n if (this.icon !== \"\") o.icon = this.icon;\n if (this.badge !== \"\") o.badge = this.badge;\n if (this.tag !== \"\") o.tag = this.tag;\n if (this.lang !== \"\") o.lang = this.lang;\n if (this.dir === \"auto\" || this.dir === \"ltr\" || this.dir === \"rtl\") o.dir = this.dir;\n if (this.requireInteraction) o.requireInteraction = true;\n if (this.silent) o.silent = true;\n if (this.renotify) o.renotify = true;\n return o;\n }\n\n // --- Lifecycle ---\n\n connectedCallback(): void {\n this.style.display = \"none\";\n if (config.autoTrigger) {\n registerAutoTrigger();\n }\n // Begin observing permission and subscribing to SW click relays (or revive\n // after a reconnect). The returned promise is held as connectedCallbackPromise\n // for SSR.\n this._connectedCallbackPromise = this._core.observe(this.mode);\n }\n\n disconnectedCallback(): void {\n // Detach subscriptions. Open notifications are left on screen (see Core docs);\n // call close()/closeAll() to dismiss.\n this._core.dispose();\n }\n}\n","import { WcsNotify } from \"./components/Notify.js\";\nimport { config } from \"./config.js\";\n\nexport function registerComponents(): void {\n if (!customElements.get(config.tagNames.notify)) {\n customElements.define(config.tagNames.notify, WcsNotify);\n }\n}\n","import { setConfig } from \"./config.js\";\nimport { registerComponents } from \"./registerComponents.js\";\nimport { IWritableConfig } from \"./types.js\";\n\nexport function bootstrapNotification(userConfig?: IWritableConfig): void {\n if (userConfig) {\n setConfig(userConfig);\n }\n registerComponents();\n}\n"],"names":[],"mappings":"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"}
@@ -0,0 +1,2 @@
1
+ const t={autoTrigger:!0,triggerAttribute:"data-notifytarget",tagNames:{notify:"wcs-notify"}};function e(t){if(null===t||"object"!=typeof t)return t;Object.freeze(t);for(const i of Object.keys(t))e(t[i]);return t}function i(t){if(null===t||"object"!=typeof t)return t;const e={};for(const s of Object.keys(t))e[s]=i(t[s]);return e}let s=null;const r=t;function n(){return s||(s=e(i(t))),s}class o extends EventTarget{static wcBindable={protocol:"wc-bindable",version:1,properties:[{name:"permission",event:"wcs-notify:permission-change"},{name:"granted",event:"wcs-notify:permission-change",getter:t=>"granted"===t.detail},{name:"denied",event:"wcs-notify:permission-change",getter:t=>"denied"===t.detail},{name:"prompt",event:"wcs-notify:permission-change",getter:t=>"prompt"===t.detail},{name:"unsupported",event:"wcs-notify:permission-change",getter:t=>"unsupported"===t.detail},{name:"error",event:"wcs-notify:error"},{name:"clicked",event:"wcs-notify:click",getter:t=>t.detail},{name:"closed",event:"wcs-notify:close",getter:t=>t.detail},{name:"shown",event:"wcs-notify:show",getter:t=>t.detail}],commands:[{name:"request",async:!0},{name:"notify"},{name:"close"},{name:"closeAll"}]};_target;_mode="auto";_permission="prompt";_error=null;_lastClick=null;_lastClose=null;_lastShow=null;_permissionStatus=null;_permissionSubscribed=!1;_gen=0;_ready=Promise.resolve();_idSeq=0;_constructed=new Map;_swTags=new Set;_channel=null;_serviceWorker=null;_clicksSubscribed=!1;_seenIds=[];constructor(t){super(),this._target=t??this}get permission(){return this._permission}get granted(){return"granted"===this._permission}get denied(){return"denied"===this._permission}get prompt(){return"prompt"===this._permission}get unsupported(){return"unsupported"===this._permission}get error(){return this._error}get clicked(){return this._lastClick}get closed(){return this._lastClose}get shown(){return this._lastShow}get ready(){return this._ready}_setPermission(t){this._permission!==t&&(this._permission=t,this._target.dispatchEvent(new CustomEvent("wcs-notify:permission-change",{detail:t,bubbles:!0})))}_setError(t){this._error!==t&&(this._error=t,this._target.dispatchEvent(new CustomEvent("wcs-notify:error",{detail:t,bubbles:!0})))}_emit(t,e){"click"===t?this._lastClick=e:"close"===t?this._lastClose=e:this._lastShow=e,this._target.dispatchEvent(new CustomEvent(`wcs-notify:${t}`,{detail:e,bubbles:!0}))}observe(t="auto"){return this._mode=t,this._permissionSubscribed||(this._ready=this._initPermission(),this._subscribeClicks()),this._ready}async request(){const t=this._api();if(!t||"function"!=typeof t.requestPermission)return this._setPermission("unsupported"),this._permission;try{const e=await t.requestPermission();this._setPermission(this._normalize(e))}catch{}return this._permission}notify(t,e={}){if(!this._api())return this._setError(this._err("unsupported","Notifications API is not available in this environment.")),"";if("granted"!==this._permission)return this._setError(this._err("not-granted","Notification permission is not granted; call request() first.")),"";if("string"!=typeof t)return this._setError(this._err("invalid-title","notify() requires a string title.")),"";const i="string"==typeof e.tag&&""!==e.tag?e.tag:this._nextId(),s=e.data,r={__wcsId:i,payload:s},n={...e,tag:i,data:r};return this._setError(null),this._show(t,n,i,s),i}close(t){if("string"!=typeof t||""===t)return;const e=this._constructed.get(t);e&&(e.close(),this._constructed.delete(t)),this._swTags.has(t)&&(this._closeSw(t),this._swTags.delete(t))}closeAll(){for(const t of this._constructed.values())t.close();this._constructed.clear();for(const t of this._swTags)this._closeSw(t);this._swTags.clear()}dispose(){this._permissionSubscribed=!1,this._clicksSubscribed=!1,this._gen++,this._permissionStatus&&(this._permissionStatus.removeEventListener("change",this._onPermissionChange),this._permissionStatus=null),this._channel&&(this._channel.removeEventListener("message",this._onInbound),this._channel.close(),this._channel=null),this._serviceWorker&&(this._serviceWorker.removeEventListener("message",this._onInbound),this._serviceWorker=null)}_initPermission(){const t=this._api();if(!t)return this._setPermission("unsupported"),Promise.resolve();if(this._permissionSubscribed=!0,"undefined"!=typeof navigator&&navigator.permissions&&"function"==typeof navigator.permissions.query){const e=++this._gen;return navigator.permissions.query({name:"notifications"}).then(t=>{e===this._gen&&(this._permissionStatus=t,this._setPermission(this._normalize(t.state)),t.addEventListener("change",this._onPermissionChange))},()=>{e===this._gen&&this._setPermission(this._normalize(t.permission))})}return this._setPermission(this._normalize(t.permission)),Promise.resolve()}_onPermissionChange=t=>{const e=t.target;this._setPermission(this._normalize(e.state))};_normalize(t){return"default"===t?"prompt":"granted"===t||"denied"===t||"prompt"===t?t:"prompt"}_show(t,e,i,s){if("sw"===this._mode)return void this._showViaSw(t,e,i,s);this._showViaConstructor(t,e,i,s)||("auto"===this._mode?this._showViaSw(t,e,i,s):this._setError(this._err("show-failed",'new Notification() is not usable here and mode="constructor" disallows the Service Worker fallback.')))}_showViaConstructor(t,e,i,s){const r=this._api(),n=this._gen;let o;try{o=new r(t,e)}catch(t){return!(t instanceof TypeError)&&(this._setError(this._err("show-failed","Failed to create the notification.")),!0)}return this._constructed.set(i,o),o.onshow=()=>{n===this._gen&&this._emit("show",{tag:i,data:s,action:""})},o.onclick=()=>{n===this._gen&&this._emit("click",{tag:i,data:s,action:""})},o.onclose=()=>{this._constructed.delete(i),n===this._gen&&this._emit("close",{tag:i,data:s,action:""})},o.onerror=()=>{n===this._gen&&this._setError(this._err("show-failed","The notification failed to display."))},!0}_showViaSw(t,e,i,s){const r=navigator.serviceWorker;if(!r)return void this._setError(this._err("no-service-worker","Service Worker is required to show this notification but is unavailable."));const n=this._gen;this._swTags.add(i),r.ready.then(i=>i.showNotification(t,e)).then(()=>{n===this._gen&&this._emit("show",{tag:i,data:s,action:""})}).catch(()=>{n===this._gen&&this._setError(this._err("show-failed","ServiceWorkerRegistration.showNotification() failed."))})}_closeSw(t){const e=navigator.serviceWorker;e&&e.ready.then(e=>e.getNotifications({tag:t}).then(t=>{for(const e of t)e.close()})).catch(()=>{})}_subscribeClicks(){if(this._clicksSubscribed)return;this._clicksSubscribed=!0,"function"==typeof BroadcastChannel&&(this._channel=new BroadcastChannel("wcs-notify"),this._channel.addEventListener("message",this._onInbound));const t=navigator.serviceWorker;t&&(this._serviceWorker=t,t.addEventListener("message",this._onInbound))}_onInbound=t=>{const e=t.data;e&&!0===e.__wcsNotify&&(this._isDuplicate(e.id)||this._emit("click",{tag:e.tag,data:this._unwrap(e.data),action:e.action}))};_isDuplicate(t){return!!this._seenIds.includes(t)||(this._seenIds.push(t),this._seenIds.length>50&&this._seenIds.shift(),!1)}_unwrap(t){return null!==t&&"object"==typeof t&&"__wcsId"in t?t.payload:t}_api(){const t=globalThis;return"function"==typeof t.Notification?t.Notification:void 0}_nextId(){return"wcs-"+ ++this._idSeq}_err(t,e){return{error:t,message:e}}}let a=!1;function c(t){const e=t.target;if(!(e instanceof Element))return;let i;try{i=e.closest(`[${r.triggerAttribute}]`)}catch{return}if(!i)return;const s=i.getAttribute(r.triggerAttribute);if(!s)return;const n=customElements.get(r.tagNames.notify),o=document.getElementById(s);if(!(n&&o instanceof n))return;const a=i.getAttribute("data-notifytitle"),c=null!==a?a:i.textContent.trim(),h=i.getAttribute("data-notifybody");o.notify(c,null!==h?{body:h}:void 0)}class h extends HTMLElement{static hasConnectedCallbackPromise=!0;static wcBindable={...o.wcBindable,inputs:[{name:"notice"},{name:"mode",attribute:"mode"},{name:"body",attribute:"body"},{name:"icon",attribute:"icon"},{name:"badge",attribute:"badge"},{name:"tag",attribute:"tag"},{name:"lang",attribute:"lang"},{name:"dir",attribute:"dir"},{name:"requireInteraction",attribute:"require-interaction"},{name:"silent",attribute:"silent"},{name:"renotify",attribute:"renotify"},{name:"manual",attribute:"manual"}],commands:o.wcBindable.commands};_core;_notice="";_connectedCallbackPromise=Promise.resolve();constructor(){super(),this._core=new o(this)}get mode(){const t=this.getAttribute("mode");return"sw"===t||"constructor"===t?t:"auto"}set mode(t){this.setAttribute("mode",t)}get body(){return this.getAttribute("body")??""}set body(t){this._reflect("body",t)}get icon(){return this.getAttribute("icon")??""}set icon(t){this._reflect("icon",t)}get badge(){return this.getAttribute("badge")??""}set badge(t){this._reflect("badge",t)}get tag(){return this.getAttribute("tag")??""}set tag(t){this._reflect("tag",t)}get lang(){return this.getAttribute("lang")??""}set lang(t){this._reflect("lang",t)}get dir(){return this.getAttribute("dir")??""}set dir(t){this._reflect("dir",t)}get requireInteraction(){return this.hasAttribute("require-interaction")}set requireInteraction(t){this._reflectBool("require-interaction",t)}get silent(){return this.hasAttribute("silent")}set silent(t){this._reflectBool("silent",t)}get renotify(){return this.hasAttribute("renotify")}set renotify(t){this._reflectBool("renotify",t)}get manual(){return this.hasAttribute("manual")}set manual(t){this._reflectBool("manual",t)}get notice(){return this._notice}set notice(t){if(null==t)return;if(this.manual)return;const e=String(t);e!==this._notice&&(this._notice=e,this.notify(e))}get permission(){return this._core.permission}get granted(){return this._core.granted}get denied(){return this._core.denied}get prompt(){return this._core.prompt}get unsupported(){return this._core.unsupported}get error(){return this._core.error}get clicked(){return this._core.clicked}get closed(){return this._core.closed}get shown(){return this._core.shown}get connectedCallbackPromise(){return this._connectedCallbackPromise}request(){return this._core.request()}notify(t,e){return this._core.notify(t,{...this._options(),...e??{}})}close(t){this._core.close(t)}closeAll(){this._core.closeAll()}_reflect(t,e){null==e?this.removeAttribute(t):this.setAttribute(t,String(e))}_reflectBool(t,e){e?this.setAttribute(t,""):this.removeAttribute(t)}_options(){const t={};return""!==this.body&&(t.body=this.body),""!==this.icon&&(t.icon=this.icon),""!==this.badge&&(t.badge=this.badge),""!==this.tag&&(t.tag=this.tag),""!==this.lang&&(t.lang=this.lang),"auto"!==this.dir&&"ltr"!==this.dir&&"rtl"!==this.dir||(t.dir=this.dir),this.requireInteraction&&(t.requireInteraction=!0),this.silent&&(t.silent=!0),this.renotify&&(t.renotify=!0),t}connectedCallback(){this.style.display="none",r.autoTrigger&&(a||(a=!0,document.addEventListener("click",c))),this._connectedCallbackPromise=this._core.observe(this.mode)}disconnectedCallback(){this._core.dispose()}}function l(e){var i;e&&("boolean"==typeof(i=e).autoTrigger&&(t.autoTrigger=i.autoTrigger),"string"==typeof i.triggerAttribute&&(t.triggerAttribute=i.triggerAttribute),i.tagNames&&Object.assign(t.tagNames,i.tagNames),s=null),customElements.get(r.tagNames.notify)||customElements.define(r.tagNames.notify,h)}export{o as NotificationCore,h as WcsNotify,l as bootstrapNotification,n as getConfig};
2
+ //# sourceMappingURL=index.esm.min.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.esm.min.js","sources":["../src/config.ts","../src/core/NotificationCore.ts","../src/autoTrigger.ts","../src/components/Notify.ts","../src/bootstrapNotification.ts","../src/registerComponents.ts"],"sourcesContent":["import { IConfig, IWritableConfig } from \"./types.js\";\n\ninterface IInternalConfig extends IConfig {\n autoTrigger: boolean;\n triggerAttribute: string;\n tagNames: {\n notify: string;\n };\n}\n\nconst _config: IInternalConfig = {\n autoTrigger: true,\n triggerAttribute: \"data-notifytarget\",\n tagNames: {\n notify: \"wcs-notify\",\n },\n};\n\nfunction deepFreeze<T>(obj: T): T {\n if (obj === null || typeof obj !== \"object\") return obj;\n Object.freeze(obj);\n for (const key of Object.keys(obj)) {\n deepFreeze((obj as Record<string, unknown>)[key]);\n }\n return obj;\n}\n\nfunction deepClone<T>(obj: T): T {\n if (obj === null || typeof obj !== \"object\") return obj;\n const clone: Record<string, unknown> = {};\n for (const key of Object.keys(obj)) {\n clone[key] = deepClone((obj as Record<string, unknown>)[key]);\n }\n return clone as T;\n}\n\nlet frozenConfig: IConfig | null = null;\n\n// Internal, mutable live config used by the components/autoTrigger (they read it\n// at call time so setConfig() takes effect without re-import). Typed as the\n// readonly IConfig at the export boundary — the `as IConfig` is a compile-time\n// view only and does NOT freeze the object, so this export must stay\n// package-internal (it is not re-exported from exports.ts). Public consumers get\n// the deep-frozen clone from getConfig() instead.\nexport const config: IConfig = _config as IConfig;\n\nexport function getConfig(): IConfig {\n if (!frozenConfig) {\n frozenConfig = deepFreeze(deepClone(_config));\n }\n return frozenConfig;\n}\n\nexport function setConfig(partialConfig: IWritableConfig): void {\n if (typeof partialConfig.autoTrigger === \"boolean\") {\n _config.autoTrigger = partialConfig.autoTrigger;\n }\n if (typeof partialConfig.triggerAttribute === \"string\") {\n _config.triggerAttribute = partialConfig.triggerAttribute;\n }\n if (partialConfig.tagNames) {\n Object.assign(_config.tagNames, partialConfig.tagNames);\n }\n frozenConfig = null;\n}\n","import {\n IWcBindable, NotifyBackend, NotifyOptions, NotificationPermissionRaw,\n PermissionStateOrUnsupported, WcsNotifyClickDetail, WcsNotifyErrorDetail,\n} from \"../types.js\";\n\n// Wrapper stored in a notification's `data` so the Service Worker side (a\n// separate global scope with no access to this instance) can recover the\n// identity and the caller's payload. The constructor backend uses the same\n// wrapper for uniformity, and both paths unwrap it before emitting.\ninterface WcsNotifyData {\n __wcsId: string;\n payload: unknown;\n}\n\n// Message shape posted by `wireNotificationClicks()` (src/sw.ts) over both\n// BroadcastChannel and clients.postMessage. `id` is unique per click\n// (`tag#seq`), so the two transports delivering the *same* click de-dup, while\n// two genuine clicks on the same `tag` do not.\ninterface WcsNotifyInbound {\n __wcsNotify: true;\n id: string;\n tag: string;\n data: unknown;\n action: string;\n}\n\n/**\n * Headless desktop-notification primitive. A thin, framework-agnostic wrapper\n * around the Notifications API exposed through the wc-bindable protocol.\n *\n * Unlike `@wcstack/permission` (a read-only monitor — the Permissions API has no\n * `request()`), the Notifications API *does* expose `Notification.requestPermission()`,\n * so this node is self-contained: it both **requests/monitors** the permission and\n * **shows** notifications. It is the first @wcstack node where the command-token\n * (show: `notify`) and event-token (`click` / `close` / `show`) directions both\n * live in one tag.\n *\n * - **request()** asks for the `notifications` permission (`Notification.requestPermission`).\n * - **notify(title, options)** shows a notification and returns its identifying tag\n * (a caller `options.tag`, or a generated `wcs-<n>`). It picks a backend per\n * `mode`: the `Notification` constructor (desktop) or\n * `ServiceWorkerRegistration.showNotification()` (mobile). `\"auto\"` prefers the\n * constructor and falls back to the SW on a `TypeError`.\n * - **close(tag) / closeAll()** dismiss notifications by tag / all.\n * - Clicks flow back as the `wcs-notify:click` event: directly via the\n * Notification's `onclick` (constructor), or via the SW helper's\n * BroadcastChannel/postMessage relay (SW). `permission` mirrors the live grant.\n *\n * Failures never throw: they surface through `error` (and the `unsupported`\n * permission state) so they flow into the declarative state.\n */\nexport class NotificationCore extends EventTarget {\n static wcBindable: IWcBindable = {\n protocol: \"wc-bindable\",\n version: 1,\n properties: [\n { name: \"permission\", event: \"wcs-notify:permission-change\" },\n { name: \"granted\", event: \"wcs-notify:permission-change\", getter: (e: Event) => (e as CustomEvent).detail === \"granted\" },\n { name: \"denied\", event: \"wcs-notify:permission-change\", getter: (e: Event) => (e as CustomEvent).detail === \"denied\" },\n { name: \"prompt\", event: \"wcs-notify:permission-change\", getter: (e: Event) => (e as CustomEvent).detail === \"prompt\" },\n { name: \"unsupported\", event: \"wcs-notify:permission-change\", getter: (e: Event) => (e as CustomEvent).detail === \"unsupported\" },\n { name: \"error\", event: \"wcs-notify:error\" },\n { name: \"clicked\", event: \"wcs-notify:click\", getter: (e: Event) => (e as CustomEvent).detail },\n { name: \"closed\", event: \"wcs-notify:close\", getter: (e: Event) => (e as CustomEvent).detail },\n { name: \"shown\", event: \"wcs-notify:show\", getter: (e: Event) => (e as CustomEvent).detail },\n ],\n commands: [\n { name: \"request\", async: true },\n { name: \"notify\" },\n { name: \"close\" },\n { name: \"closeAll\" },\n ],\n };\n\n private _target: EventTarget;\n private _mode: NotifyBackend = \"auto\";\n\n private _permission: PermissionStateOrUnsupported = \"prompt\";\n private _error: WcsNotifyErrorDetail | null = null;\n private _lastClick: WcsNotifyClickDetail | null = null;\n private _lastClose: WcsNotifyClickDetail | null = null;\n private _lastShow: WcsNotifyClickDetail | null = null;\n\n // Live PermissionStatus (when the Permissions API can query `notifications`),\n // kept so its `change` listener can be removed on dispose().\n private _permissionStatus: PermissionStatus | null = null;\n // True once a permission subscription has been (or is being) established; reset\n // by dispose(). Guards observe() so a reconnect re-queries while a redundant\n // observe() on a live subscription does not.\n private _permissionSubscribed: boolean = false;\n\n // Monotonic id of the current lifecycle. Bumped by every observe() and by\n // dispose(). In-flight async work (permission query, SW show, inbound click)\n // captures it and bails if stale, so a query/click that resolves after a\n // disconnect — or after a rapid disconnect→reconnect — never mutates state or\n // dispatches on a torn-down element.\n private _gen: number = 0;\n\n // Resolves once the connect-time permission probe settles. The Shell exposes\n // this as connectedCallbackPromise so SSR can await it before snapshotting.\n private _ready: Promise<void> = Promise.resolve();\n\n // Counter for auto-assigned tags when the caller omits one.\n private _idSeq: number = 0;\n\n // Notifications created via the constructor backend, by tag, so close()/closeAll()\n // can dismiss them. The SW backend has no handle (showNotification returns void),\n // so its tags are tracked separately and closed via registration.getNotifications().\n private _constructed: Map<string, Notification> = new Map();\n private _swTags: Set<string> = new Set();\n\n // Click subscription handles (SW relay).\n private _channel: BroadcastChannel | null = null;\n private _serviceWorker: ServiceWorkerContainer | null = null;\n private _clicksSubscribed: boolean = false;\n // Per-click ids already handled, to de-dup the two relay transports. FIFO-capped\n // so a long session does not leak; the two transports always arrive in the same\n // tick, so a small cap is ample.\n private _seenIds: string[] = [];\n\n constructor(target?: EventTarget) {\n super();\n this._target = target ?? this;\n }\n\n get permission(): PermissionStateOrUnsupported {\n return this._permission;\n }\n\n get granted(): boolean {\n return this._permission === \"granted\";\n }\n\n get denied(): boolean {\n return this._permission === \"denied\";\n }\n\n get prompt(): boolean {\n return this._permission === \"prompt\";\n }\n\n get unsupported(): boolean {\n return this._permission === \"unsupported\";\n }\n\n get error(): WcsNotifyErrorDetail | null {\n return this._error;\n }\n\n get clicked(): WcsNotifyClickDetail | null {\n return this._lastClick;\n }\n\n get closed(): WcsNotifyClickDetail | null {\n return this._lastClose;\n }\n\n get shown(): WcsNotifyClickDetail | null {\n return this._lastShow;\n }\n\n /** Resolves once the current (or initial) permission probe settles. */\n get ready(): Promise<void> {\n return this._ready;\n }\n\n // --- State setters with event dispatch ---\n\n private _setPermission(state: PermissionStateOrUnsupported): void {\n if (this._permission === state) return;\n this._permission = state;\n this._target.dispatchEvent(new CustomEvent(\"wcs-notify:permission-change\", {\n detail: state,\n bubbles: true,\n }));\n }\n\n private _setError(error: WcsNotifyErrorDetail | null): void {\n if (this._error === error) return;\n this._error = error;\n this._target.dispatchEvent(new CustomEvent(\"wcs-notify:error\", {\n detail: error,\n bubbles: true,\n }));\n }\n\n private _emit(kind: \"click\" | \"close\" | \"show\", detail: WcsNotifyClickDetail): void {\n if (kind === \"click\") this._lastClick = detail;\n else if (kind === \"close\") this._lastClose = detail;\n else this._lastShow = detail;\n this._target.dispatchEvent(new CustomEvent(`wcs-notify:${kind}`, {\n detail,\n bubbles: true,\n }));\n }\n\n // --- Public API ---\n\n /**\n * Start observing the `notifications` permission and subscribing to Service\n * Worker click relays. `mode` selects the show backend (default `\"auto\"`).\n * Idempotent while already subscribed: it only updates the stored mode; to\n * restart, dispose() first. Returns a promise that resolves once the first\n * permission probe settles, for SSR.\n *\n * Headless callers must call observe() to begin; the Shell calls it from\n * connectedCallback once the element's attributes resolve.\n */\n observe(mode: NotifyBackend = \"auto\"): Promise<void> {\n this._mode = mode;\n if (!this._permissionSubscribed) {\n this._ready = this._initPermission();\n this._subscribeClicks();\n }\n return this._ready;\n }\n\n /**\n * Ask the user for the `notifications` permission. Resolves to the resulting\n * (normalized) permission state. Never throws: an unavailable API resolves to\n * `\"unsupported\"`.\n */\n async request(): Promise<PermissionStateOrUnsupported> {\n const api = this._api();\n if (!api || typeof api.requestPermission !== \"function\") {\n this._setPermission(\"unsupported\");\n return this._permission;\n }\n try {\n const result = await api.requestPermission();\n this._setPermission(this._normalize(result));\n } catch {\n // Some legacy engines may reject; keep the current state rather than throw.\n }\n return this._permission;\n }\n\n /**\n * Show a notification. Returns the identifying tag (the caller's `options.tag`,\n * or a generated `wcs-<n>` when omitted). Never throws: when the API is\n * unavailable or the permission is not granted it surfaces an `error` and\n * returns an empty string.\n */\n notify(title: string, options: NotifyOptions = {}): string {\n if (!this._api()) {\n this._setError(this._err(\"unsupported\", \"Notifications API is not available in this environment.\"));\n return \"\";\n }\n if (this._permission !== \"granted\") {\n this._setError(this._err(\"not-granted\", \"Notification permission is not granted; call request() first.\"));\n return \"\";\n }\n if (typeof title !== \"string\") {\n this._setError(this._err(\"invalid-title\", \"notify() requires a string title.\"));\n return \"\";\n }\n\n const tag = (typeof options.tag === \"string\" && options.tag !== \"\") ? options.tag : this._nextId();\n const payload = options.data;\n const data: WcsNotifyData = { __wcsId: tag, payload };\n const backendOptions: NotifyOptions = { ...options, tag, data };\n\n this._setError(null);\n this._show(title, backendOptions, tag, payload);\n return tag;\n }\n\n /** Dismiss the notification(s) with `tag` across both backends. */\n close(tag?: string): void {\n if (typeof tag !== \"string\" || tag === \"\") return;\n const n = this._constructed.get(tag);\n if (n) {\n n.close();\n this._constructed.delete(tag);\n }\n if (this._swTags.has(tag)) {\n this._closeSw(tag);\n this._swTags.delete(tag);\n }\n }\n\n /**\n * Dismiss every notification this instance has shown. Scoped to this instance's\n * own tags on both backends — the SW path closes each tracked tag individually\n * rather than enumerating the whole origin, so it never dismisses notifications\n * shown by another `<wcs-notify>` or by an unrelated code path.\n */\n closeAll(): void {\n for (const n of this._constructed.values()) {\n n.close();\n }\n this._constructed.clear();\n for (const tag of this._swTags) {\n this._closeSw(tag);\n }\n this._swTags.clear();\n }\n\n /**\n * Detach permission and click subscriptions. Open notifications are intentionally\n * **left on screen** (a notification outlives the page that posted it — that is\n * the point); use close()/closeAll() to dismiss. Call from the Shell's\n * disconnectedCallback. A later observe() resumes.\n */\n dispose(): void {\n this._permissionSubscribed = false;\n this._clicksSubscribed = false;\n this._gen++;\n if (this._permissionStatus) {\n this._permissionStatus.removeEventListener(\"change\", this._onPermissionChange);\n this._permissionStatus = null;\n }\n if (this._channel) {\n this._channel.removeEventListener(\"message\", this._onInbound);\n this._channel.close();\n this._channel = null;\n }\n if (this._serviceWorker) {\n this._serviceWorker.removeEventListener(\"message\", this._onInbound);\n this._serviceWorker = null;\n }\n }\n\n // --- Internal: permission ---\n\n private _initPermission(): Promise<void> {\n const api = this._api();\n if (!api) {\n this._setPermission(\"unsupported\");\n // Intentionally does NOT set _permissionSubscribed: there is no permission\n // listener to tear down, so a reconnect simply re-probes (idempotent — the\n // same-value guard suppresses any redundant dispatch and no listener is ever\n // attached). _subscribeClicks() is re-entered too, but its own\n // _clicksSubscribed guard short-circuits the second pass, so no transport is\n // double-subscribed. Mirrors @wcstack/permission's unsupported path.\n return Promise.resolve();\n }\n this._permissionSubscribed = true;\n // Prefer the Permissions API: it provides a live `change` event. Fall back to\n // the static `Notification.permission` when it is absent or rejects the\n // `notifications` descriptor.\n if (typeof navigator !== \"undefined\" && navigator.permissions && typeof navigator.permissions.query === \"function\") {\n const gen = ++this._gen;\n return navigator.permissions.query({ name: \"notifications\" }).then(\n (status) => {\n if (gen !== this._gen) return;\n this._permissionStatus = status;\n this._setPermission(this._normalize(status.state as NotificationPermissionRaw));\n status.addEventListener(\"change\", this._onPermissionChange);\n },\n () => {\n if (gen !== this._gen) return;\n // Permissions API rejected the `notifications` descriptor — fall back to\n // the static `Notification.permission` (api is in scope and non-null here).\n this._setPermission(this._normalize(api.permission));\n },\n );\n }\n // No Permissions API: read the static permission once (no live change events).\n this._setPermission(this._normalize(api.permission));\n return Promise.resolve();\n }\n\n private _onPermissionChange = (event: Event): void => {\n const status = event.target as PermissionStatus;\n this._setPermission(this._normalize(status.state as NotificationPermissionRaw));\n };\n\n // Normalize the Notifications API's `\"default\"` to `\"prompt\"` so this node shares\n // the four-value surface of @wcstack/permission. The Permissions API already\n // reports `\"prompt\"`, so it passes through unchanged.\n private _normalize(raw: NotificationPermissionRaw | string): PermissionStateOrUnsupported {\n if (raw === \"default\") return \"prompt\";\n if (raw === \"granted\" || raw === \"denied\" || raw === \"prompt\") return raw;\n return \"prompt\";\n }\n\n // --- Internal: showing ---\n\n private _show(title: string, options: NotifyOptions, tag: string, payload: unknown): void {\n if (this._mode === \"sw\") {\n this._showViaSw(title, options, tag, payload);\n return;\n }\n const handled = this._showViaConstructor(title, options, tag, payload);\n if (handled) return;\n // Constructor threw TypeError (e.g. mobile, where `new Notification` is illegal).\n if (this._mode === \"auto\") {\n this._showViaSw(title, options, tag, payload);\n } else {\n this._setError(this._err(\"show-failed\", \"new Notification() is not usable here and mode=\\\"constructor\\\" disallows the Service Worker fallback.\"));\n }\n }\n\n // Returns false only when the constructor threw a TypeError (the signal to fall\n // back to the SW backend); true when it showed or surfaced a non-TypeError error.\n private _showViaConstructor(title: string, options: NotifyOptions, tag: string, payload: unknown): boolean {\n const api = this._api()!;\n const gen = this._gen;\n let n: Notification;\n try {\n n = new api(title, options as NotificationOptions);\n } catch (e) {\n if (e instanceof TypeError) return false;\n this._setError(this._err(\"show-failed\", \"Failed to create the notification.\"));\n return true;\n }\n this._constructed.set(tag, n);\n n.onshow = (): void => {\n if (gen !== this._gen) return;\n this._emit(\"show\", { tag, data: payload, action: \"\" });\n };\n n.onclick = (): void => {\n if (gen !== this._gen) return;\n this._emit(\"click\", { tag, data: payload, action: \"\" });\n };\n n.onclose = (): void => {\n this._constructed.delete(tag);\n if (gen !== this._gen) return;\n this._emit(\"close\", { tag, data: payload, action: \"\" });\n };\n n.onerror = (): void => {\n if (gen !== this._gen) return;\n this._setError(this._err(\"show-failed\", \"The notification failed to display.\"));\n };\n return true;\n }\n\n private _showViaSw(title: string, options: NotifyOptions, tag: string, payload: unknown): void {\n const sw = navigator.serviceWorker as ServiceWorkerContainer | undefined;\n if (!sw) {\n this._setError(this._err(\"no-service-worker\", \"Service Worker is required to show this notification but is unavailable.\"));\n return;\n }\n const gen = this._gen;\n this._swTags.add(tag);\n // A notification deliberately outlives the page (see § dispose), so we do NOT\n // bail before showNotification on a stale gen — a notify() issued while\n // connected still shows. The stale-gen guards only suppress dispatching the\n // observable `show` / `error` back onto a torn-down element.\n sw.ready\n .then((registration) => registration.showNotification(title, options as NotificationOptions))\n .then(() => {\n if (gen !== this._gen) return;\n this._emit(\"show\", { tag, data: payload, action: \"\" });\n })\n .catch(() => {\n if (gen !== this._gen) return;\n this._setError(this._err(\"show-failed\", \"ServiceWorkerRegistration.showNotification() failed.\"));\n });\n }\n\n // Close the SW notification(s) carrying `tag`. Always scoped to a single tag —\n // both callers (close / closeAll) iterate their own tracked tags, so the whole\n // origin is never enumerated.\n private _closeSw(tag: string): void {\n const sw = navigator.serviceWorker as ServiceWorkerContainer | undefined;\n if (!sw) return;\n sw.ready.then((registration) => {\n return registration.getNotifications({ tag }).then((list) => {\n for (const n of list) n.close();\n });\n }).catch(() => {\n // Closing is best-effort; a failure to enumerate is not surfaced.\n });\n }\n\n // --- Internal: click relay (SW) ---\n\n private _subscribeClicks(): void {\n if (this._clicksSubscribed) return;\n this._clicksSubscribed = true;\n if (typeof BroadcastChannel === \"function\") {\n this._channel = new BroadcastChannel(\"wcs-notify\");\n this._channel.addEventListener(\"message\", this._onInbound);\n }\n const sw = navigator.serviceWorker as ServiceWorkerContainer | undefined;\n if (sw) {\n this._serviceWorker = sw;\n sw.addEventListener(\"message\", this._onInbound);\n }\n }\n\n private _onInbound = (event: Event): void => {\n const msg = (event as MessageEvent).data as WcsNotifyInbound | undefined;\n if (!msg || msg.__wcsNotify !== true) return;\n if (this._isDuplicate(msg.id)) return;\n this._emit(\"click\", { tag: msg.tag, data: this._unwrap(msg.data), action: msg.action });\n };\n\n private _isDuplicate(id: string): boolean {\n if (this._seenIds.includes(id)) return true;\n this._seenIds.push(id);\n if (this._seenIds.length > 50) this._seenIds.shift();\n return false;\n }\n\n private _unwrap(raw: unknown): unknown {\n if (raw !== null && typeof raw === \"object\" && \"__wcsId\" in raw) {\n return (raw as WcsNotifyData).payload;\n }\n return raw;\n }\n\n // --- Internal: misc ---\n\n // Resolve the global `Notification` constructor at call time (not cached) so\n // tests can install/remove it and so unsupported environments report correctly.\n private _api(): (typeof Notification) | undefined {\n const g = globalThis as unknown as { Notification?: typeof Notification };\n return typeof g.Notification === \"function\" ? g.Notification : undefined;\n }\n\n private _nextId(): string {\n return `wcs-${++this._idSeq}`;\n }\n\n private _err(error: string, message: string): WcsNotifyErrorDetail {\n return { error, message };\n }\n}\n","import { config } from \"./config.js\";\nimport type { WcsNotify } from \"./components/Notify.js\";\n\nlet registered = false;\n\nfunction handleClick(event: Event): void {\n const target = event.target;\n if (!(target instanceof Element)) return;\n\n // A misconfigured triggerAttribute (e.g. one with a space) makes the attribute\n // selector invalid and closest() throw SyntaxError; guard so a bad config\n // disables only this shortcut rather than killing every document click handler.\n let triggerElement: Element | null;\n try {\n triggerElement = target.closest<Element>(`[${config.triggerAttribute}]`);\n } catch {\n return;\n }\n if (!triggerElement) return;\n\n const notifyId = triggerElement.getAttribute(config.triggerAttribute);\n if (!notifyId) return;\n\n // Resolve the registered constructor at call time instead of importing Notify as\n // a value, avoiding a components/Notify.ts ⇄ autoTrigger.ts cycle\n // (Notify.connectedCallback() calls registerAutoTrigger()). instanceof against\n // the customElements registry keeps the same identity guarantee.\n const NotifyCtor = customElements.get(config.tagNames.notify);\n const notifyElement = document.getElementById(notifyId);\n if (!NotifyCtor || !(notifyElement instanceof NotifyCtor)) return;\n\n // The title comes from the trigger element: an explicit `data-notifytitle`\n // attribute wins, otherwise the element's trimmed text content. The body is an\n // optional `data-notifybody`. This keeps the click-driven shortcut declarative\n // without inventing a payload channel.\n const explicit = triggerElement.getAttribute(\"data-notifytitle\");\n // `Element.textContent` is spec-guaranteed non-null (only Document / DocumentType\n // nodes return null, never an Element), so the cast is sound and lets us avoid an\n // unreachable `?? \"\"` branch. `triggerElement` is always an Element here.\n const title = explicit !== null ? explicit : (triggerElement.textContent as string).trim();\n const body = triggerElement.getAttribute(\"data-notifybody\");\n\n (notifyElement as WcsNotify).notify(title, body !== null ? { body } : undefined);\n}\n\nexport function registerAutoTrigger(): void {\n if (registered) return;\n registered = true;\n document.addEventListener(\"click\", handleClick);\n}\n\nexport function unregisterAutoTrigger(): void {\n if (!registered) return;\n registered = false;\n document.removeEventListener(\"click\", handleClick);\n}\n","import { config } from \"../config.js\";\nimport {\n IWcBindable, NotifyBackend, NotifyOptions, PermissionStateOrUnsupported,\n WcsNotifyClickDetail, WcsNotifyErrorDetail,\n} from \"../types.js\";\nimport { NotificationCore } from \"../core/NotificationCore.js\";\nimport { registerAutoTrigger } from \"../autoTrigger.js\";\n\n/**\n * `<wcs-notify>` — declarative desktop notifications. Wraps NotificationCore and\n * exposes both directions in one tag:\n *\n * - **`notice`** (reactive input): writing a *changed* value shows a notification,\n * suppressing same-value writes so it fires only when the bound source actually\n * changes. The imperative `notify` command instead shows on demand (even the\n * same text again). See `docs/notification-tag-design.md` § 2.\n * - **`request` / `notify` / `close` / `closeAll`** commands (state → element).\n * - per-notification options (`body` / `icon` / `badge` / `tag` / `lang` / `dir` /\n * `require-interaction` / `silent` / `renotify`) as mirrored attributes.\n * - `mode` selects the show backend (`auto` / `sw` / `constructor`).\n * - the Core's observable surface (permission / granted / … / error / clicked /\n * closed / shown) via delegated getters; clicked/closed/shown carry the\n * `{ tag, data, action }` payload for event-token wiring.\n */\nexport class WcsNotify extends HTMLElement {\n static hasConnectedCallbackPromise = true;\n static wcBindable: IWcBindable = {\n ...NotificationCore.wcBindable,\n // Shell-level settable surface. `notice` is a momentary reactive command-property\n // with no mirrored attribute (it carries dynamic text, not declarative config),\n // mirroring <wcs-speak>'s `say`. The rest mirror their HTML attributes idempotently.\n inputs: [\n { name: \"notice\" },\n { name: \"mode\", attribute: \"mode\" },\n { name: \"body\", attribute: \"body\" },\n { name: \"icon\", attribute: \"icon\" },\n { name: \"badge\", attribute: \"badge\" },\n { name: \"tag\", attribute: \"tag\" },\n { name: \"lang\", attribute: \"lang\" },\n { name: \"dir\", attribute: \"dir\" },\n { name: \"requireInteraction\", attribute: \"require-interaction\" },\n { name: \"silent\", attribute: \"silent\" },\n { name: \"renotify\", attribute: \"renotify\" },\n { name: \"manual\", attribute: \"manual\" },\n ],\n commands: NotificationCore.wcBindable.commands,\n };\n\n private _core: NotificationCore;\n private _notice: string = \"\";\n private _connectedCallbackPromise: Promise<void> = Promise.resolve();\n\n constructor() {\n super();\n this._core = new NotificationCore(this);\n }\n\n // --- Attribute accessors ---\n\n get mode(): NotifyBackend {\n const m = this.getAttribute(\"mode\");\n return (m === \"sw\" || m === \"constructor\") ? m : \"auto\";\n }\n\n set mode(value: NotifyBackend) {\n this.setAttribute(\"mode\", value);\n }\n\n get body(): string {\n return this.getAttribute(\"body\") ?? \"\";\n }\n\n set body(value: string | null) {\n this._reflect(\"body\", value);\n }\n\n get icon(): string {\n return this.getAttribute(\"icon\") ?? \"\";\n }\n\n set icon(value: string | null) {\n this._reflect(\"icon\", value);\n }\n\n get badge(): string {\n return this.getAttribute(\"badge\") ?? \"\";\n }\n\n set badge(value: string | null) {\n this._reflect(\"badge\", value);\n }\n\n get tag(): string {\n return this.getAttribute(\"tag\") ?? \"\";\n }\n\n set tag(value: string | null) {\n this._reflect(\"tag\", value);\n }\n\n // NOTE: `lang` and `dir` intentionally repurpose the standard HTMLElement IDL\n // attributes as per-notification options (forwarded to NotificationOptions).\n // This element is always display:none, so overriding their normal rendering\n // semantics has no visual effect — but be aware the values mean \"the\n // notification's language/direction\", not the host element's.\n get lang(): string {\n return this.getAttribute(\"lang\") ?? \"\";\n }\n\n set lang(value: string | null) {\n this._reflect(\"lang\", value);\n }\n\n get dir(): string {\n return this.getAttribute(\"dir\") ?? \"\";\n }\n\n set dir(value: string | null) {\n this._reflect(\"dir\", value);\n }\n\n get requireInteraction(): boolean {\n return this.hasAttribute(\"require-interaction\");\n }\n\n set requireInteraction(value: boolean) {\n this._reflectBool(\"require-interaction\", value);\n }\n\n get silent(): boolean {\n return this.hasAttribute(\"silent\");\n }\n\n set silent(value: boolean) {\n this._reflectBool(\"silent\", value);\n }\n\n get renotify(): boolean {\n return this.hasAttribute(\"renotify\");\n }\n\n set renotify(value: boolean) {\n this._reflectBool(\"renotify\", value);\n }\n\n get manual(): boolean {\n return this.hasAttribute(\"manual\");\n }\n\n set manual(value: boolean) {\n this._reflectBool(\"manual\", value);\n }\n\n // --- Reactive command-property ---\n\n get notice(): string {\n return this._notice;\n }\n\n set notice(value: string | null) {\n // Reactive: writing a new value shows it. `manual` mutes the path entirely\n // (the imperative `notify` command still works). A conforming binder never\n // delivers `undefined` (it skips the write), but a direct assignment can, so\n // normalize null/undefined to a no-op.\n if (value == null) return;\n if (this.manual) return;\n const v = String(value);\n // Same-value guard: only show when the bound source actually changes. To show\n // the same text again on demand, use the `notify` command instead. (This is\n // the only spam guard the package provides — see docs § 2-c; debounce is the\n // caller's job via a filter, e.g. `notice@x|debounce(1000)`.)\n if (v === this._notice) return;\n this._notice = v;\n this.notify(v);\n }\n\n // --- Core delegated getters ---\n\n get permission(): PermissionStateOrUnsupported {\n return this._core.permission;\n }\n\n get granted(): boolean {\n return this._core.granted;\n }\n\n get denied(): boolean {\n return this._core.denied;\n }\n\n get prompt(): boolean {\n return this._core.prompt;\n }\n\n get unsupported(): boolean {\n return this._core.unsupported;\n }\n\n get error(): WcsNotifyErrorDetail | null {\n return this._core.error;\n }\n\n get clicked(): WcsNotifyClickDetail | null {\n return this._core.clicked;\n }\n\n get closed(): WcsNotifyClickDetail | null {\n return this._core.closed;\n }\n\n get shown(): WcsNotifyClickDetail | null {\n return this._core.shown;\n }\n\n get connectedCallbackPromise(): Promise<void> {\n return this._connectedCallbackPromise;\n }\n\n // --- Commands ---\n\n request(): Promise<PermissionStateOrUnsupported> {\n return this._core.request();\n }\n\n notify(title: string, options?: NotifyOptions): string {\n // Explicit options (from a command-token emit) win per-key over the attribute\n // defaults, so `notify.emit(title, { body })` still picks up the element's icon.\n return this._core.notify(title, { ...this._options(), ...(options ?? {}) });\n }\n\n close(tag?: string): void {\n this._core.close(tag);\n }\n\n closeAll(): void {\n this._core.closeAll();\n }\n\n // --- Internal ---\n\n private _reflect(name: string, value: string | null): void {\n if (value == null) {\n this.removeAttribute(name);\n } else {\n this.setAttribute(name, String(value));\n }\n }\n\n private _reflectBool(name: string, value: boolean): void {\n if (value) {\n this.setAttribute(name, \"\");\n } else {\n this.removeAttribute(name);\n }\n }\n\n private _options(): NotifyOptions {\n const o: NotifyOptions = {};\n if (this.body !== \"\") o.body = this.body;\n if (this.icon !== \"\") o.icon = this.icon;\n if (this.badge !== \"\") o.badge = this.badge;\n if (this.tag !== \"\") o.tag = this.tag;\n if (this.lang !== \"\") o.lang = this.lang;\n if (this.dir === \"auto\" || this.dir === \"ltr\" || this.dir === \"rtl\") o.dir = this.dir;\n if (this.requireInteraction) o.requireInteraction = true;\n if (this.silent) o.silent = true;\n if (this.renotify) o.renotify = true;\n return o;\n }\n\n // --- Lifecycle ---\n\n connectedCallback(): void {\n this.style.display = \"none\";\n if (config.autoTrigger) {\n registerAutoTrigger();\n }\n // Begin observing permission and subscribing to SW click relays (or revive\n // after a reconnect). The returned promise is held as connectedCallbackPromise\n // for SSR.\n this._connectedCallbackPromise = this._core.observe(this.mode);\n }\n\n disconnectedCallback(): void {\n // Detach subscriptions. Open notifications are left on screen (see Core docs);\n // call close()/closeAll() to dismiss.\n this._core.dispose();\n }\n}\n","import { setConfig } from \"./config.js\";\nimport { registerComponents } from \"./registerComponents.js\";\nimport { IWritableConfig } from \"./types.js\";\n\nexport function bootstrapNotification(userConfig?: IWritableConfig): void {\n if (userConfig) {\n setConfig(userConfig);\n }\n registerComponents();\n}\n","import { WcsNotify } from \"./components/Notify.js\";\nimport { config } from \"./config.js\";\n\nexport function registerComponents(): void {\n if (!customElements.get(config.tagNames.notify)) {\n customElements.define(config.tagNames.notify, WcsNotify);\n }\n}\n"],"names":["_config","autoTrigger","triggerAttribute","tagNames","notify","deepFreeze","obj","Object","freeze","key","keys","deepClone","clone","frozenConfig","config","getConfig","NotificationCore","EventTarget","static","protocol","version","properties","name","event","getter","e","detail","commands","async","_target","_mode","_permission","_error","_lastClick","_lastClose","_lastShow","_permissionStatus","_permissionSubscribed","_gen","_ready","Promise","resolve","_idSeq","_constructed","Map","_swTags","Set","_channel","_serviceWorker","_clicksSubscribed","_seenIds","constructor","target","super","this","permission","granted","denied","prompt","unsupported","error","clicked","closed","shown","ready","_setPermission","state","dispatchEvent","CustomEvent","bubbles","_setError","_emit","kind","observe","mode","_initPermission","_subscribeClicks","request","api","_api","requestPermission","result","_normalize","title","options","_err","tag","_nextId","payload","data","__wcsId","backendOptions","_show","close","n","get","delete","has","_closeSw","closeAll","values","clear","dispose","removeEventListener","_onPermissionChange","_onInbound","navigator","permissions","query","gen","then","status","addEventListener","raw","_showViaSw","_showViaConstructor","TypeError","set","onshow","action","onclick","onclose","onerror","sw","serviceWorker","add","registration","showNotification","catch","getNotifications","list","BroadcastChannel","msg","__wcsNotify","_isDuplicate","id","_unwrap","includes","push","length","shift","g","globalThis","Notification","undefined","message","registered","handleClick","Element","triggerElement","closest","notifyId","getAttribute","NotifyCtor","customElements","notifyElement","document","getElementById","explicit","textContent","trim","body","WcsNotify","HTMLElement","wcBindable","inputs","attribute","_core","_notice","_connectedCallbackPromise","m","value","setAttribute","_reflect","icon","badge","lang","dir","requireInteraction","hasAttribute","_reflectBool","silent","renotify","manual","notice","v","String","connectedCallbackPromise","_options","removeAttribute","o","connectedCallback","style","display","disconnectedCallback","bootstrapNotification","userConfig","partialConfig","assign","define"],"mappings":"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"}
package/dist/sw.d.ts ADDED
@@ -0,0 +1,9 @@
1
+ /**
2
+ * Register a `notificationclick` listener that relays clicks to the page. Call
3
+ * once from the consumer's Service Worker. Safe to call when BroadcastChannel or
4
+ * clients are unavailable (each transport is attempted independently). Idempotent:
5
+ * a second call is a no-op (the listener is registered at most once).
6
+ */
7
+ declare function wireNotificationClicks(): void;
8
+
9
+ export { wireNotificationClicks };
package/dist/sw.js ADDED
@@ -0,0 +1,89 @@
1
+ // Service Worker helper for `@wcstack/notification`.
2
+ //
3
+ // `notificationclick` fires inside the *consumer's* Service Worker — a global
4
+ // scope this package cannot inject into. So the consumer imports this one helper
5
+ // into their sw.js and calls it once:
6
+ //
7
+ // import { wireNotificationClicks } from "@wcstack/notification/sw";
8
+ // wireNotificationClicks();
9
+ //
10
+ // It relays each click back to the page over BroadcastChannel (primary) *and*
11
+ // clients.postMessage (fallback), tagged so `NotificationCore` on the page can
12
+ // turn it into the `wcs-notify:click` event-token. The page de-dups the two
13
+ // transports by the per-click `id`.
14
+ //
15
+ // This module runs in ServiceWorkerGlobalScope (not the DOM), but the package's
16
+ // tsconfig uses the DOM lib (the rest of the package is DOM code), and pulling in
17
+ // the "webworker" lib here would clash with it. Rather than fall back to `any`, we
18
+ // declare minimal structural types covering only the members we actually touch —
19
+ // just enough to keep this file type-checked without the conflicting lib.
20
+ const CHANNEL_NAME = "wcs-notify";
21
+ // Per-click sequence so the two relay transports of the SAME click share an `id`
22
+ // (de-duped on the page), while two genuine clicks on the same notification tag
23
+ // get distinct ids (both delivered).
24
+ let _seq = 0;
25
+ // Idempotency guard: registering the `notificationclick` listener twice would
26
+ // relay every click twice, and because each relay mints a fresh `id` the page's
27
+ // de-dup window cannot fold the duplicates — every click would fire the
28
+ // `wcs-notify:click` event-token twice. The helper is documented as call-once,
29
+ // but a defensive module-scope flag keeps a stray second call a no-op, matching
30
+ // NotificationCore's `_clicksSubscribed` guard on the page side.
31
+ let _wired = false;
32
+ /**
33
+ * Register a `notificationclick` listener that relays clicks to the page. Call
34
+ * once from the consumer's Service Worker. Safe to call when BroadcastChannel or
35
+ * clients are unavailable (each transport is attempted independently). Idempotent:
36
+ * a second call is a no-op (the listener is registered at most once).
37
+ */
38
+ function wireNotificationClicks() {
39
+ if (_wired)
40
+ return;
41
+ _wired = true;
42
+ const scope = self;
43
+ scope.addEventListener("notificationclick", (event) => {
44
+ const notification = event.notification;
45
+ const tag = (notification && notification.tag) || "";
46
+ const message = {
47
+ __wcsNotify: true,
48
+ // Unique per click: the monotonic counter coalesces this click's two relay
49
+ // transports (they share this one object), and the random suffix prevents a
50
+ // collision with a stale id still in the page's de-dup window after a SW
51
+ // restart resets the counter (same tag reused → would otherwise drop a click).
52
+ id: `${tag}#${_seq++}-${Math.random().toString(36).slice(2, 10)}`,
53
+ tag,
54
+ data: notification ? notification.data : undefined,
55
+ action: event.action || "",
56
+ };
57
+ // Dismiss the notification, as a click conventionally should.
58
+ if (notification && typeof notification.close === "function") {
59
+ notification.close();
60
+ }
61
+ // Primary transport: BroadcastChannel reaches every same-origin context.
62
+ try {
63
+ const channel = new BroadcastChannel(CHANNEL_NAME);
64
+ channel.postMessage(message);
65
+ channel.close();
66
+ }
67
+ catch {
68
+ // BroadcastChannel unavailable — rely on the postMessage fallback.
69
+ }
70
+ // Fallback transport: post to every controlled window client.
71
+ const relay = (async () => {
72
+ try {
73
+ const clients = await scope.clients.matchAll({ includeUncontrolled: true, type: "window" });
74
+ for (const client of clients) {
75
+ client.postMessage(message);
76
+ }
77
+ }
78
+ catch {
79
+ // No clients API / no clients — the BroadcastChannel path covers it.
80
+ }
81
+ })();
82
+ if (typeof event.waitUntil === "function") {
83
+ event.waitUntil(relay);
84
+ }
85
+ });
86
+ }
87
+
88
+ export { wireNotificationClicks };
89
+ //# sourceMappingURL=sw.js.map
package/dist/sw.js.map ADDED
@@ -0,0 +1 @@
1
+ {"version":3,"file":"sw.js","sources":["../src/sw.ts"],"sourcesContent":["// Service Worker helper for `@wcstack/notification`.\n//\n// `notificationclick` fires inside the *consumer's* Service Worker — a global\n// scope this package cannot inject into. So the consumer imports this one helper\n// into their sw.js and calls it once:\n//\n// import { wireNotificationClicks } from \"@wcstack/notification/sw\";\n// wireNotificationClicks();\n//\n// It relays each click back to the page over BroadcastChannel (primary) *and*\n// clients.postMessage (fallback), tagged so `NotificationCore` on the page can\n// turn it into the `wcs-notify:click` event-token. The page de-dups the two\n// transports by the per-click `id`.\n//\n// This module runs in ServiceWorkerGlobalScope (not the DOM), but the package's\n// tsconfig uses the DOM lib (the rest of the package is DOM code), and pulling in\n// the \"webworker\" lib here would clash with it. Rather than fall back to `any`, we\n// declare minimal structural types covering only the members we actually touch —\n// just enough to keep this file type-checked without the conflicting lib.\n\n/** Minimal view of a click event's `notification` (subset of `Notification`). */\ninterface SwNotificationLike {\n tag?: string;\n data?: unknown;\n close?: () => void;\n}\n\n/** Minimal view of `NotificationEvent` (the `notificationclick` event). */\ninterface SwNotificationEvent extends Event {\n notification: SwNotificationLike | null;\n action?: string;\n waitUntil?: (promise: Promise<unknown>) => void;\n}\n\n/** Minimal view of a `Client` (subset of `WindowClient`). */\ninterface SwClient {\n postMessage: (message: unknown) => void;\n}\n\n/** Minimal view of `ServiceWorkerGlobalScope` for the members used here. */\ninterface SwGlobalScope {\n addEventListener: (type: \"notificationclick\", listener: (event: SwNotificationEvent) => void) => void;\n clients: {\n matchAll: (options?: { includeUncontrolled?: boolean; type?: string }) => Promise<SwClient[]>;\n };\n}\n\nconst CHANNEL_NAME = \"wcs-notify\";\n\n// Per-click sequence so the two relay transports of the SAME click share an `id`\n// (de-duped on the page), while two genuine clicks on the same notification tag\n// get distinct ids (both delivered).\nlet _seq = 0;\n\n// Idempotency guard: registering the `notificationclick` listener twice would\n// relay every click twice, and because each relay mints a fresh `id` the page's\n// de-dup window cannot fold the duplicates — every click would fire the\n// `wcs-notify:click` event-token twice. The helper is documented as call-once,\n// but a defensive module-scope flag keeps a stray second call a no-op, matching\n// NotificationCore's `_clicksSubscribed` guard on the page side.\nlet _wired = false;\n\n/**\n * Register a `notificationclick` listener that relays clicks to the page. Call\n * once from the consumer's Service Worker. Safe to call when BroadcastChannel or\n * clients are unavailable (each transport is attempted independently). Idempotent:\n * a second call is a no-op (the listener is registered at most once).\n */\nexport function wireNotificationClicks(): void {\n if (_wired) return;\n _wired = true;\n const scope = self as unknown as SwGlobalScope;\n scope.addEventListener(\"notificationclick\", (event: SwNotificationEvent) => {\n const notification = event.notification;\n const tag: string = (notification && notification.tag) || \"\";\n const message = {\n __wcsNotify: true as const,\n // Unique per click: the monotonic counter coalesces this click's two relay\n // transports (they share this one object), and the random suffix prevents a\n // collision with a stale id still in the page's de-dup window after a SW\n // restart resets the counter (same tag reused → would otherwise drop a click).\n id: `${tag}#${_seq++}-${Math.random().toString(36).slice(2, 10)}`,\n tag,\n data: notification ? notification.data : undefined,\n action: event.action || \"\",\n };\n\n // Dismiss the notification, as a click conventionally should.\n if (notification && typeof notification.close === \"function\") {\n notification.close();\n }\n\n // Primary transport: BroadcastChannel reaches every same-origin context.\n try {\n const channel = new BroadcastChannel(CHANNEL_NAME);\n channel.postMessage(message);\n channel.close();\n } catch {\n // BroadcastChannel unavailable — rely on the postMessage fallback.\n }\n\n // Fallback transport: post to every controlled window client.\n const relay = (async (): Promise<void> => {\n try {\n const clients = await scope.clients.matchAll({ includeUncontrolled: true, type: \"window\" });\n for (const client of clients) {\n client.postMessage(message);\n }\n } catch {\n // No clients API / no clients — the BroadcastChannel path covers it.\n }\n })();\n\n if (typeof event.waitUntil === \"function\") {\n event.waitUntil(relay);\n }\n });\n}\n"],"names":[],"mappings":"AAAA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AA6BA,MAAM,YAAY,GAAG,YAAY;AAEjC;AACA;AACA;AACA,IAAI,IAAI,GAAG,CAAC;AAEZ;AACA;AACA;AACA;AACA;AACA;AACA,IAAI,MAAM,GAAG,KAAK;AAElB;;;;;AAKG;SACa,sBAAsB,GAAA;AACpC,IAAA,IAAI,MAAM;QAAE;IACZ,MAAM,GAAG,IAAI;IACb,MAAM,KAAK,GAAG,IAAgC;IAC9C,KAAK,CAAC,gBAAgB,CAAC,mBAAmB,EAAE,CAAC,KAA0B,KAAI;AACzE,QAAA,MAAM,YAAY,GAAG,KAAK,CAAC,YAAY;QACvC,MAAM,GAAG,GAAW,CAAC,YAAY,IAAI,YAAY,CAAC,GAAG,KAAK,EAAE;AAC5D,QAAA,MAAM,OAAO,GAAG;AACd,YAAA,WAAW,EAAE,IAAa;;;;;YAK1B,EAAE,EAAE,GAAG,GAAG,CAAA,CAAA,EAAI,IAAI,EAAE,CAAA,CAAA,EAAI,IAAI,CAAC,MAAM,EAAE,CAAC,QAAQ,CAAC,EAAE,CAAC,CAAC,KAAK,CAAC,CAAC,EAAE,EAAE,CAAC,CAAA,CAAE;YACjE,GAAG;YACH,IAAI,EAAE,YAAY,GAAG,YAAY,CAAC,IAAI,GAAG,SAAS;AAClD,YAAA,MAAM,EAAE,KAAK,CAAC,MAAM,IAAI,EAAE;SAC3B;;QAGD,IAAI,YAAY,IAAI,OAAO,YAAY,CAAC,KAAK,KAAK,UAAU,EAAE;YAC5D,YAAY,CAAC,KAAK,EAAE;QACtB;;AAGA,QAAA,IAAI;AACF,YAAA,MAAM,OAAO,GAAG,IAAI,gBAAgB,CAAC,YAAY,CAAC;AAClD,YAAA,OAAO,CAAC,WAAW,CAAC,OAAO,CAAC;YAC5B,OAAO,CAAC,KAAK,EAAE;QACjB;AAAE,QAAA,MAAM;;QAER;;AAGA,QAAA,MAAM,KAAK,GAAG,CAAC,YAA0B;AACvC,YAAA,IAAI;AACF,gBAAA,MAAM,OAAO,GAAG,MAAM,KAAK,CAAC,OAAO,CAAC,QAAQ,CAAC,EAAE,mBAAmB,EAAE,IAAI,EAAE,IAAI,EAAE,QAAQ,EAAE,CAAC;AAC3F,gBAAA,KAAK,MAAM,MAAM,IAAI,OAAO,EAAE;AAC5B,oBAAA,MAAM,CAAC,WAAW,CAAC,OAAO,CAAC;gBAC7B;YACF;AAAE,YAAA,MAAM;;YAER;QACF,CAAC,GAAG;AAEJ,QAAA,IAAI,OAAO,KAAK,CAAC,SAAS,KAAK,UAAU,EAAE;AACzC,YAAA,KAAK,CAAC,SAAS,CAAC,KAAK,CAAC;QACxB;AACF,IAAA,CAAC,CAAC;AACJ;;;;"}
package/package.json ADDED
@@ -0,0 +1,76 @@
1
+ {
2
+ "name": "@wcstack/notification",
3
+ "version": "1.13.1",
4
+ "description": "Declarative desktop-notification component for Web Components. Framework-agnostic Notifications API wrapper via wc-bindable-protocol, with Service Worker support.",
5
+ "type": "module",
6
+ "main": "./dist/index.esm.js",
7
+ "module": "./dist/index.esm.js",
8
+ "types": "./dist/index.d.ts",
9
+ "exports": {
10
+ ".": {
11
+ "types": "./dist/index.d.ts",
12
+ "import": "./dist/index.esm.js"
13
+ },
14
+ "./sw": {
15
+ "types": "./dist/sw.d.ts",
16
+ "import": "./dist/sw.js"
17
+ },
18
+ "./auto": "./dist/auto.min.js"
19
+ },
20
+ "files": [
21
+ "dist"
22
+ ],
23
+ "scripts": {
24
+ "clean": "rimraf dist .tsc-out",
25
+ "build": "rimraf dist .tsc-out && tsc && rollup -c",
26
+ "test": "vitest run",
27
+ "test:watch": "vitest",
28
+ "test:coverage": "vitest run --coverage",
29
+ "lint": "eslint src",
30
+ "version:patch": "npm version patch",
31
+ "version:minor": "npm version minor",
32
+ "version:major": "npm version major",
33
+ "prepublishOnly": "npm run build && npm run test:coverage"
34
+ },
35
+ "keywords": [
36
+ "web-components",
37
+ "notification",
38
+ "notifications",
39
+ "notifications-api",
40
+ "service-worker",
41
+ "custom-elements",
42
+ "wc-bindable",
43
+ "declarative",
44
+ "zero-dependencies",
45
+ "framework-agnostic"
46
+ ],
47
+ "author": "mogera551",
48
+ "homepage": "https://wcstack.github.io",
49
+ "repository": {
50
+ "type": "git",
51
+ "url": "https://github.com/wcstack/wcstack.git",
52
+ "directory": "packages/notification"
53
+ },
54
+ "bugs": {
55
+ "url": "https://github.com/wcstack/wcstack/issues"
56
+ },
57
+ "license": "MIT",
58
+ "devDependencies": {
59
+ "@eslint/js": "^9.39.1",
60
+ "@rollup/plugin-terser": "^0.4.4",
61
+ "@rollup/plugin-typescript": "^11.1.6",
62
+ "@vitest/coverage-v8": "^4.0.15",
63
+ "@vitest/ui": "^4.0.15",
64
+ "eslint": "^9.39.1",
65
+ "globals": "^16.5.0",
66
+ "happy-dom": "^20.0.11",
67
+ "rimraf": "^6.0.1",
68
+ "rollup": "^4.22.4",
69
+ "rollup-plugin-dts": "^6.1.1",
70
+ "rollup-plugin-copy": "^3.5.0",
71
+ "tslib": "^2.8.1",
72
+ "typescript": "^5.9.3",
73
+ "typescript-eslint": "^8.49.0",
74
+ "vitest": "^4.0.15"
75
+ }
76
+ }