mantou132 / gem

💎 Lightweight WebApp development library using custom elements
https://gemjs.org
MIT License
19 stars 2 forks source link

[gem] Support HMR #160

Open mantou132 opened 5 months ago

mantou132 commented 5 months ago

dep #145

other:

goal:

mantou132 commented 1 month ago

另一种方法:

只有 class 内的更新才能 hmr(?),class 的装饰器都不行,比如 @shadow,但需要支持 style; 对于函数以外的字段?好像不能确定是否要保留,不支持

  1. 移除自定义元素重复注册
  2. 添加一个影子类(主要是 swc 插件不能判断是否是热更新)
    1. 编译私有字段成公开字段
    2. 函数编译成非箭头函数
  3. 替换函数字段为影子类函数(函数如果也是数据就尴尬了)并绑定 this 值
  4. 替换 prototype
  5. 重新执行渲染
mantou132 commented 1 month ago

另一种方法:

不行:太多操作产生的数据了