|
1 | 1 | import { BUILD } from '@app-data';
|
2 | 2 | import { doc, getHostRef, plt, registerHost, supportsShadow, win } from '@platform';
|
| 3 | +import { addHostEventListeners } from '@runtime'; |
3 | 4 | import { CMP_FLAGS, queryNonceMetaTagContent } from '@utils';
|
4 | 5 |
|
5 | 6 | import type * as d from '../declarations';
|
@@ -96,6 +97,7 @@ export const bootstrapLazy = (lazyBundles: d.LazyBundlesRuntimeData, options: d.
|
96 | 97 | const HostElement = class extends HTMLElement {
|
97 | 98 | ['s-p']: Promise<void>[];
|
98 | 99 | ['s-rc']: (() => void)[];
|
| 100 | + hasRegisteredEventListeners = false; |
99 | 101 |
|
100 | 102 | // StencilLazyHost
|
101 | 103 | constructor(self: HTMLElement) {
|
@@ -138,6 +140,19 @@ export const bootstrapLazy = (lazyBundles: d.LazyBundlesRuntimeData, options: d.
|
138 | 140 | }
|
139 | 141 |
|
140 | 142 | connectedCallback() {
|
| 143 | + const hostRef = getHostRef(this); |
| 144 | + |
| 145 | + /** |
| 146 | + * The `connectedCallback` lifecycle event can potentially be fired multiple times |
| 147 | + * if the element is removed from the DOM and re-inserted. This is not a common use case, |
| 148 | + * but it can happen in some scenarios. To prevent registering the same event listeners |
| 149 | + * multiple times, we will only register them once. |
| 150 | + */ |
| 151 | + if (!this.hasRegisteredEventListeners) { |
| 152 | + this.hasRegisteredEventListeners = true; |
| 153 | + addHostEventListeners(this, hostRef, cmpMeta.$listeners$, false); |
| 154 | + } |
| 155 | + |
141 | 156 | if (appLoadFallback) {
|
142 | 157 | clearTimeout(appLoadFallback);
|
143 | 158 | appLoadFallback = null;
|
|
0 commit comments