From cd0e9a4e50a17d81c48b15e31b9005cb2f5a2a5e Mon Sep 17 00:00:00 2001 From: mantou132 <709922234@qq.com> Date: Tue, 1 Oct 2024 13:48:10 +0800 Subject: [PATCH] [gem] Fixed #202, #203 --- .../duoyun-ui/src/elements/page-loadbar.ts | 2 +- packages/duoyun-ui/src/elements/popover.ts | 45 +++++++++---------- .../gem-book/src/element/elements/loadbar.ts | 2 +- packages/gem/src/lib/element.ts | 31 ++++++++----- 4 files changed, 43 insertions(+), 37 deletions(-) diff --git a/packages/duoyun-ui/src/elements/page-loadbar.ts b/packages/duoyun-ui/src/elements/page-loadbar.ts index e8dece96..f7915beb 100644 --- a/packages/duoyun-ui/src/elements/page-loadbar.ts +++ b/packages/duoyun-ui/src/elements/page-loadbar.ts @@ -49,8 +49,8 @@ export class DuoyunPageLoadbarElement extends GemElement { clearInterval(Loadbar.timer); Loadbar.timer = window.setTimeout(() => { const instance = Loadbar.instance || new Loadbar(); - if (!instance.isConnected) document.body.append(instance); instance.#state({ progress: 0 }); + if (!instance.isConnected) document.body.append(instance); Loadbar.timer = window.setInterval(() => { instance.#state({ progress: instance.#state.progress + (95 - instance.#state.progress) * 0.1 }); }, 100); diff --git a/packages/duoyun-ui/src/elements/popover.ts b/packages/duoyun-ui/src/elements/popover.ts index 75d4762a..01b02206 100644 --- a/packages/duoyun-ui/src/elements/popover.ts +++ b/packages/duoyun-ui/src/elements/popover.ts @@ -91,8 +91,8 @@ export class DuoyunPopoverElement extends GemElement { toggleActiveState(element, true); const popover = new DuoyunPopoverElement(options); const restoreInert = options.trigger === 'click' ? setBodyInert(popover) : undefined; - document.body.append(popover); popover.#open({ left, right, top, bottom }); + document.body.append(popover); // handle mask click popover.addEventListener('close', () => { restoreInert?.(); @@ -275,30 +275,29 @@ export class DuoyunPopoverElement extends GemElement { @effect((i) => [i.#state.open]) #updateState = () => { - if (this.#state.open && this.#position === 'auto') { - const { top, left, right, bottom, height } = this.popoverElement!.getBoundingClientRect(); - let position: Position = 'top'; - if (right > innerWidth) { - if (top < 0) { - position = 'bottomRight'; - } else if (innerHeight - bottom < height / 2) { - position = 'topRight'; - } else { - position = 'left'; - } - } else if (left < 0) { - if (top < 0) { - position = 'bottomLeft'; - } else if (innerHeight - bottom < height / 2) { - position = 'topLeft'; - } else { - position = 'right'; - } - } else if (top < 0) { - position = 'bottom'; + if (!this.#state.open || this.#position !== 'auto') return; + const { top, left, right, bottom, height } = this.popoverElement!.getBoundingClientRect(); + let position: Position = 'top'; + if (right > innerWidth) { + if (top < 0) { + position = 'bottomRight'; + } else if (innerHeight - bottom < height / 2) { + position = 'topRight'; + } else { + position = 'left'; + } + } else if (left < 0) { + if (top < 0) { + position = 'bottomLeft'; + } else if (innerHeight - bottom < height / 2) { + position = 'topLeft'; + } else { + position = 'right'; } - this.#state({ style: this.#genStyle(position), position }); + } else if (top < 0) { + position = 'bottom'; } + this.#state({ style: this.#genStyle(position), position }); }; render = () => { diff --git a/packages/gem-book/src/element/elements/loadbar.ts b/packages/gem-book/src/element/elements/loadbar.ts index 1b04fcea..2d97c7dc 100644 --- a/packages/gem-book/src/element/elements/loadbar.ts +++ b/packages/gem-book/src/element/elements/loadbar.ts @@ -55,8 +55,8 @@ export class GemBookLoadbarElement extends GemElement { clearInterval(Loadbar.timer); Loadbar.timer = window.setTimeout(() => { const instance = Loadbar.instance || new Loadbar(); - if (!instance.isConnected) document.body.append(instance); instance.#state({ progress: 0 }); + if (!instance.isConnected) document.body.append(instance); Loadbar.timer = window.setInterval(() => { instance.#state({ progress: instance.#state.progress + (95 - instance.#state.progress) * 0.1 }); }, 100); diff --git a/packages/gem/src/lib/element.ts b/packages/gem/src/lib/element.ts index 24b1a621..a1c560a4 100644 --- a/packages/gem/src/lib/element.ts +++ b/packages/gem/src/lib/element.ts @@ -5,7 +5,7 @@ import type { GemReflectElement } from '../elements/reflect'; import type { Store } from './store'; import { connect } from './store'; -import { LinkedList, addMicrotask, isArrayChange, addListener, randomStr, createUpdater } from './utils'; +import { LinkedList, addMicrotask, isArrayChange, addListener, randomStr, createUpdater, GemError } from './utils'; export { html, svg, render, directive, TemplateResult, SVGTemplateResult } from 'lit-html'; @@ -232,7 +232,7 @@ type EffectItem = { fixed?: boolean; // 不需要清理,只会添加一次 values?: T; getDep?: GetDepFun; - preCallback?: () => void; + preCallback?: any; }; function execEffectList(list?: EffectItem[]) { @@ -318,24 +318,28 @@ export abstract class GemElement extends HTMLElement { #isAppendReason?: boolean; #isMounted?: boolean; // not in constructor 的近似值 - #isConnected?: boolean; + #notInCons?: boolean; #rendering?: boolean; - #clearStyle?: any; + #clearStyle?: (() => void) | undefined; [updateTokenAlias]() { // 避免 `connectedCallback` 中的 property 赋值造成多余更新 - if (this.#isMounted) { - addMicrotask(this.#update); - } + if (this.#isMounted) addMicrotask(this.#update); } static { createState = (initState: T) => { const ele = currentConstructGemElement; const state = createUpdater(initState, (payload) => { + const effect = ele.#effectList.at(0); + // https://github.com/mantou132/gem/issues/203 + if (ele.#isMounted && effect && !effect.initialized) { + throw new GemError(`Do't set state sync before insert the DOM`); + } assign(state, payload); // 避免无限刷新 - if (!ele.#rendering) addMicrotask(ele.#update); + // 挂载前 set state 不应该触发更新 + if (!ele.#rendering && ele.#isMounted) addMicrotask(ele.#update); }); ele.#internals.stateList.push(state); return state; @@ -494,8 +498,12 @@ export abstract class GemElement extends HTMLElement { #connectedCallback = async () => { if (this.#isAppendReason) { this.#isAppendReason = false; + // https://github.com/mantou132/gem/issues/202 + this.#clearStyle?.(); + this.#clearStyle = this.#prepareStyle(); return; } + this.#notInCons = true; this.#compat(); const { observedStores, mode, penetrable } = this.#metadata; @@ -504,7 +512,6 @@ export abstract class GemElement extends HTMLElement { // 如果渲染内容需要应用外部样式,需要手动 `delete` 边界 if (!mode && this.#renderList.length && !penetrable) this.#internals.states.add(BoundaryCSSState); - this.#isConnected = true; this.#disconnectStore = observedStores?.map((store) => connect(store, this.#update)); this.#render(this.#renderItem); this.#isMounted = true; @@ -554,7 +561,7 @@ export abstract class GemElement extends HTMLElement { // 是否要异步执行回调? this.#effectList = clearEffect(this.#effectList); this.#memoList = clearEffect(this.#memoList); - execCallback(this.#clearStyle); + this.#clearStyle?.(); return GemElement.#final; } @@ -577,7 +584,7 @@ export abstract class GemElement extends HTMLElement { callback, getDep, initialized: this.#isMounted, - fixed: !this.#isConnected, + fixed: !this.#notInCons, }; // 已挂载时立即执行副作用,未挂载时等挂载后执行 if (this.#isMounted) { @@ -608,7 +615,7 @@ export abstract class GemElement extends HTMLElement { this.#memoList.push({ callback, getDep, - fixed: !this.#isConnected, + fixed: !this.#notInCons, }); };