@supersoniks/concorde 3.3.3 → 4.1.0

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.
Files changed (38) hide show
  1. package/build-infos.json +1 -1
  2. package/concorde-core.bundle.js +151 -151
  3. package/concorde-core.es.js +2264 -2216
  4. package/dist/concorde-core.bundle.js +151 -151
  5. package/dist/concorde-core.es.js +2264 -2216
  6. package/package.json +2 -4
  7. package/src/core/_types/types.ts +1 -1
  8. package/src/core/components/functional/queue/queue.ts +3 -4
  9. package/src/core/components/functional/states/states.demo.ts +5 -2
  10. package/src/core/components/functional/states/states.spec.ts +14 -13
  11. package/src/core/components/functional/submit/submit.ts +2 -2
  12. package/src/core/components/ui/captcha/captcha.ts +16 -12
  13. package/src/core/components/ui/form/input-autocomplete/input-autocomplete.ts +41 -7
  14. package/src/core/components/ui/icon/icons.ts +5 -1
  15. package/src/core/components/ui/pop/pop.ts +6 -6
  16. package/src/core/components/ui/theme/theme.ts +3 -3
  17. package/src/core/decorators/lifecycle.ts +79 -0
  18. package/src/core/decorators/subscriber/bind.ts +2 -2
  19. package/src/core/decorators/subscriber/onAssign.ts +3 -3
  20. package/src/core/directives/DataProvider.ts +47 -60
  21. package/src/core/directives/Wording.ts +4 -4
  22. package/src/core/mixins/FormCheckable.ts +12 -12
  23. package/src/core/mixins/FormElement.ts +1 -1
  24. package/src/core/utils/HTML.ts +62 -0
  25. package/src/core/utils/PublisherProxy.ts +260 -178
  26. package/src/core/utils/Utils.ts +3 -0
  27. package/src/core/utils/api.ts +4 -6
  28. package/src/dataprovider.ts +1 -0
  29. package/src/decorators.ts +5 -0
  30. package/src/directives.ts +27 -13
  31. package/src/docs/_misc/wait-for-ancestors.md +160 -0
  32. package/src/docs/example/decorators-demo.ts +265 -0
  33. package/src/docs/navigation/navigation.ts +4 -1
  34. package/src/docs/search/docs-search.json +207 -12
  35. package/src/tsconfig.json +3 -9
  36. package/src/tsconfig.tsbuildinfo +1 -1
  37. package/src/utils.ts +2 -4
  38. package/src/core/components/ui/toast/message-subscriber.stories.ts +0 -43
package/src/directives.ts CHANGED
@@ -1,21 +1,35 @@
1
- import * as myDataProvider from "@supersoniks/concorde/core/directives/DataProvider";
1
+ import * as directives from "@supersoniks/concorde/core/directives/DataProvider";
2
+ import {dp as pubDp, dataProvider as pubDataProvider, get as pubGet, set as pubSet} from "@supersoniks/concorde/core/utils/PublisherProxy";
2
3
 
3
4
  import {ConcordeWindow} from "./core/_types/types";
4
- export const dp = myDataProvider.dp;
5
- export const dataProvider = myDataProvider.dataProvider;
6
- export const subscribe = myDataProvider.subscribe;
7
- export const sub = myDataProvider.sub;
8
- export const get = myDataProvider.get;
9
- export const set = myDataProvider.set;
5
+ /**
6
+ * @deprecated @see pubDp
7
+ */
8
+ export const dp = pubDp;
9
+ /**
10
+ * @deprecated @see pubDataProvider
11
+ */
12
+ export const dataProvider = pubDataProvider;
13
+ export const subscribe = directives.subscribe;
14
+ export const sub = directives.sub;
15
+
16
+ /**
17
+ * @deprecated @see pubGet
18
+ */
19
+ export const get = pubGet;
20
+ /**
21
+ * @deprecated @see pubSet
22
+ */
23
+ export const set = pubSet;
10
24
 
11
25
  declare const window: ConcordeWindow;
12
26
 
13
27
  window["concorde-directives-data-provider"] = window["concorde-directives-data-provider"] || {};
14
28
  window["concorde-directives-data-provider"] = {
15
- dp: myDataProvider.dp,
16
- dataProvider: myDataProvider.dataProvider,
17
- sub: myDataProvider.sub,
18
- subscribe: myDataProvider.subscribe,
19
- get: myDataProvider.get,
20
- set: myDataProvider.set,
29
+ dp: pubDp,
30
+ dataProvider: pubDataProvider,
31
+ sub: directives.sub,
32
+ subscribe: directives.subscribe,
33
+ get: pubGet,
34
+ set: pubSet,
21
35
  };
@@ -0,0 +1,160 @@
1
+ # @awaitConnectedAncestors and @dispatchConnectedEvent
2
+
3
+ The `@awaitConnectedAncestors` and `@dispatchConnectedEvent` decorators delay a web component's initialization until its matching ancestors have executed their `connectedCallback`. This is when contextual elements (publisher, dataProvider, etc.) are configured.
4
+
5
+ ## Principle
6
+
7
+ When a child component attaches to the DOM, its ancestors may not yet be initialized (especially if custom element definitions are loaded asynchronously). The `@awaitConnectedAncestors` decorator delays the component's `connectedCallback` until all ancestors matching the provided CSS selectors have executed their `connectedCallback`.
8
+
9
+ The `@dispatchConnectedEvent` decorator allows ancestors to signal they are ready by dispatching the `sonic-connected` event at the end of their `connectedCallback`. The event bubbles, so it can be listened to from anywhere (e.g. `document.addEventListener(CONNECTED, handler)`).
10
+
11
+ Ancestors that are not web components (no hyphen in tag name) are considered connected by default and do not need to emit the event.
12
+
13
+ ## Usage
14
+
15
+ ### Import
16
+
17
+ <sonic-code language="typescript">
18
+ <template>
19
+ import { awaitConnectedAncestors, dispatchConnectedEvent, ancestorAttribute } from "@supersoniks/concorde/decorators";
20
+ </template>
21
+ </sonic-code>
22
+
23
+ ### Basic example
24
+
25
+ An ancestor container decorated with `@dispatchConnectedEvent()` signals when it is ready. A child component decorated with `@awaitConnectedAncestors("demo-wait-ancestor-container[dataProvider]")` waits for this container to be initialized before initializing itself. Parameters are CSS selectors (`element.matches()`).
26
+
27
+ The parent is registered via `customElements.define()` (vanilla JS) rather than `@customElement`, so it can be defined later—e.g. when the user clicks a button. This demonstrates the child waiting until the parent exists.
28
+
29
+ <sonic-code language="typescript">
30
+ <template>
31
+ import { html, LitElement } from "lit";
32
+ import { customElement, state } from "lit/decorators.js";
33
+ //
34
+ // Parent: registered later via customElements.define(), not @customElement
35
+ @dispatchConnectedEvent()
36
+ export class DemoWaitAncestorContainer extends LitElement {
37
+ render() {
38
+ return html`<slot></slot>`;
39
+ }
40
+ }
41
+ //
42
+ // Child: waits for parent before initializing
43
+ @customElement("demo-wait-ancestor-value")
44
+ @awaitConnectedAncestors("demo-wait-ancestor-container[dataProvider]")
45
+ export class DemoWaitAncestorValue extends LitElement {
46
+ @ancestorAttribute("dataProvider")
47
+ dataProvider: string | null = null;
48
+ //
49
+ @state() initializedAt: string = "";
50
+ //
51
+ connectedCallback() {
52
+ super.connectedCallback();
53
+ this.initializedAt = new Date().toISOString();
54
+ }
55
+ //
56
+ render() {
57
+ return html`
58
+ <p>DataProvider from ancestor: <strong>${this.dataProvider || "—"}</strong></p>
59
+ <p>Initialized at: ${this.initializedAt || "(waiting for parent…)"}</p>
60
+ `;
61
+ }
62
+ }
63
+ //
64
+ // Demo section: register parent via customElements.define() when user clicks
65
+ @customElement("demo-wait-ancestors-section")
66
+ export class DemoWaitAncestorsSection extends LitElement {
67
+ registerParent() {
68
+ if (!customElements.get("demo-wait-ancestor-container")) {
69
+ customElements.define("demo-wait-ancestor-container", DemoWaitAncestorContainer);
70
+ }
71
+ }
72
+ render() {
73
+ return html`
74
+ <sonic-button @click=${this.registerParent}>Register parent component</sonic-button>
75
+ <demo-wait-ancestor-container dataProvider="waitAncestorDemo">
76
+ <demo-wait-ancestor-value></demo-wait-ancestor-value>
77
+ </demo-wait-ancestor-container>
78
+ `;
79
+ }
80
+ }
81
+ </template>
82
+ </sonic-code>
83
+
84
+ <sonic-code>
85
+ <template>
86
+ <demo-wait-ancestors-section></demo-wait-ancestors-section>
87
+ </template>
88
+ </sonic-code>
89
+
90
+ ### Multiple ancestors
91
+
92
+ The child waits for all specified ancestors. Register outer first, then inner — the child initializes only when both are ready.
93
+
94
+ <sonic-code>
95
+ <template>
96
+ <demo-wait-ancestors-multi-section></demo-wait-ancestors-multi-section>
97
+ </template>
98
+ </sonic-code>
99
+
100
+ ### Ancestors already connected
101
+
102
+ When the parent is defined at load and already in the DOM, the child initializes immediately (no delay).
103
+
104
+ **Static (both in DOM from start):**
105
+
106
+ <sonic-code>
107
+ <template>
108
+ <demo-wait-ancestors-static-section></demo-wait-ancestors-static-section>
109
+ </template>
110
+ </sonic-code>
111
+
112
+ **Dynamic (child added on button click):**
113
+
114
+ <sonic-code>
115
+ <template>
116
+ <demo-wait-ancestors-ready-section></demo-wait-ancestors-ready-section>
117
+ </template>
118
+ </sonic-code>
119
+
120
+ ## CSS selector support
121
+
122
+ Parameters are CSS selectors matched via `element.matches()` — e.g. `"sonic-subscriber"`, `"sonic-subscriber[dataProvider]"`, `".my-container"`, or multiple: `"sonic-subscriber", "sonic-sdui"`.
123
+
124
+ ## Behavior
125
+
126
+ - Ancestor search uses CSS selectors (`element.matches(selector)`) — supports tag names, classes, attributes, combinators, etc.
127
+ - Traversal includes shadow roots (parentNode / host)
128
+ - Non-web components (no hyphen in tag name) are considered connected by default
129
+ - For web component ancestors, it waits for `customElements.whenDefined(tagName)` and the `sonic-connected` event (or a timeout as fallback)
130
+ - If no matching ancestor is found, the original `connectedCallback` is called immediately
131
+ - Ancestors that do not emit `sonic-connected` trigger the fallback after the timeout (compatibility with existing components)
132
+
133
+ ## Use cases
134
+
135
+ These decorators are particularly useful for:
136
+
137
+ - **sonic-value** inside a **sonic-subscriber**: the value waits for the subscriber to configure its publisher
138
+ - **Components inside sonic-sdui**: wait for the SDUI to load and configure its context
139
+ - **Any component** depending on context provided by an ancestor custom element
140
+
141
+ ## Listening to the connected event
142
+
143
+ The `sonic-connected` event bubbles, so you can listen to it from anywhere:
144
+
145
+ <sonic-code language="typescript">
146
+ <template>
147
+ import { CONNECTED } from "@supersoniks/concorde/decorators";
148
+ //
149
+ someConnectable.addEventListener(CONNECTED, (e) => {
150
+ console.log("Component connected:", e.target);
151
+ });
152
+ </template>
153
+ </sonic-code>
154
+
155
+ ## Notes
156
+
157
+ - These decorators apply only to web components (classes extending `HTMLElement`)
158
+ - The fallback timeout ensures compatibility with components that do not yet use `@dispatchConnectedEvent`
159
+ - Traversal includes shadow roots
160
+ - For a guarantee without relying on the timeout, decorate ancestors (Subscriber, Fetcher, etc.) with `@dispatchConnectedEvent`
@@ -5,6 +5,8 @@ import {
5
5
  ancestorAttribute,
6
6
  onAssign,
7
7
  autoSubscribe,
8
+ awaitConnectedAncestors,
9
+ dispatchConnectedEvent,
8
10
  } from "@supersoniks/concorde/decorators";
9
11
  import { sub } from "@supersoniks/concorde/directives";
10
12
  import {
@@ -56,6 +58,7 @@ const initializeDecoratorsDemoData = () => {
56
58
 
57
59
  ensurePublisherValue("autoValue1", 10);
58
60
  ensurePublisherValue("autoValue2", 20);
61
+ ensurePublisherValue("waitAncestorDemo", { message: "Context from ancestor" });
59
62
 
60
63
  ensurePublisherValue("combinedData", { title: "Combined Title" });
61
64
  ensurePublisherValue("combinedUser", { name: "Combined User" });
@@ -656,3 +659,265 @@ export class DemoAutoSubscribe extends LitElement {
656
659
  value.set(Math.floor(Math.random() * 100));
657
660
  }
658
661
  }
662
+
663
+ /**
664
+ * Parent component for awaitConnectedAncestors demo.
665
+ * Registered via customElements.define() on button click (not @customElement).
666
+ */
667
+ @dispatchConnectedEvent()
668
+ export class DemoWaitAncestorContainer extends LitElement {
669
+ render() {
670
+ return html`<slot></slot>`;
671
+ }
672
+ }
673
+
674
+ /**
675
+ * Demo component showcasing @awaitConnectedAncestors decorator (child).
676
+ * Uses CSS selector: tag + attribute.
677
+ */
678
+ @customElement("demo-wait-ancestor-value")
679
+ @awaitConnectedAncestors("demo-wait-ancestor-container[dataProvider]")
680
+ export class DemoWaitAncestorValue extends LitElement {
681
+ @ancestorAttribute("dataProvider")
682
+ dataProvider: string | null = null;
683
+
684
+ @state() initializedAt = "";
685
+
686
+ connectedCallback() {
687
+ super.connectedCallback();
688
+ this.initializedAt = new Date().toISOString();
689
+ }
690
+
691
+ render() {
692
+ return html`
693
+ <p>
694
+ DataProvider from ancestor:
695
+ <strong>${this.dataProvider || "—"}</strong>
696
+ </p>
697
+ <p>Initialized at: ${this.initializedAt || "(waiting for parent…)"}</p>
698
+ `;
699
+ }
700
+ }
701
+
702
+ /**
703
+ * Demo section with button to register parent component on demand.
704
+ * Demonstrates that the child waits until the parent is defined.
705
+ */
706
+ @customElement("demo-wait-ancestors-section")
707
+ export class DemoWaitAncestorsSection extends LitElement {
708
+ static styles = [tailwind];
709
+
710
+ @state() parentRegistered = false;
711
+
712
+ registerParent() {
713
+ if (customElements.get("demo-wait-ancestor-container")) {
714
+ this.parentRegistered = true;
715
+ return;
716
+ }
717
+ customElements.define(
718
+ "demo-wait-ancestor-container",
719
+ DemoWaitAncestorContainer
720
+ );
721
+ this.parentRegistered = true;
722
+ }
723
+
724
+ render() {
725
+ return html`
726
+ <div class="space-y-4">
727
+ <sonic-button
728
+ ?disabled=${this.parentRegistered}
729
+ @click=${this.registerParent}
730
+ >
731
+ ${this.parentRegistered
732
+ ? "Parent already registered"
733
+ : "Register parent component"}
734
+ </sonic-button>
735
+ <demo-wait-ancestor-container dataProvider="waitAncestorDemo">
736
+ <demo-wait-ancestor-value></demo-wait-ancestor-value>
737
+ </demo-wait-ancestor-container>
738
+ </div>
739
+ `;
740
+ }
741
+ }
742
+
743
+ // --- Multiple ancestors demo ---
744
+
745
+ @dispatchConnectedEvent()
746
+ export class DemoWaitAncestorOuter extends LitElement {
747
+ render() {
748
+ return html`<slot></slot>`;
749
+ }
750
+ }
751
+
752
+ @dispatchConnectedEvent()
753
+ export class DemoWaitAncestorInner extends LitElement {
754
+ render() {
755
+ return html`<slot></slot>`;
756
+ }
757
+ }
758
+
759
+ @customElement("demo-wait-ancestor-value-multi")
760
+ @awaitConnectedAncestors("demo-wait-ancestor-outer", "demo-wait-ancestor-inner")
761
+ export class DemoWaitAncestorValueMulti extends LitElement {
762
+ @ancestorAttribute("dataProvider")
763
+ dataProvider: string | null = null;
764
+
765
+ @state() initializedAt = "";
766
+
767
+ connectedCallback() {
768
+ super.connectedCallback();
769
+ this.initializedAt = new Date().toISOString();
770
+ }
771
+
772
+ render() {
773
+ return html`
774
+ <p>
775
+ DataProvider from ancestor:
776
+ <strong>${this.dataProvider || "—"}</strong>
777
+ </p>
778
+ <p>Initialized at: ${this.initializedAt || "(waiting for both ancestors…)"}</p>
779
+ `;
780
+ }
781
+ }
782
+
783
+ /**
784
+ * Demo: child waits for multiple ancestors.
785
+ * Register outer first, then inner — child initializes only when both are ready.
786
+ */
787
+ @customElement("demo-wait-ancestors-multi-section")
788
+ export class DemoWaitAncestorsMultiSection extends LitElement {
789
+ static styles = [tailwind];
790
+
791
+ @state() outerRegistered = false;
792
+ @state() innerRegistered = false;
793
+
794
+ registerOuter() {
795
+ if (!customElements.get("demo-wait-ancestor-outer")) {
796
+ customElements.define("demo-wait-ancestor-outer", DemoWaitAncestorOuter);
797
+ }
798
+ this.outerRegistered = true;
799
+ }
800
+
801
+ registerInner() {
802
+ if (!customElements.get("demo-wait-ancestor-inner")) {
803
+ customElements.define("demo-wait-ancestor-inner", DemoWaitAncestorInner);
804
+ }
805
+ this.innerRegistered = true;
806
+ }
807
+
808
+ render() {
809
+ return html`
810
+ <div class="space-y-4">
811
+ <div class="flex gap-2 flex-wrap">
812
+ <sonic-button
813
+ ?disabled=${this.outerRegistered}
814
+ @click=${this.registerOuter}
815
+ >
816
+ ${this.outerRegistered ? "Outer registered" : "Register outer"}
817
+ </sonic-button>
818
+ <sonic-button
819
+ ?disabled=${this.innerRegistered}
820
+ @click=${this.registerInner}
821
+ >
822
+ ${this.innerRegistered ? "Inner registered" : "Register inner"}
823
+ </sonic-button>
824
+ </div>
825
+ <demo-wait-ancestor-outer>
826
+ <demo-wait-ancestor-inner dataProvider="waitAncestorDemo">
827
+ <demo-wait-ancestor-value-multi></demo-wait-ancestor-value-multi>
828
+ </demo-wait-ancestor-inner>
829
+ </demo-wait-ancestor-outer>
830
+ </div>
831
+ `;
832
+ }
833
+ }
834
+
835
+ // --- Ancestors already connected demo ---
836
+
837
+ @customElement("demo-wait-ancestor-ready")
838
+ @dispatchConnectedEvent()
839
+ export class DemoWaitAncestorReady extends LitElement {
840
+ render() {
841
+ return html`<slot></slot>`;
842
+ }
843
+ }
844
+
845
+ @customElement("demo-wait-ancestor-value-ready")
846
+ @awaitConnectedAncestors("demo-wait-ancestor-ready")
847
+ export class DemoWaitAncestorValueReady extends LitElement {
848
+ @ancestorAttribute("dataProvider")
849
+ dataProvider: string | null = null;
850
+
851
+ @state() initializedAt = "";
852
+
853
+ connectedCallback() {
854
+ super.connectedCallback();
855
+ this.initializedAt = new Date().toISOString();
856
+ }
857
+
858
+ render() {
859
+ return html`
860
+ <p>
861
+ DataProvider: <strong>${this.dataProvider || "—"}</strong>
862
+ </p>
863
+ <p>Initialized at: ${this.initializedAt}</p>
864
+ `;
865
+ }
866
+ }
867
+
868
+ /**
869
+ * Demo: ancestors already connected at load.
870
+ * Parent is defined with @customElement. Child is added dynamically — it
871
+ * initializes immediately because the ancestor is already ready.
872
+ */
873
+ @customElement("demo-wait-ancestors-ready-section")
874
+ export class DemoWaitAncestorsReadySection extends LitElement {
875
+ static styles = [tailwind];
876
+
877
+ @state() childInDom = false;
878
+
879
+ addChild() {
880
+ this.childInDom = true;
881
+ }
882
+
883
+ render() {
884
+ return html`
885
+ <div class="space-y-4">
886
+ <p class="text-sm text-neutral-600 dark:text-neutral-400">
887
+ Parent is defined at load. Click to add child dynamically — it
888
+ initializes immediately because the ancestor is already ready.
889
+ </p>
890
+ <sonic-button ?disabled=${this.childInDom} @click=${this.addChild}>
891
+ ${this.childInDom ? "Child added" : "Add child dynamically"}
892
+ </sonic-button>
893
+ <demo-wait-ancestor-ready dataProvider="waitAncestorDemo">
894
+ ${this.childInDom
895
+ ? html`<demo-wait-ancestor-value-ready></demo-wait-ancestor-value-ready>`
896
+ : html``}
897
+ </demo-wait-ancestor-ready>
898
+ </div>
899
+ `;
900
+ }
901
+ }
902
+
903
+ /**
904
+ * Demo: parent and child both in DOM from start, parent defined at load.
905
+ * Child initializes immediately (no delay) because ancestor is already ready.
906
+ */
907
+ @customElement("demo-wait-ancestors-static-section")
908
+ export class DemoWaitAncestorsStaticSection extends LitElement {
909
+ static styles = [tailwind];
910
+
911
+ render() {
912
+ return html`
913
+ <p class="text-sm text-neutral-600 dark:text-neutral-400 mb-4">
914
+ Parent and child both in DOM from load. Child initializes immediately
915
+ because the ancestor is already defined and connected.
916
+ </p>
917
+ <demo-wait-ancestor-ready dataProvider="waitAncestorDemo">
918
+ <demo-wait-ancestor-value-ready></demo-wait-ancestor-value-ready>
919
+ </demo-wait-ancestor-ready>
920
+ `;
921
+ }
922
+ }
923
+
@@ -146,7 +146,10 @@ export class DocsNavigation extends LitElement {
146
146
  label: "@autoSubscribe",
147
147
  href: "#docs/_misc/auto-subscribe.md/auto-subscribe",
148
148
  },
149
-
149
+ {
150
+ label: "@awaitConnectedAncestors",
151
+ href: "#docs/_misc/wait-for-ancestors.md/wait-for-ancestors",
152
+ },
150
153
  {
151
154
  label: "Templates Demo",
152
155
  href: "#docs/_misc/templates-demo.md/templates-demo",