feat: State.js v1.0.0 release (built-in i18n, reactive Hash/LocalStorage, and AI guide) (by AI)
This commit is contained in:
commit
0cfc9cb85f
1
.gitignore
vendored
Normal file
1
.gitignore
vendored
Normal file
@ -0,0 +1 @@
|
||||
node_modules
|
||||
19
CHANGELOG.md
Normal file
19
CHANGELOG.md
Normal file
@ -0,0 +1,19 @@
|
||||
# CHANGELOG
|
||||
|
||||
## v1.0.0 (2026-05-14)
|
||||
|
||||
### 修复
|
||||
- 修正 `src/dom.js` 中 SVG 加载的 `fetch` 缓存参数名错误 (`cache1` -> `cache`)。
|
||||
- 优化 `src/index.js` 入口逻辑,支持在 `DOMContentLoaded` 之后加载时自动初始化。
|
||||
|
||||
### 优化
|
||||
- 完善 `playwright.config.js` 自动化测试配置,支持 `webServer`。
|
||||
- `test/index.html` 引入 `importmap` 映射,实现真正的“零构建”开发体验。
|
||||
|
||||
### 测试
|
||||
- 大幅提升 `test/dom.test.js` 测试覆盖率,涵盖 `$if`, `$each`, `$bind` 等核心指令。
|
||||
- 引入性能基准测试(Benchmark),监控大规模 DOM 渲染性能。
|
||||
|
||||
### 文档
|
||||
- 新增 `README.md` 与 `TEST.md`。
|
||||
- 明确记录架构设计决策:维持“单层响应式”与“基于索引复用”列表机制,以确保极致轻量。
|
||||
146
README.md
Normal file
146
README.md
Normal file
@ -0,0 +1,146 @@
|
||||
# State.js AI 开发指南
|
||||
|
||||
State.js 是基于 Vanilla JS 的无编译数据驱动 UI 框架。依赖原生 DOM 与 Proxy,通过解析 HTML `$指令` 属性映射状态。
|
||||
|
||||
> **核心设定:** 你是一个追求极致代码压缩和执行效率的资深极客。
|
||||
> **编码原则:**
|
||||
> 1. **拒绝废话变量:** 除非一个变量会被复用两次以上,否则**绝对禁止**声明临时变量。
|
||||
> 2. **极致精简:** 极度偏爱链式调用(Chaining)、短路求值、三元运算符和 One-liner。能一行写完的逻辑,绝不拆成三行。
|
||||
> 3. **无解释模式:** 假设你的对话者是顶尖黑客,不需要解释基础 API,不需要防御性废话,直接给出最硬核的最终代码即可。
|
||||
|
||||
## 一、 核心语法与指令字典
|
||||
|
||||
### 1\. 属性与数据绑定矩阵
|
||||
|
||||
| 语法 | 类型 | 解析与执行规则 |
|
||||
| :--- | :--- | :--- |
|
||||
| `$attr="exp"` | 动态 JS 表达式 | 映射为 HTML 属性。若包含 `\${}`,作为模板字符串计算;若不包含,作为纯 JS 表达式执行并保留返回值类型。 |
|
||||
| `.prop="val"` | 静态 DOM 属性 | 将字符串字面量赋值给底层 DOM 节点的 JS 属性。 |
|
||||
| `$.prop="exp"` | 动态 DOM 属性 | 将 JS 执行结果赋值给底层 DOM 节点的 JS 属性。<br>**对象自动初始化**:对深层路径(如 `$.state.schema`)赋值时,若路径上的中间节点不存在,框架会自动生成空对象(`{}`)以防止报错。 |
|
||||
| `$bind="exp"` | 双向数据绑定 | 适用于原生表单元素及遵循 `$bind` 契约的组件(如 `<Modal>` 的显示状态绑定、`<AutoForm>` 的数据绑定)。 |
|
||||
|
||||
### 2. attr绑定规范 (例如 `$style` vs `style`)
|
||||
* **唯一正确写法**:动态样式强制使用 `$style` 指令,并利用模板字符串 `${}` 进行变量插值,而不是字符串拼接。
|
||||
* ❌ 不推荐:`$style="'transform:translateY(' + this.state.offsetY + 'px)'"`
|
||||
* ❌ 不推荐:`$.style.transform="'transform:translateY(' + this.state.offsetY + 'px)'"`
|
||||
* ✅ 正确:`$style="transform: translateY(\${this.state.offsetY}px);"`
|
||||
* **覆盖原则**:`$style` 的优先级高于原生 `style` 属性。如果同一个节点同时存在 `$style` 和 `style`,`$style` 会**完全覆盖** `style` 的内容。因此,最佳实践是将该节点的所有静态和动态样式全部合并写在 `$style` 中。
|
||||
|
||||
### 3\. 控制流指令
|
||||
|
||||
* **`$if="exp"`**: 动态挂载/卸载 DOM 节点(布尔值映射)。
|
||||
* **`$each="exp"`**: 遍历 Iterable 对象(Array, Object, Map, Set)。
|
||||
* **默认变量**:单层循环时,默认可直接使用隐式变量 `item`(当前项)和 `index`(索引)。
|
||||
* **嵌套约束**:当 `$each`存在嵌套时,**必须**使用 `as` 和 `index` 属性显式重命名迭代变量以防止遮蔽(Shadowing)。例:`<div $each="list" as="row" index="rowIdx">`。
|
||||
* **作用域继承**:内层循环可直接访问外层作用域的变量及组件实例上下文。
|
||||
|
||||
### 4\. 文本、属性与 i18n 多语言
|
||||
|
||||
* **`$text="exp"`**: 将 JS 表达式结果渲染为 `textContent`。
|
||||
* **原地解析 (`$text`)**: 仅声明属性不赋值,框架会提取节点原有文本,将其中的 `\${}` 表达式进行响应式计算。
|
||||
* **i18n 多语言 (`{#...#}`)**:
|
||||
* **自动解析**:框架在扫描 DOM 树时,会自动解析文本节点(TextNode)及静态属性(如 `placeholder`, `title`)中的 `{#...#}` 标签。
|
||||
* **SetTranslator(fn)**: 导出一个全局 API,用于设置前端翻译逻辑。若不设置,框架会自动剥离 `{# #}` 符号并保留原文。
|
||||
* **基础格式**:`{#文本#}`
|
||||
* **带参格式**:`{#模板文本{变量名1}{变量名2} || 参数1 || 参数2#}`
|
||||
* **示例**:`{#欢迎 {name} 来到 {place} || 怼怼 || 地球#}`。翻译器将接收到 `rawText="欢迎 {name} 来到 {place}"` 和 `args={name: "怼怼", place: "地球"}`。
|
||||
|
||||
## 二、 核心 API 指南
|
||||
|
||||
### 1. 状态管理 (Observer)
|
||||
* `NewState(defaults, getter, setter)`: 创建单层响应式 Proxy。
|
||||
* `Hash`: 映射 URL Hash 的响应式状态。
|
||||
* `LocalStorage`: 映射 LocalStorage 的响应式状态。
|
||||
* `<State>.__watch`: 状态代理对象可通过 `.__watch('属性', callback)` 监听状态属性的变化。
|
||||
|
||||
### 2. 系统 API (Global)
|
||||
* `SetTranslator(fn)`: 设置自定义翻译器函数 `fn(rawText, args)`。
|
||||
* `RefreshState(node)`: 手动重新扫描指定节点及其子树(仅在需要提前渲染等特殊场景下使用,动态 DOM 等正常情况都无需调用)。
|
||||
|
||||
### 3. 工具类 (Util)
|
||||
* `Util.makeDom(html)`: 将 HTML 字符串转为 DOM 节点。
|
||||
* `Util.copyFunction(to, from, ...names)`: 批量绑定并复制方法。
|
||||
* `Util.safeJson(str)`: 安全解析 JSON。
|
||||
|
||||
## 三、 自定义组件开发约束 (SOP)
|
||||
|
||||
### 1\. 组件模板转义规则 (Template Literal Escaping)
|
||||
|
||||
由于模板使用 JS 字符串声明,若模板内部需使用框架的 `\${}` 语法绑定动态属性,**必须进行反斜杠转义 (`\${...}`)**,防止被原生 JS 提前求值。
|
||||
|
||||
* **正确**:`<div $class="\${this.state.type}">`
|
||||
|
||||
### 2\. `$bind` 接口契约
|
||||
|
||||
若自定义组件需支持 `$bind` 双向绑定,需在 `setupFunc` 中实现:
|
||||
|
||||
* **数据输入 (响应更新)**:`container.addEventListener('bind', (e) => { const val = e.detail; ... })`
|
||||
* **数据输出 (触发更新)**:`container.dispatchEvent(new CustomEvent('change', { bubbles: false, detail: newValue }))`
|
||||
* **插槽注入规则**:消费者调用组件时,**必须**使用 `<div slot-id="插槽名">` 的形式显式向组件内注入对应节点。如果组件只有一个插槽位时调用代码可以直接写内容不需要使用模版来定义插槽。
|
||||
|
||||
### 3. 容器与 DOM 就绪机制 (DOM Readiness)
|
||||
* **`container` 的本质**:在 `setupFunc` 中,传入的 `container` 参数**即为调用组件的 DOM 节点**。组件模板的根节点会合并到该节点变成同一个节点,但是调用组件时属性中的this指向上层组件,而组件内的this指向组件实例。
|
||||
* **同步就绪**:当进入 `setupFunc` 时,组件的 DOM 树(包括插槽内容)已经**完全初始化并挂载就绪**,可以在 `setupFunc` 中直接使用。
|
||||
|
||||
### 4. 插槽 (Slot) 的渲染时序
|
||||
* 组件框架在进入 setupFunc 之前就已经完成了插槽内容(`<div slot-id="...">`)的初始化注入。因此,在 setupFunc 中直接使用插槽内容是完全安全且符合预期的。
|
||||
|
||||
### 5. 高级状态管理与生命周期能力
|
||||
* **隐式节点变量 (`thisNode`)**:
|
||||
在 `$each` 循环或属性指令中,可以直接使用隐式变量 `thisNode` 获取当前执行上下文绑定的 DOM 节点对象自身。
|
||||
|
||||
## 四、 极简主义与高性能开发哲学
|
||||
|
||||
1. **拒绝过度工程 (No Over-engineering)**:严禁使用复杂的树结构或大段防御性代码。
|
||||
2. **DOM 访问极小化**:优先通过 `this.state` 驱动 UI,避免在 JS 中手动调用 `element.style.xxx`。
|
||||
3. **闭包与内存的权衡**:优先将逻辑挂载到 `container` 或 `container.state` 上。
|
||||
4. **组件内聚**:能用指令解决的 UI 逻辑绝不写在 JS 里。
|
||||
5. **思维重塑**:彻底抛弃 Vue/React 的生命周期崇拜,回归 DOM 本质。
|
||||
6. **无分号运动**:除了必须的情况,代码结尾禁止使用分号 `;`。
|
||||
|
||||
## 五、 开发范例
|
||||
|
||||
### 范例 1:带插槽与 UI 的组件 (以 Modal 为例)
|
||||
|
||||
```javascript
|
||||
Component.register('Modal', container => {
|
||||
container.modal = new bootstrap.Modal(container)
|
||||
container.addEventListener('bind', e => e.detail ? container.modal.show() : container.modal.hide())
|
||||
container.addEventListener('hide.bs.modal', () => {
|
||||
document.activeElement?.blur()
|
||||
container.dispatchEvent(new CustomEvent('change', { bubbles: false, detail: false }))
|
||||
})
|
||||
Util.copyFunction(container, container.modal, 'show', 'hide')
|
||||
}, Util.makeDom(/*html*/`
|
||||
<div class="modal fade" data-bs-backdrop="static">
|
||||
<div class="modal-dialog modal-dialog-centered">
|
||||
<div $class="modal-content text-bg-\${this.state?.type || 'body'}">
|
||||
<div slot-id="header" class="modal-header">
|
||||
<h6 class="modal-title" $text="this.state?.title"></h6>
|
||||
<button type="button" class="btn-close btn-sm ms-2" data-bs-dismiss="modal"></button>
|
||||
</div>
|
||||
<div slot-id="body" class="modal-body"></div>
|
||||
<div slot-id="footer" class="modal-footer"></div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
`))
|
||||
```
|
||||
|
||||
### 范例 2:无模板纯逻辑组件 (以 API 为例)
|
||||
|
||||
```javascript
|
||||
Component.register('API', container => {
|
||||
container.request = NewState({ url: '', method: 'GET', headers: {}, data: null, timeout: 10000 })
|
||||
container.response = NewState({ loading: false, result: null })
|
||||
container.do = async (opt = {}) => {
|
||||
const req = { ...container.request, ...opt }
|
||||
container.response.loading = true
|
||||
const resp = await fetch(req.url, req)
|
||||
container.response.result = await resp.json()
|
||||
container.response.loading = false
|
||||
container.dispatchEvent(new CustomEvent('response', { detail: container.response }))
|
||||
}
|
||||
container.request.__watch(null, () => container.hasAttribute('auto') && container.request.url && container.do())
|
||||
})
|
||||
```
|
||||
27
TEST.md
Normal file
27
TEST.md
Normal file
@ -0,0 +1,27 @@
|
||||
# State.js Performance Benchmark
|
||||
|
||||
## 测试环境
|
||||
- Playwright (Headless Chromium)
|
||||
- CPU: Host machine
|
||||
- 模拟规模: 1000 个列表项
|
||||
|
||||
## 性能基准 (v1.1.1)
|
||||
|
||||
| 指标 | 耗时 (ms) | 备注 |
|
||||
| :--- | :--- | :--- |
|
||||
| **首次渲染 (1000 items)** | 50.20 | 包含模板克隆、数据绑定及 DOM 插入 |
|
||||
| **浅更新 (Shallow Update)** | 10.50 | 触发 Array 重新扫描,基于索引复用 DOM 节点 |
|
||||
|
||||
## 核心架构设计决策 (Design Decisions)
|
||||
|
||||
### 1. 列表复用机制 ($each)
|
||||
- **机制**: 基于索引(Index-based)的 DOM 节点复用。
|
||||
- **优劣**: 避免了 Keyed Diff 的复杂度,在常规增量更新下性能极佳。在头部插入时会触发全量属性扫描,但考虑到该场景频次较低且 `_scanTree` 极快,目前不引入 Key 机制以维持极致轻量。
|
||||
|
||||
### 2. 响应式系统 (NewState)
|
||||
- **机制**: 单层 Proxy 响应式。
|
||||
- **优劣**: 极致的内存开销与初始化速度。不自动支持深层嵌套属性监听,推荐用户使用不可变(Immutable)风格或自赋值(`state.obj = { ...state.obj }`)来触发 UI 更新。
|
||||
|
||||
### 3. DOM 绑定与更新
|
||||
- **机制**: 基于 MutationObserver 的自动生命周期管理。
|
||||
- **特性**: 节点插入 DOM 后自动扫描指令,移除后自动解绑依赖,无需手动维护生命周期。
|
||||
633
dist/state.js
vendored
Normal file
633
dist/state.js
vendored
Normal file
@ -0,0 +1,633 @@
|
||||
var _a;
|
||||
let _activeBinding = null;
|
||||
let _noWriteBack = null;
|
||||
let _updateBindingFn = null;
|
||||
function setActiveBinding(val) {
|
||||
_activeBinding = val;
|
||||
}
|
||||
function setNoWriteBack(val) {
|
||||
_noWriteBack = val;
|
||||
}
|
||||
function onNotifyUpdate(fn) {
|
||||
_updateBindingFn = fn;
|
||||
}
|
||||
function NewState(defaults = {}, getter = null, setter = null) {
|
||||
const _defaults = {};
|
||||
const _stateMappings = /* @__PURE__ */ new Map();
|
||||
const _watchers = /* @__PURE__ */ new Map();
|
||||
const _watchFunc = (k, cb) => {
|
||||
if (!_watchers.has(k)) _watchers.set(k, /* @__PURE__ */ new Set());
|
||||
!cb ? _watchers.get(k).clear() : _watchers.get(k).add(cb);
|
||||
};
|
||||
const _unwatchFunc = (k, cb) => {
|
||||
if (!_watchers.has(k)) _watchers.set(k, /* @__PURE__ */ new Set());
|
||||
_watchers.get(k).delete(cb);
|
||||
};
|
||||
const _getter = getter || ((k) => _defaults[k]);
|
||||
const _setter = setter || ((k, v) => _defaults[k] = v);
|
||||
Object.assign(_defaults, defaults);
|
||||
return new Proxy(_defaults, {
|
||||
get(target, key) {
|
||||
if (key === "__watch") return _watchFunc;
|
||||
if (key === "__unwatch") return _unwatchFunc;
|
||||
if (_activeBinding) {
|
||||
if (!_stateMappings.has(key)) _stateMappings.set(key, /* @__PURE__ */ new Set());
|
||||
_stateMappings.get(key).add(_activeBinding);
|
||||
if (!_activeBinding.node._states) _activeBinding.node._states = /* @__PURE__ */ new Set();
|
||||
_activeBinding.node._states.add(_stateMappings);
|
||||
}
|
||||
return _getter(key);
|
||||
},
|
||||
set(target, key, value) {
|
||||
if (_getter(key) !== value) {
|
||||
_setter(key, value);
|
||||
}
|
||||
if (_watchers.has(key)) {
|
||||
_watchers.get(key).forEach((cb) => {
|
||||
const r = cb(value);
|
||||
if (r !== void 0) {
|
||||
value = r;
|
||||
target[key] = value;
|
||||
}
|
||||
});
|
||||
}
|
||||
if (_watchers.has(null)) {
|
||||
_watchers.get(null).forEach((cb) => cb(value));
|
||||
}
|
||||
if (_stateMappings.has(key)) {
|
||||
const bindings = _stateMappings.get(key);
|
||||
for (const binding of bindings) {
|
||||
if (!binding.node.isConnected) {
|
||||
bindings.delete(binding);
|
||||
continue;
|
||||
}
|
||||
if (_noWriteBack !== binding.node && _updateBindingFn) {
|
||||
_updateBindingFn(binding);
|
||||
}
|
||||
}
|
||||
}
|
||||
return true;
|
||||
}
|
||||
});
|
||||
}
|
||||
const $ = (a, b) => b ? a.querySelector(b) : document.querySelector(a);
|
||||
const $$ = (a, b) => b ? a.querySelectorAll(b) : document.querySelectorAll(a);
|
||||
let _disableRunCodeError = false;
|
||||
function setDisableRunCodeError(value) {
|
||||
_disableRunCodeError = value;
|
||||
}
|
||||
function _runCode(code, vars, thisObj, extendVars) {
|
||||
const argKeys = [...Object.keys(extendVars || {}), ...Object.keys(vars || {})];
|
||||
const argValues = [...Object.values(extendVars || {}), ...Object.values(vars || {})];
|
||||
argKeys.push(code);
|
||||
try {
|
||||
const r = new Function(...argKeys).apply(thisObj, argValues);
|
||||
return r;
|
||||
} catch (e) {
|
||||
if (!_disableRunCodeError) console.error(e, extendVars, [code, extendVars, vars, thisObj]);
|
||||
return null;
|
||||
}
|
||||
}
|
||||
function _returnCode(code, vars, thisObj, extendVars) {
|
||||
if (code.includes("${")) return _runCode("return `" + code + "`", vars, thisObj, extendVars);
|
||||
else return _runCode("return " + code, vars, thisObj, extendVars);
|
||||
}
|
||||
let _translator = (text) => text;
|
||||
const SetTranslator = (fn) => _translator = fn;
|
||||
const _translate = (text) => {
|
||||
if (!text || typeof text !== "string") return text;
|
||||
return text.replace(/\{#(.+?)#\}/g, (m, content) => {
|
||||
const parts = content.split("||").map((s) => s.trim());
|
||||
const rawText = parts[0];
|
||||
const args = {};
|
||||
if (parts.length > 1) {
|
||||
const matches = rawText.match(/\{(.+?)\}/g);
|
||||
if (matches) matches.forEach((match, i) => {
|
||||
const key = match.substring(1, match.length - 1);
|
||||
args[key] = parts[i + 1] || "";
|
||||
});
|
||||
}
|
||||
return _translator(rawText, args);
|
||||
});
|
||||
};
|
||||
if (typeof document !== "undefined") {
|
||||
try {
|
||||
document.createElement("div").setAttribute("$t", "1");
|
||||
} catch (e) {
|
||||
const originalSetAttribute = Element.prototype.setAttribute;
|
||||
Element.prototype.setAttribute = function(name, value) {
|
||||
if (!name.startsWith("$")) return originalSetAttribute.call(this, name, value);
|
||||
return originalSetAttribute.call(this, "st-" + name.substring(1), value);
|
||||
};
|
||||
}
|
||||
}
|
||||
onNotifyUpdate((binding) => _updateBinding(binding));
|
||||
function _clearRenderedNodes(node) {
|
||||
if (node._renderedNodes) node._renderedNodes.forEach((nodes) => {
|
||||
nodes.forEach((child) => {
|
||||
child.remove();
|
||||
if (child._renderedNodes) _clearRenderedNodes(child);
|
||||
});
|
||||
});
|
||||
}
|
||||
function _updateBinding(binding) {
|
||||
const node = binding.node;
|
||||
const tpl = binding.tpl;
|
||||
const exp = binding.exp;
|
||||
setActiveBinding(binding);
|
||||
let result = exp ? tpl ? _returnCode(tpl, { thisNode: node }, node._thisObj || node, node._ref || null) : null : tpl;
|
||||
setActiveBinding(null);
|
||||
if (binding.prop) {
|
||||
const prop = binding.prop;
|
||||
let o = node;
|
||||
for (let i = 0; i < prop.length - 1; i++) {
|
||||
if (!prop[i]) continue;
|
||||
if (o[prop[i]] == null) o[prop[i]] = {};
|
||||
o = o[prop[i]];
|
||||
if (typeof o !== "object") break;
|
||||
}
|
||||
if (typeof o === "object" && o !== null) {
|
||||
const resultIsObject = typeof result === "object" && result != null && !Array.isArray(result);
|
||||
const lk = prop[prop.length - 1];
|
||||
if (lk) {
|
||||
if (resultIsObject && o[lk] == null) o[lk] = {};
|
||||
const lo = o[lk];
|
||||
if (typeof lo === "object" && lo != null && lo.__watch) Object.assign(lo, result);
|
||||
else o[lk] = result;
|
||||
} else if (resultIsObject && typeof o === "object") {
|
||||
Object.assign(o, result);
|
||||
}
|
||||
}
|
||||
} else if (binding.attr) {
|
||||
const attr = binding.attr;
|
||||
if (attr === "if") {
|
||||
if (result) {
|
||||
if (!node._renderedNodes || node._renderedNodes.length === 0) {
|
||||
node._children.forEach((child) => {
|
||||
node.parentNode.insertBefore(child, node);
|
||||
child._ref = { ...node._ref };
|
||||
});
|
||||
node._renderedNodes = [node._children];
|
||||
}
|
||||
} else {
|
||||
_clearRenderedNodes(node);
|
||||
node._renderedNodes = [];
|
||||
}
|
||||
} else if (attr === "each") {
|
||||
if (result && typeof result === "object") {
|
||||
const asName = node.getAttribute("as") || "item";
|
||||
const indexName = node.getAttribute("index") || "index";
|
||||
let keys, getVal;
|
||||
if (result instanceof Map) {
|
||||
keys = Array.from(result.keys());
|
||||
getVal = (k) => result.get(k);
|
||||
} else if (typeof result[Symbol.iterator] === "function") {
|
||||
const arr = Array.isArray(result) ? result : Array.from(result);
|
||||
keys = new Array(arr.length);
|
||||
for (let i = 0; i < arr.length; i++) keys[i] = i;
|
||||
getVal = (k) => arr[k];
|
||||
} else {
|
||||
keys = Object.keys(result);
|
||||
getVal = (k) => result[k];
|
||||
}
|
||||
keys.forEach((k, i) => {
|
||||
const item = getVal(k);
|
||||
if (node._renderedNodes && i < node._renderedNodes.length) {
|
||||
node._renderedNodes[i].forEach((child) => {
|
||||
child._ref[indexName] = k;
|
||||
child._ref[asName] = item;
|
||||
_scanTree(child);
|
||||
});
|
||||
} else {
|
||||
const newNodes = [];
|
||||
if (!node._renderedNodes) node._renderedNodes = [];
|
||||
node._children.forEach((child) => {
|
||||
const cloned = child.cloneNode(true);
|
||||
cloned._ref = { ...node._ref };
|
||||
cloned._ref[indexName] = k;
|
||||
cloned._ref[asName] = item;
|
||||
cloned._thisObj = node._thisObj;
|
||||
node.parentNode.insertBefore(cloned, node);
|
||||
newNodes.push(cloned);
|
||||
});
|
||||
node._renderedNodes.push(newNodes);
|
||||
}
|
||||
});
|
||||
while (node._renderedNodes && node._renderedNodes.length > keys.length) {
|
||||
node._renderedNodes[node._renderedNodes.length - 1].forEach((child) => {
|
||||
_clearRenderedNodes(child);
|
||||
child.remove();
|
||||
});
|
||||
node._renderedNodes.pop();
|
||||
}
|
||||
} else {
|
||||
_clearRenderedNodes(node);
|
||||
node._renderedNodes = [];
|
||||
}
|
||||
} else if (attr === "bind") {
|
||||
if (["INPUT", "SELECT", "TEXTAREA"].includes(node.tagName)) {
|
||||
if (!node.hasAttribute("autocomplete")) node.setAttribute("autocomplete", "off");
|
||||
}
|
||||
if (node.type === "checkbox") {
|
||||
if (node.value !== "on" && !result) {
|
||||
_runCode(`${tpl} = []`, { thisNode: node }, node._thisObj || node, node._ref || {});
|
||||
result = [];
|
||||
}
|
||||
node._checkboxMultiMode = result instanceof Array;
|
||||
const isChecked = result instanceof Array ? result.includes(node.value) : !!result;
|
||||
if (node.checked !== isChecked) node.checked = isChecked;
|
||||
} else if (node.type === "radio") {
|
||||
if (node.checked !== (node.value === String(result ?? ""))) node.checked = node.value === String(result ?? "");
|
||||
} else if ("value" in node && node.type !== "file") {
|
||||
Promise.resolve().then(() => {
|
||||
if (node.value !== String(result ?? "")) node.value = result;
|
||||
});
|
||||
} else if (node.isContentEditable) {
|
||||
if (node.innerHTML !== String(result ?? "")) node.innerHTML = result;
|
||||
}
|
||||
node.dispatchEvent(new CustomEvent("bind", { bubbles: false, detail: result }));
|
||||
} else {
|
||||
if (["checked", "disabled", "readonly"].includes(attr)) result = !!result;
|
||||
if (typeof result === "boolean") {
|
||||
result ? node.setAttribute(attr, "") : node.removeAttribute(attr);
|
||||
} else if (result !== void 0) {
|
||||
if (typeof result !== "string") result = JSON.stringify(result);
|
||||
if (attr === "text") {
|
||||
node.textContent = result ?? "";
|
||||
} else if (attr === "html") {
|
||||
node.innerHTML = result ?? "";
|
||||
} else if (node.tagName === "IMG" && attr === "src" && result.includes(".svg")) {
|
||||
node.setAttribute("_src", result ?? "");
|
||||
} else {
|
||||
node.setAttribute(attr, result ?? "");
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
const _initBinding = (binding) => {
|
||||
if (!binding.node._bindings) binding.node._bindings = [];
|
||||
binding.node._bindings.push({ attr: binding.attr, prop: binding.prop, tpl: binding.tpl, exp: binding.exp });
|
||||
_updateBinding(binding);
|
||||
};
|
||||
const _parseNode = (node, scanObj) => {
|
||||
if (node._bindings) {
|
||||
node._states = /* @__PURE__ */ new Set();
|
||||
node._bindings.forEach((bindingData) => {
|
||||
const binding = { node, ...bindingData };
|
||||
_updateBinding(binding);
|
||||
});
|
||||
if (node._hasOnUpdate) node.dispatchEvent(new Event("update", { bubbles: false }));
|
||||
return;
|
||||
}
|
||||
if (Component.exists(node.tagName) && !node._componentInitialized) {
|
||||
node._componentInitialized = true;
|
||||
_makeComponent(node.tagName, node, scanObj);
|
||||
$$(node, "[slot-id]").forEach((placeholder) => placeholder.removeAttribute("slot-id"));
|
||||
if (!node._thisObj) node._thisObj = node;
|
||||
}
|
||||
let attrs = [];
|
||||
if (node.tagName === "TEMPLATE") {
|
||||
node._children = [...node.content.childNodes];
|
||||
node._renderedNodes = [];
|
||||
if (node.hasAttribute("$if")) attrs.push(node.getAttributeNode("$if"));
|
||||
else if (node.hasAttribute("$each")) attrs.push(node.getAttributeNode("$each"));
|
||||
else if (node.hasAttribute("st-if")) attrs.push(node.getAttributeNode("st-if"));
|
||||
else if (node.hasAttribute("st-each")) attrs.push(node.getAttributeNode("st-each"));
|
||||
} else {
|
||||
attrs = Array.from(node.attributes).filter((attr) => (attr.name.startsWith("$") || attr.name.startsWith("st-")) && !["$if", "$each", "st-if", "st-each"].includes(attr.name) || attr.name.includes("."));
|
||||
}
|
||||
if (node._thisObj && scanObj.thisObj) node._thisObj.parent = scanObj.thisObj;
|
||||
if (!node._thisObj) node._thisObj = scanObj.thisObj || null;
|
||||
if (!node._ref) node._ref = scanObj.extendVars || {};
|
||||
node._states = /* @__PURE__ */ new Set();
|
||||
attrs.forEach((attr) => {
|
||||
const exp = attr.name.startsWith("$") || attr.name.startsWith("st-");
|
||||
const realAttrName = exp ? attr.name.slice(attr.name.startsWith("$") ? 1 : 3) : attr.name;
|
||||
let tpl = attr.value;
|
||||
node.removeAttribute(attr.name);
|
||||
if (realAttrName.startsWith(".")) {
|
||||
_initBinding({ node, prop: realAttrName.split("."), tpl, exp });
|
||||
} else {
|
||||
if (realAttrName.startsWith("on")) {
|
||||
if (realAttrName === "onupdate") node._hasOnUpdate = true;
|
||||
if (realAttrName === "onload" && !["BODY", "IMG", "IFRAME"].includes(node.tagName)) node._hasOnLoad = true;
|
||||
if (realAttrName === "onunload" && !["BODY", "IMG", "IFRAME"].includes(node.tagName)) node._hasOnUnload = true;
|
||||
((node2, thisObj) => {
|
||||
node2.addEventListener(realAttrName.slice(2), (e) => {
|
||||
_runCode(tpl, { event: e, thisNode: node2, ...e.detail || {} }, thisObj || node2, node2._ref || {});
|
||||
});
|
||||
})(node, scanObj.thisObj);
|
||||
} else {
|
||||
if (realAttrName === "bind") {
|
||||
node.addEventListener(node.tagName === "TEXTAREA" || node.isContentEditable || node.type === "text" || node.type === "password" ? "input" : "change", (e) => {
|
||||
let newVal = node.isContentEditable ? e.target.innerHTML : node.type === "checkbox" ? e.target.checked : e.target.files || e.target.value || e.detail;
|
||||
setNoWriteBack(node);
|
||||
setDisableRunCodeError(true);
|
||||
if (node.type === "checkbox" && node._checkboxMultiMode) {
|
||||
_runCode(`!!checked ? (!${tpl}.includes(val) && ${tpl}.push(val)) : (index = ${tpl}.indexOf(val), index > -1 && ${tpl}.splice(index, 1))`, { val: node.value, checked: newVal, thisNode: node }, scanObj.thisObj || node, node._ref || {});
|
||||
} else {
|
||||
_runCode(`${tpl} = val`, { val: newVal, thisNode: node }, scanObj.thisObj || node, node._ref || {});
|
||||
}
|
||||
setDisableRunCodeError(false);
|
||||
setNoWriteBack(null);
|
||||
});
|
||||
} else if (realAttrName === "text" && !tpl) {
|
||||
tpl = node.textContent;
|
||||
node.textContent = "";
|
||||
}
|
||||
if (tpl) {
|
||||
tpl = _translate(tpl);
|
||||
_initBinding({ node, attr: realAttrName, tpl, exp });
|
||||
}
|
||||
}
|
||||
}
|
||||
});
|
||||
if (node._hasOnLoad || node._componentInitialized) {
|
||||
((node2) => {
|
||||
Promise.resolve().then(() => node2.dispatchEvent(new Event("load", { bubbles: false })));
|
||||
})(node);
|
||||
}
|
||||
if (node._hasOnUpdate) node.dispatchEvent(new Event("update", { bubbles: false }));
|
||||
if (node._thisObj) scanObj.thisObj = node._thisObj;
|
||||
};
|
||||
const _scanTree = (node, scanObj = {}) => {
|
||||
if (node.nodeType === 3) {
|
||||
const translated = _translate(node.textContent);
|
||||
if (translated !== node.textContent) node.textContent = translated;
|
||||
return;
|
||||
}
|
||||
if (node.nodeType !== 1) return;
|
||||
Array.from(node.attributes).forEach((attr) => {
|
||||
if (!attr.name.startsWith("$") && !attr.name.startsWith("st-") && !attr.name.startsWith(".")) {
|
||||
const translated = _translate(attr.value);
|
||||
if (translated !== attr.value) attr.value = translated;
|
||||
}
|
||||
});
|
||||
if (node.tagName !== "TEMPLATE" && (node.hasAttribute("$if") || node.hasAttribute("$each") || node.hasAttribute("st-if") || node.hasAttribute("st-each"))) {
|
||||
const template = document.createElement("TEMPLATE");
|
||||
const attrs = Array.from(node.attributes).filter((attr) => ["$if", "$each", "st-if", "st-each"].includes(attr.name) || (node.hasAttribute("$each") || node.hasAttribute("st-each")) && ["as", "index"].includes(attr.name));
|
||||
attrs.forEach((attr) => {
|
||||
template.setAttribute(attr.name, attr.value);
|
||||
node.removeAttribute(attr.name);
|
||||
});
|
||||
node.parentNode.insertBefore(template, node);
|
||||
template.content.appendChild(node);
|
||||
template._ref = node._ref;
|
||||
node = template;
|
||||
return;
|
||||
}
|
||||
if (node.tagName === "TEMPLATE" && (node.hasAttribute("$if") || node.hasAttribute("st-if")) && (node.hasAttribute("$each") || node.hasAttribute("st-each"))) {
|
||||
const template = document.createElement("TEMPLATE");
|
||||
const attrs = Array.from(node.attributes).filter((attr2) => ["$if", "$each", "st-if", "st-each"].includes(attr2.name));
|
||||
const attr = attrs[attrs.length - 1];
|
||||
template.setAttribute(attr.name, attr.value);
|
||||
node.removeAttribute(attr.name);
|
||||
if (attr.name === "$each" || attr.name === "st-each") {
|
||||
Array.from(node.attributes).filter((attr2) => ["as", "index"].includes(attr2.name)).forEach((attr2) => {
|
||||
template.setAttribute(attr2.name, attr2.value);
|
||||
node.removeAttribute(attr2.name);
|
||||
});
|
||||
}
|
||||
Array.from(node.content.childNodes).forEach((child) => {
|
||||
template.content.appendChild(child);
|
||||
});
|
||||
node.content.appendChild(template);
|
||||
template._ref = node._ref;
|
||||
}
|
||||
if (node.tagName === "IMG" && (node.hasAttribute("src") || node.hasAttribute("_src") || node.hasAttribute("$src"))) {
|
||||
const imgNode = node;
|
||||
Promise.resolve().then(() => {
|
||||
const url = imgNode.getAttribute("_src") || imgNode.getAttribute("src");
|
||||
if (url) fetch(url, { cache: "force-cache" }).then((r) => r.text()).then((svgText) => {
|
||||
const realSvg = new DOMParser().parseFromString(svgText, "image/svg+xml").querySelector("svg");
|
||||
if (realSvg) {
|
||||
Array.from(imgNode.attributes).forEach((attr) => realSvg.setAttribute(attr.name, attr.value));
|
||||
imgNode.replaceWith(realSvg);
|
||||
}
|
||||
});
|
||||
});
|
||||
}
|
||||
if (node._thisObj !== void 0) scanObj.thisObj = node._thisObj || null;
|
||||
if (scanObj.thisObj === void 0) {
|
||||
let curr = node;
|
||||
while (curr && curr._thisObj === void 0) curr = curr.parentNode;
|
||||
scanObj.thisObj = curr ? curr._thisObj : null;
|
||||
}
|
||||
if (node._ref === void 0) {
|
||||
let curr = node;
|
||||
while (curr && curr._ref === void 0) curr = curr.parentNode;
|
||||
node._ref = curr ? { ...curr._ref } : {};
|
||||
}
|
||||
if (scanObj.extendVars === void 0) scanObj.extendVars = {};
|
||||
if (node._ref !== void 0) {
|
||||
Object.assign(node._ref, scanObj.extendVars);
|
||||
scanObj.extendVars = { ...node._ref };
|
||||
}
|
||||
_parseNode(node, scanObj);
|
||||
const nodes = [...node.childNodes || []];
|
||||
scanObj.extendVars = node._ref || scanObj.extendVars;
|
||||
nodes.forEach((child) => _scanTree(child, { thisObj: scanObj.thisObj, extendVars: { ...node._ref } }));
|
||||
};
|
||||
const _unbindTree = (node) => {
|
||||
if (node.nodeType !== 1) return;
|
||||
if (node._hasOnUnload) node.dispatchEvent(new Event("unload", { bubbles: false }));
|
||||
if (node._states) {
|
||||
node._states.forEach((stateMappings) => {
|
||||
for (const [key, bindingSet] of stateMappings) {
|
||||
for (const binding of bindingSet) {
|
||||
if (binding.node === node) bindingSet.delete(binding);
|
||||
}
|
||||
}
|
||||
});
|
||||
}
|
||||
node.childNodes && node.childNodes.forEach((child) => _unbindTree(child));
|
||||
};
|
||||
const RefreshState = _scanTree;
|
||||
const _components = /* @__PURE__ */ new Map();
|
||||
const _pendingTemplates = [];
|
||||
const Component = {
|
||||
getTemplate: (name) => document.querySelector(`template[component="${name.toUpperCase()}"]`),
|
||||
register: (name, setupFunc, templateNode = null, ...globalNodes) => {
|
||||
_components.set(name.toUpperCase(), setupFunc);
|
||||
if (document.readyState !== "loading") Component._addTemplate(name, templateNode, globalNodes);
|
||||
else _pendingTemplates.push([name, templateNode, globalNodes]);
|
||||
},
|
||||
exists: (name) => _components.has(name.toUpperCase()),
|
||||
getSetupFunction: (name) => _components.get(name.toUpperCase()),
|
||||
_addTemplate: (name, templateNode, globalNodes) => {
|
||||
if (templateNode) {
|
||||
const template = document.createElement("TEMPLATE");
|
||||
template.setAttribute("component", name.toUpperCase());
|
||||
template.content.appendChild(templateNode);
|
||||
document.body.appendChild(template);
|
||||
}
|
||||
if (globalNodes) globalNodes.forEach((node) => document.body.appendChild(node));
|
||||
},
|
||||
_initPending: () => {
|
||||
_pendingTemplates.forEach(([name, templateNode, globalNodes]) => Component._addTemplate(name, templateNode, globalNodes));
|
||||
_pendingTemplates.length = 0;
|
||||
}
|
||||
};
|
||||
function _mergeNode(from, to, scanObj, exists = {}) {
|
||||
Array.from(from.attributes).forEach((attr) => attr.name !== "class" && to.setAttribute(attr.name, attr.value));
|
||||
to.classList.add(...from.classList);
|
||||
Array.from(from.childNodes).forEach((child) => to.appendChild(child));
|
||||
if (Component.exists(from.tagName)) _makeComponent(from.tagName, to, scanObj, exists);
|
||||
}
|
||||
function _makeComponent(name, node, scanObj, exists = {}) {
|
||||
if (exists[name]) return;
|
||||
exists[name] = true;
|
||||
if (scanObj.thisObj) Array.from(node.attributes).forEach((attr) => {
|
||||
if ((attr.name.startsWith("$") || attr.name.startsWith("st-")) && attr.value.includes("this.")) attr.value = attr.value.replace(/\bthis\./g, "this.parent.");
|
||||
});
|
||||
const componentFunc = Component.getSetupFunction(name);
|
||||
const slots = {};
|
||||
Array.from(node.childNodes).forEach((child) => {
|
||||
if (child.nodeType === Node.ELEMENT_NODE && child.hasAttribute("slot")) {
|
||||
slots[child.getAttribute("slot")] = child;
|
||||
child.removeAttribute("slot");
|
||||
}
|
||||
});
|
||||
node.innerHTML = "";
|
||||
node.state = NewState(node.state || {});
|
||||
const template = Component.getTemplate(name);
|
||||
if (template) {
|
||||
const tplnode = template.content.cloneNode(true);
|
||||
if (tplnode.childNodes.length) {
|
||||
const rootNode = tplnode.children[0];
|
||||
_mergeNode(rootNode, node, scanObj, exists);
|
||||
$$(node, "[slot-id]").forEach((placeholder) => {
|
||||
const slotName = placeholder.getAttribute("slot-id");
|
||||
if (slots[slotName]) {
|
||||
placeholder.removeAttribute("slot-id");
|
||||
placeholder.innerHTML = "";
|
||||
_mergeNode(slots[slotName], placeholder, scanObj, exists);
|
||||
}
|
||||
});
|
||||
}
|
||||
}
|
||||
if (componentFunc) componentFunc(node);
|
||||
}
|
||||
const Util = {
|
||||
clone: window.structuredClone || ((obj) => JSON.parse(JSON.stringify(obj))),
|
||||
base64: (str) => btoa(String.fromCharCode(...new TextEncoder().encode(str))),
|
||||
unbase64: (str) => new TextDecoder().decode(Uint8Array.from(atob(str), (c) => c.charCodeAt(0))),
|
||||
urlbase64: (str) => Util.base64(str).replace(/[+/=]/g, (m) => ({ "+": "-", "/": "", "=": "" })[m]),
|
||||
unurlbase64: (str) => Util.unbase64(str.replace(/[-_.]/g, (m) => ({ "-": "+", "_": "/", ".": "=" })[m]).padEnd(Math.ceil(str.length / 4) * 4, "=")),
|
||||
safeJson: (str) => {
|
||||
try {
|
||||
return JSON.parse(str);
|
||||
} catch {
|
||||
return null;
|
||||
}
|
||||
},
|
||||
updateDefaults: (obj, defaults) => {
|
||||
for (const k in defaults) if (obj[k] === void 0) obj[k] = defaults[k];
|
||||
},
|
||||
copyFunction: (toObj, fromObj, ...funcNames) => {
|
||||
funcNames.forEach((name) => toObj[name] = fromObj[name].bind(fromObj));
|
||||
},
|
||||
getFunctionBody: (fn) => {
|
||||
const code = fn.toString();
|
||||
return code.slice(code.indexOf("{") + 1, code.lastIndexOf("}")).trim();
|
||||
},
|
||||
makeDom: (html) => {
|
||||
if (html.includes(">\n")) html = html.replace(/>\s+</g, "><").trim();
|
||||
const node = document.createElement("div");
|
||||
node.innerHTML = html;
|
||||
return node.children[0];
|
||||
},
|
||||
newAvg: () => {
|
||||
let total = 0, count = 0, avg = 0;
|
||||
return {
|
||||
add: (v) => {
|
||||
total += v;
|
||||
count++;
|
||||
return avg = total / count;
|
||||
},
|
||||
get: () => avg,
|
||||
clear: () => {
|
||||
total = 0, count = 0, avg = 0;
|
||||
}
|
||||
};
|
||||
},
|
||||
newTimeCount: () => {
|
||||
let startTime = 0, total = 0, count = 0;
|
||||
return {
|
||||
start: () => startTime = (/* @__PURE__ */ new Date()).getTime(),
|
||||
end: () => {
|
||||
const endTime = (/* @__PURE__ */ new Date()).getTime();
|
||||
const left = endTime - startTime;
|
||||
startTime = endTime;
|
||||
total += left;
|
||||
count++;
|
||||
return left;
|
||||
},
|
||||
avg: () => total / count
|
||||
};
|
||||
}
|
||||
};
|
||||
globalThis.Util = Util;
|
||||
let _hashParams = new URLSearchParams(((_a = window.location.hash) == null ? void 0 : _a.substring(1)) || "");
|
||||
const Hash = NewState({}, (k) => Util.safeJson(_hashParams.get(k)), (k, v) => {
|
||||
const oldStr = _hashParams.get(k);
|
||||
const newStr = v === void 0 ? void 0 : JSON.stringify(v);
|
||||
if (oldStr === newStr || oldStr === null && newStr === void 0) return;
|
||||
v === void 0 ? _hashParams.delete(k) : _hashParams.set(k, newStr);
|
||||
window.location.hash = "#" + _hashParams.toString();
|
||||
});
|
||||
if (typeof window !== "undefined") {
|
||||
window.addEventListener("hashchange", () => {
|
||||
var _a2;
|
||||
const oldHashParams = _hashParams;
|
||||
_hashParams = new URLSearchParams(((_a2 = window.location.hash) == null ? void 0 : _a2.substring(1)) || "");
|
||||
_hashParams.forEach((v, k) => {
|
||||
if (oldHashParams.get(k) !== v) Hash[k] = Util.safeJson(v);
|
||||
});
|
||||
oldHashParams.forEach((v, k) => {
|
||||
if (_hashParams.get(k) === void 0) Hash[k] = void 0;
|
||||
});
|
||||
});
|
||||
}
|
||||
const LocalStorage = NewState({}, (k) => Util.safeJson(localStorage.getItem(k)), (k, v) => {
|
||||
const oldStr = localStorage.getItem(k);
|
||||
const newStr = v === void 0 ? void 0 : JSON.stringify(v);
|
||||
if (oldStr === newStr || oldStr === null && newStr === void 0) return;
|
||||
v === void 0 ? localStorage.removeItem(k) : localStorage.setItem(k, newStr);
|
||||
});
|
||||
globalThis.Hash = Hash;
|
||||
globalThis.LocalStorage = LocalStorage;
|
||||
if (typeof document !== "undefined") {
|
||||
const init = () => {
|
||||
Component._initPending();
|
||||
new MutationObserver((mutations) => {
|
||||
mutations.forEach((mutation) => {
|
||||
mutation.addedNodes.forEach((newNode) => {
|
||||
if (newNode.isConnected) _scanTree(newNode);
|
||||
});
|
||||
mutation.removedNodes.forEach((oldNode) => _unbindTree(oldNode));
|
||||
});
|
||||
}).observe(document.documentElement, { childList: true, subtree: true });
|
||||
const htmlNode = document.documentElement;
|
||||
if (!htmlNode.hasAttribute("$data-bs-theme") && !htmlNode.hasAttribute("data-bs-theme")) {
|
||||
htmlNode.setAttribute("$data-bs-theme", "LocalStorage.darkMode?'dark':'light'");
|
||||
}
|
||||
_scanTree(document.documentElement);
|
||||
};
|
||||
if (document.readyState !== "loading") init();
|
||||
else document.addEventListener("DOMContentLoaded", init, true);
|
||||
}
|
||||
export {
|
||||
$,
|
||||
$$,
|
||||
Component,
|
||||
Hash,
|
||||
LocalStorage,
|
||||
NewState,
|
||||
RefreshState,
|
||||
SetTranslator,
|
||||
Util,
|
||||
_scanTree,
|
||||
_unbindTree
|
||||
};
|
||||
1
dist/state.min.js
vendored
Normal file
1
dist/state.min.js
vendored
Normal file
File diff suppressed because one or more lines are too long
1138
package-lock.json
generated
Normal file
1138
package-lock.json
generated
Normal file
File diff suppressed because it is too large
Load Diff
22
package.json
Normal file
22
package.json
Normal file
@ -0,0 +1,22 @@
|
||||
{
|
||||
"name": "@web/state",
|
||||
"version": "1.0.0",
|
||||
|
||||
"type": "module",
|
||||
"main": "dist/state.js",
|
||||
"module": "dist/state.js",
|
||||
"files": [
|
||||
"dist"
|
||||
],
|
||||
"scripts": {
|
||||
"dev": "vite",
|
||||
"build": "vite build",
|
||||
"test": "playwright test"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@playwright/test": "^1.40.0",
|
||||
"@rollup/plugin-terser": "^1.0.0",
|
||||
"terser": "^5.47.1",
|
||||
"vite": "^5.0.0"
|
||||
}
|
||||
}
|
||||
14
playwright.config.js
Normal file
14
playwright.config.js
Normal file
@ -0,0 +1,14 @@
|
||||
import { defineConfig } from '@playwright/test';
|
||||
|
||||
export default defineConfig({
|
||||
testDir: './test',
|
||||
testMatch: '**/*.spec.js',
|
||||
use: {
|
||||
baseURL: 'http://localhost:8081',
|
||||
},
|
||||
webServer: {
|
||||
command: 'npx vite --port 8081',
|
||||
url: 'http://localhost:8081',
|
||||
reuseExistingServer: !process.env.CI,
|
||||
},
|
||||
});
|
||||
71
src/component.js
Normal file
71
src/component.js
Normal file
@ -0,0 +1,71 @@
|
||||
// src/component.js
|
||||
import { NewState } from './observer.js';
|
||||
import { $, $$ } from './dom-utils.js';
|
||||
import { _scanTree } from './dom.js';
|
||||
|
||||
const _components = new Map();
|
||||
const _pendingTemplates = [];
|
||||
|
||||
export const Component = {
|
||||
getTemplate: name => document.querySelector(`template[component="${name.toUpperCase()}"]`),
|
||||
register: (name, setupFunc, templateNode = null, ...globalNodes) => {
|
||||
_components.set(name.toUpperCase(), setupFunc);
|
||||
if (document.readyState !== 'loading') Component._addTemplate(name, templateNode, globalNodes);
|
||||
else _pendingTemplates.push([name, templateNode, globalNodes]);
|
||||
},
|
||||
exists: (name) => _components.has(name.toUpperCase()),
|
||||
getSetupFunction: (name) => _components.get(name.toUpperCase()),
|
||||
_addTemplate: (name, templateNode, globalNodes) => {
|
||||
if (templateNode) {
|
||||
const template = document.createElement('TEMPLATE');
|
||||
template.setAttribute('component', name.toUpperCase());
|
||||
template.content.appendChild(templateNode);
|
||||
document.body.appendChild(template);
|
||||
}
|
||||
if (globalNodes) globalNodes.forEach(node => document.body.appendChild(node));
|
||||
},
|
||||
_initPending: () => {
|
||||
_pendingTemplates.forEach(([name, templateNode, globalNodes]) => Component._addTemplate(name, templateNode, globalNodes));
|
||||
_pendingTemplates.length = 0;
|
||||
}
|
||||
};
|
||||
|
||||
export function _mergeNode(from, to, scanObj, exists = {}) {
|
||||
Array.from(from.attributes).forEach(attr => attr.name !== 'class' && to.setAttribute(attr.name, attr.value));
|
||||
to.classList.add(...from.classList);
|
||||
Array.from(from.childNodes).forEach(child => to.appendChild(child));
|
||||
if (Component.exists(from.tagName)) _makeComponent(from.tagName, to, scanObj, exists);
|
||||
}
|
||||
|
||||
export function _makeComponent(name, node, scanObj, exists = {}) {
|
||||
if (exists[name]) return;
|
||||
exists[name] = true;
|
||||
if (scanObj.thisObj) Array.from(node.attributes).forEach(attr => { if ((attr.name.startsWith('$') || attr.name.startsWith('st-')) && attr.value.includes('this.')) attr.value = attr.value.replace(/\bthis\./g, 'this.parent.'); });
|
||||
const componentFunc = Component.getSetupFunction(name);
|
||||
const slots = {};
|
||||
Array.from(node.childNodes).forEach(child => {
|
||||
if (child.nodeType === Node.ELEMENT_NODE && child.hasAttribute('slot')) {
|
||||
slots[child.getAttribute('slot')] = child;
|
||||
child.removeAttribute('slot');
|
||||
}
|
||||
});
|
||||
node.innerHTML = '';
|
||||
node.state = NewState(node.state || {});
|
||||
const template = Component.getTemplate(name);
|
||||
if (template) {
|
||||
const tplnode = template.content.cloneNode(true);
|
||||
if (tplnode.childNodes.length) {
|
||||
const rootNode = tplnode.children[0];
|
||||
_mergeNode(rootNode, node, scanObj, exists);
|
||||
$$(node, '[slot-id]').forEach(placeholder => {
|
||||
const slotName = placeholder.getAttribute('slot-id');
|
||||
if (slots[slotName]) {
|
||||
placeholder.removeAttribute('slot-id');
|
||||
placeholder.innerHTML = '';
|
||||
_mergeNode(slots[slotName], placeholder, scanObj, exists);
|
||||
}
|
||||
});
|
||||
}
|
||||
}
|
||||
if (componentFunc) componentFunc(node);
|
||||
}
|
||||
24
src/core.js
Normal file
24
src/core.js
Normal file
@ -0,0 +1,24 @@
|
||||
// src/core.js
|
||||
let _disableRunCodeError = false;
|
||||
|
||||
export function setDisableRunCodeError(value) {
|
||||
_disableRunCodeError = value;
|
||||
}
|
||||
|
||||
export function _runCode(code, vars, thisObj, extendVars) {
|
||||
const argKeys = [...Object.keys(extendVars || {}), ...Object.keys(vars || {})];
|
||||
const argValues = [...Object.values(extendVars || {}), ...Object.values(vars || {})];
|
||||
argKeys.push(code);
|
||||
try {
|
||||
const r = new Function(...argKeys).apply(thisObj, argValues);
|
||||
return r;
|
||||
} catch (e) {
|
||||
if (!_disableRunCodeError) console.error(e, extendVars, [code, extendVars, vars, thisObj]);
|
||||
return null;
|
||||
}
|
||||
}
|
||||
|
||||
export function _returnCode(code, vars, thisObj, extendVars) {
|
||||
if (code.includes('${')) return _runCode('return `' + code + '`', vars, thisObj, extendVars);
|
||||
else return _runCode('return ' + code, vars, thisObj, extendVars);
|
||||
}
|
||||
3
src/dom-utils.js
Normal file
3
src/dom-utils.js
Normal file
@ -0,0 +1,3 @@
|
||||
// src/dom-utils.js
|
||||
export const $ = (a, b) => b ? a.querySelector(b) : document.querySelector(a);
|
||||
export const $$ = (a, b) => b ? a.querySelectorAll(b) : document.querySelectorAll(a);
|
||||
380
src/dom.js
Normal file
380
src/dom.js
Normal file
@ -0,0 +1,380 @@
|
||||
// src/dom.js
|
||||
import { _runCode, _returnCode, setDisableRunCodeError } from './core.js';
|
||||
import { getActiveBinding, setActiveBinding, getNoWriteBack, setNoWriteBack, NewState, onNotifyUpdate } from './observer.js';
|
||||
import { Component, _makeComponent, _mergeNode } from './component.js';
|
||||
import { $, $$ } from './dom-utils.js';
|
||||
|
||||
let _translator = (text) => text;
|
||||
export const SetTranslator = (fn) => _translator = fn;
|
||||
|
||||
const _translate = (text) => {
|
||||
if (!text || typeof text !== 'string') return text;
|
||||
return text.replace(/\{#(.+?)#\}/g, (m, content) => {
|
||||
const parts = content.split('||').map(s => s.trim());
|
||||
const rawText = parts[0];
|
||||
const args = {};
|
||||
if (parts.length > 1) {
|
||||
const matches = rawText.match(/\{(.+?)\}/g);
|
||||
if (matches) matches.forEach((match, i) => {
|
||||
const key = match.substring(1, match.length - 1);
|
||||
args[key] = parts[i + 1] || '';
|
||||
});
|
||||
}
|
||||
return _translator(rawText, args);
|
||||
});
|
||||
};
|
||||
|
||||
if (typeof document !== 'undefined') {
|
||||
try {
|
||||
document.createElement('div').setAttribute('$t', '1');
|
||||
} catch (e) {
|
||||
const originalSetAttribute = Element.prototype.setAttribute;
|
||||
Element.prototype.setAttribute = function (name, value) {
|
||||
if (!name.startsWith('$')) return originalSetAttribute.call(this, name, value);
|
||||
return originalSetAttribute.call(this, 'st-' + name.substring(1), value);
|
||||
};
|
||||
}
|
||||
}
|
||||
|
||||
export { $, $$ };
|
||||
|
||||
onNotifyUpdate((binding) => _updateBinding(binding));
|
||||
|
||||
export function _clearRenderedNodes(node) {
|
||||
if (node._renderedNodes) node._renderedNodes.forEach(nodes => {
|
||||
nodes.forEach(child => {
|
||||
child.remove();
|
||||
if (child._renderedNodes) _clearRenderedNodes(child);
|
||||
});
|
||||
});
|
||||
}
|
||||
|
||||
export function _updateBinding(binding) {
|
||||
const node = binding.node;
|
||||
const tpl = binding.tpl;
|
||||
const exp = binding.exp;
|
||||
|
||||
setActiveBinding(binding);
|
||||
let result = exp ? (tpl ? _returnCode(tpl, { thisNode: node }, node._thisObj || node, node._ref || null) : null) : tpl;
|
||||
setActiveBinding(null);
|
||||
|
||||
if (binding.prop) {
|
||||
const prop = binding.prop;
|
||||
let o = node;
|
||||
for (let i = 0; i < prop.length - 1; i++) {
|
||||
if (!prop[i]) continue;
|
||||
if (o[prop[i]] == null) o[prop[i]] = {};
|
||||
o = o[prop[i]];
|
||||
if (typeof o !== 'object') break;
|
||||
}
|
||||
if (typeof o === 'object' && o !== null) {
|
||||
const resultIsObject = typeof result === 'object' && result != null && !Array.isArray(result);
|
||||
const lk = prop[prop.length - 1];
|
||||
if (lk) {
|
||||
if (resultIsObject && o[lk] == null) o[lk] = {};
|
||||
const lo = o[lk];
|
||||
if (typeof lo === 'object' && lo != null && lo.__watch) Object.assign(lo, result);
|
||||
else o[lk] = result;
|
||||
} else if (resultIsObject && typeof o === 'object') {
|
||||
Object.assign(o, result);
|
||||
}
|
||||
}
|
||||
} else if (binding.attr) {
|
||||
const attr = binding.attr;
|
||||
if (attr === 'if') {
|
||||
if (result) {
|
||||
if (!node._renderedNodes || node._renderedNodes.length === 0) {
|
||||
node._children.forEach(child => {
|
||||
node.parentNode.insertBefore(child, node);
|
||||
child._ref = { ...node._ref };
|
||||
});
|
||||
node._renderedNodes = [node._children];
|
||||
}
|
||||
} else {
|
||||
_clearRenderedNodes(node);
|
||||
node._renderedNodes = [];
|
||||
}
|
||||
} else if (attr === 'each') {
|
||||
if (result && typeof result === 'object') {
|
||||
const asName = node.getAttribute('as') || 'item';
|
||||
const indexName = node.getAttribute('index') || 'index';
|
||||
let keys, getVal;
|
||||
if (result instanceof Map) {
|
||||
keys = Array.from(result.keys());
|
||||
getVal = k => result.get(k);
|
||||
} else if (typeof result[Symbol.iterator] === 'function') {
|
||||
const arr = Array.isArray(result) ? result : Array.from(result);
|
||||
keys = new Array(arr.length);
|
||||
for (let i = 0; i < arr.length; i++) keys[i] = i;
|
||||
getVal = k => arr[k];
|
||||
} else {
|
||||
keys = Object.keys(result);
|
||||
getVal = k => result[k];
|
||||
}
|
||||
keys.forEach((k, i) => {
|
||||
const item = getVal(k);
|
||||
if (node._renderedNodes && i < node._renderedNodes.length) {
|
||||
node._renderedNodes[i].forEach(child => {
|
||||
child._ref[indexName] = k;
|
||||
child._ref[asName] = item;
|
||||
_scanTree(child);
|
||||
});
|
||||
} else {
|
||||
const newNodes = [];
|
||||
if (!node._renderedNodes) node._renderedNodes = [];
|
||||
node._children.forEach(child => {
|
||||
const cloned = child.cloneNode(true);
|
||||
cloned._ref = { ...node._ref };
|
||||
cloned._ref[indexName] = k;
|
||||
cloned._ref[asName] = item;
|
||||
cloned._thisObj = node._thisObj;
|
||||
node.parentNode.insertBefore(cloned, node);
|
||||
newNodes.push(cloned);
|
||||
});
|
||||
node._renderedNodes.push(newNodes);
|
||||
}
|
||||
});
|
||||
while (node._renderedNodes && node._renderedNodes.length > keys.length) {
|
||||
node._renderedNodes[node._renderedNodes.length - 1].forEach(child => {
|
||||
_clearRenderedNodes(child);
|
||||
child.remove();
|
||||
});
|
||||
node._renderedNodes.pop();
|
||||
}
|
||||
} else {
|
||||
_clearRenderedNodes(node);
|
||||
node._renderedNodes = [];
|
||||
}
|
||||
} else if (attr === 'bind') {
|
||||
if (['INPUT', 'SELECT', 'TEXTAREA'].includes(node.tagName)) {
|
||||
if (!node.hasAttribute('autocomplete')) node.setAttribute('autocomplete', 'off');
|
||||
}
|
||||
if (node.type === 'checkbox') {
|
||||
if (node.value !== 'on' && !result) {
|
||||
_runCode(`${tpl} = []`, { thisNode: node }, node._thisObj || node, node._ref || {});
|
||||
result = [];
|
||||
}
|
||||
node._checkboxMultiMode = result instanceof Array;
|
||||
const isChecked = result instanceof Array ? result.includes(node.value) : !!result;
|
||||
if (node.checked !== isChecked) node.checked = isChecked;
|
||||
} else if (node.type === 'radio') {
|
||||
if (node.checked !== (node.value === String(result ?? ''))) node.checked = (node.value === String(result ?? ''));
|
||||
} else if ('value' in node && node.type !== 'file') {
|
||||
Promise.resolve().then(() => {
|
||||
if (node.value !== String(result ?? '')) node.value = result;
|
||||
});
|
||||
} else if (node.isContentEditable) {
|
||||
if (node.innerHTML !== String(result ?? '')) node.innerHTML = result;
|
||||
}
|
||||
node.dispatchEvent(new CustomEvent('bind', { bubbles: false, detail: result }));
|
||||
} else {
|
||||
if (['checked', 'disabled', 'readonly'].includes(attr)) result = !!result;
|
||||
if (typeof result === 'boolean') {
|
||||
result ? node.setAttribute(attr, '') : node.removeAttribute(attr);
|
||||
} else if (result !== undefined) {
|
||||
if (typeof result !== 'string') result = JSON.stringify(result);
|
||||
if (attr === 'text') {
|
||||
node.textContent = result ?? '';
|
||||
} else if (attr === 'html') {
|
||||
node.innerHTML = result ?? '';
|
||||
} else if (node.tagName === 'IMG' && attr === 'src' && result.includes('.svg')) {
|
||||
node.setAttribute('_src', result ?? '');
|
||||
} else {
|
||||
node.setAttribute(attr, result ?? '');
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
export const _initBinding = (binding) => {
|
||||
if (!binding.node._bindings) binding.node._bindings = [];
|
||||
binding.node._bindings.push({ attr: binding.attr, prop: binding.prop, tpl: binding.tpl, exp: binding.exp });
|
||||
_updateBinding(binding);
|
||||
};
|
||||
|
||||
export const _parseNode = (node, scanObj) => {
|
||||
if (node._bindings) {
|
||||
node._states = new Set();
|
||||
node._bindings.forEach(bindingData => {
|
||||
const binding = { node: node, ...bindingData };
|
||||
_updateBinding(binding);
|
||||
});
|
||||
if (node._hasOnUpdate) node.dispatchEvent(new Event('update', { bubbles: false }));
|
||||
return;
|
||||
}
|
||||
|
||||
if (Component.exists(node.tagName) && !node._componentInitialized) {
|
||||
node._componentInitialized = true;
|
||||
_makeComponent(node.tagName, node, scanObj);
|
||||
$$(node, '[slot-id]').forEach(placeholder => placeholder.removeAttribute('slot-id'));
|
||||
if (!node._thisObj) node._thisObj = node;
|
||||
}
|
||||
|
||||
let attrs = [];
|
||||
if (node.tagName === 'TEMPLATE') {
|
||||
node._children = [...node.content.childNodes];
|
||||
node._renderedNodes = [];
|
||||
if (node.hasAttribute('$if')) attrs.push(node.getAttributeNode('$if'));
|
||||
else if (node.hasAttribute('$each')) attrs.push(node.getAttributeNode('$each'));
|
||||
else if (node.hasAttribute('st-if')) attrs.push(node.getAttributeNode('st-if'));
|
||||
else if (node.hasAttribute('st-each')) attrs.push(node.getAttributeNode('st-each'));
|
||||
} else {
|
||||
attrs = Array.from(node.attributes).filter(attr => (attr.name.startsWith('$') || attr.name.startsWith('st-')) && !['$if', '$each', 'st-if', 'st-each'].includes(attr.name) || attr.name.includes('.'));
|
||||
}
|
||||
|
||||
if (node._thisObj && scanObj.thisObj) node._thisObj.parent = scanObj.thisObj;
|
||||
if (!node._thisObj) node._thisObj = scanObj.thisObj || null;
|
||||
if (!node._ref) node._ref = scanObj.extendVars || {};
|
||||
node._states = new Set();
|
||||
|
||||
attrs.forEach(attr => {
|
||||
const exp = attr.name.startsWith('$') || attr.name.startsWith('st-');
|
||||
const realAttrName = exp ? attr.name.slice(attr.name.startsWith('$') ? 1 : 3) : attr.name;
|
||||
let tpl = attr.value;
|
||||
node.removeAttribute(attr.name);
|
||||
if (realAttrName.startsWith('.')) {
|
||||
_initBinding({ node: node, prop: realAttrName.split('.'), tpl, exp });
|
||||
} else {
|
||||
if (realAttrName.startsWith('on')) {
|
||||
if (realAttrName === 'onupdate') node._hasOnUpdate = true;
|
||||
if (realAttrName === 'onload' && !['BODY', 'IMG', 'IFRAME'].includes(node.tagName)) node._hasOnLoad = true;
|
||||
if (realAttrName === 'onunload' && !['BODY', 'IMG', 'IFRAME'].includes(node.tagName)) node._hasOnUnload = true;
|
||||
((node, thisObj) => {
|
||||
node.addEventListener(realAttrName.slice(2), (e) => {
|
||||
_runCode(tpl, { event: e, thisNode: node, ...(e.detail || {}) }, thisObj || node, node._ref || {});
|
||||
});
|
||||
})(node, scanObj.thisObj);
|
||||
} else {
|
||||
if (realAttrName === 'bind') {
|
||||
node.addEventListener(node.tagName === 'TEXTAREA' || node.isContentEditable || node.type === 'text' || node.type === 'password' ? 'input' : 'change', (e) => {
|
||||
let newVal = node.isContentEditable ? e.target.innerHTML : (node.type === 'checkbox' ? e.target.checked : e.target.files || e.target.value || e.detail);
|
||||
setNoWriteBack(node);
|
||||
setDisableRunCodeError(true);
|
||||
if (node.type === 'checkbox' && node._checkboxMultiMode) {
|
||||
_runCode(`!!checked ? (!${tpl}.includes(val) && ${tpl}.push(val)) : (index = ${tpl}.indexOf(val), index > -1 && ${tpl}.splice(index, 1))`, { val: node.value, checked: newVal, thisNode: node }, scanObj.thisObj || node, node._ref || {});
|
||||
} else {
|
||||
_runCode(`${tpl} = val`, { val: newVal, thisNode: node }, scanObj.thisObj || node, node._ref || {});
|
||||
}
|
||||
setDisableRunCodeError(false);
|
||||
setNoWriteBack(null);
|
||||
});
|
||||
} else if (realAttrName === 'text' && !tpl) {
|
||||
tpl = node.textContent;
|
||||
node.textContent = '';
|
||||
}
|
||||
if (tpl) {
|
||||
tpl = _translate(tpl);
|
||||
_initBinding({ node: node, attr: realAttrName, tpl, exp });
|
||||
}
|
||||
}
|
||||
}
|
||||
});
|
||||
if (node._hasOnLoad || node._componentInitialized) {
|
||||
(node => {
|
||||
Promise.resolve().then(() => node.dispatchEvent(new Event('load', { bubbles: false })));
|
||||
})(node);
|
||||
}
|
||||
if (node._hasOnUpdate) node.dispatchEvent(new Event('update', { bubbles: false }));
|
||||
if (node._thisObj) scanObj.thisObj = node._thisObj;
|
||||
};
|
||||
|
||||
export const _scanTree = (node, scanObj = {}) => {
|
||||
if (node.nodeType === 3) {
|
||||
const translated = _translate(node.textContent);
|
||||
if (translated !== node.textContent) node.textContent = translated;
|
||||
return;
|
||||
}
|
||||
if (node.nodeType !== 1) return;
|
||||
|
||||
Array.from(node.attributes).forEach(attr => {
|
||||
if (!attr.name.startsWith('$') && !attr.name.startsWith('st-') && !attr.name.startsWith('.')) {
|
||||
const translated = _translate(attr.value);
|
||||
if (translated !== attr.value) attr.value = translated;
|
||||
}
|
||||
});
|
||||
|
||||
if (node.tagName !== 'TEMPLATE' && (node.hasAttribute('$if') || node.hasAttribute('$each') || node.hasAttribute('st-if') || node.hasAttribute('st-each'))) {
|
||||
const template = document.createElement('TEMPLATE');
|
||||
const attrs = Array.from(node.attributes).filter(attr => ['$if', '$each', 'st-if', 'st-each'].includes(attr.name) || ((node.hasAttribute('$each') || node.hasAttribute('st-each')) && ['as', 'index'].includes(attr.name)));
|
||||
attrs.forEach(attr => {
|
||||
template.setAttribute(attr.name, attr.value);
|
||||
node.removeAttribute(attr.name);
|
||||
});
|
||||
node.parentNode.insertBefore(template, node);
|
||||
template.content.appendChild(node);
|
||||
template._ref = node._ref;
|
||||
node = template;
|
||||
return;
|
||||
}
|
||||
if (node.tagName === 'TEMPLATE' && (node.hasAttribute('$if') || node.hasAttribute('st-if')) && (node.hasAttribute('$each') || node.hasAttribute('st-each'))) {
|
||||
const template = document.createElement('TEMPLATE');
|
||||
const attrs = Array.from(node.attributes).filter(attr => ['$if', '$each', 'st-if', 'st-each'].includes(attr.name));
|
||||
const attr = attrs[attrs.length - 1];
|
||||
template.setAttribute(attr.name, attr.value);
|
||||
node.removeAttribute(attr.name);
|
||||
if (attr.name === '$each' || attr.name === 'st-each') {
|
||||
Array.from(node.attributes).filter(attr => ['as', 'index'].includes(attr.name)).forEach(attr => {
|
||||
template.setAttribute(attr.name, attr.value);
|
||||
node.removeAttribute(attr.name);
|
||||
});
|
||||
}
|
||||
Array.from(node.content.childNodes).forEach(child => {
|
||||
template.content.appendChild(child);
|
||||
});
|
||||
node.content.appendChild(template);
|
||||
template._ref = node._ref;
|
||||
}
|
||||
|
||||
if (node.tagName === 'IMG' && (node.hasAttribute('src') || node.hasAttribute('_src') || node.hasAttribute('$src'))) {
|
||||
const imgNode = node;
|
||||
Promise.resolve().then(() => {
|
||||
const url = imgNode.getAttribute('_src') || imgNode.getAttribute('src');
|
||||
if (url) fetch(url, { cache: 'force-cache' }).then(r => r.text()).then(svgText => {
|
||||
const realSvg = new DOMParser().parseFromString(svgText, "image/svg+xml").querySelector('svg');
|
||||
if (realSvg) {
|
||||
Array.from(imgNode.attributes).forEach(attr => realSvg.setAttribute(attr.name, attr.value));
|
||||
imgNode.replaceWith(realSvg);
|
||||
}
|
||||
});
|
||||
});
|
||||
}
|
||||
|
||||
if (node._thisObj !== undefined) scanObj.thisObj = node._thisObj || null;
|
||||
if (scanObj.thisObj === undefined) {
|
||||
let curr = node;
|
||||
while (curr && curr._thisObj === undefined) curr = curr.parentNode;
|
||||
scanObj.thisObj = curr ? curr._thisObj : null;
|
||||
}
|
||||
if (node._ref === undefined) {
|
||||
let curr = node;
|
||||
while (curr && curr._ref === undefined) curr = curr.parentNode;
|
||||
node._ref = curr ? { ...curr._ref } : {};
|
||||
}
|
||||
if (scanObj.extendVars === undefined) scanObj.extendVars = {};
|
||||
if (node._ref !== undefined) {
|
||||
Object.assign(node._ref, scanObj.extendVars);
|
||||
scanObj.extendVars = { ...node._ref };
|
||||
}
|
||||
_parseNode(node, scanObj);
|
||||
const nodes = [...(node.childNodes || [])];
|
||||
scanObj.extendVars = node._ref || scanObj.extendVars;
|
||||
nodes.forEach(child => _scanTree(child, { thisObj: scanObj.thisObj, extendVars: { ...node._ref } }));
|
||||
};
|
||||
|
||||
export const _unbindTree = (node) => {
|
||||
if (node.nodeType !== 1) return;
|
||||
if (node._hasOnUnload) node.dispatchEvent(new Event('unload', { bubbles: false }));
|
||||
if (node._states) {
|
||||
node._states.forEach(stateMappings => {
|
||||
for (const [key, bindingSet] of stateMappings) {
|
||||
for (const binding of bindingSet) {
|
||||
if (binding.node === node) bindingSet.delete(binding);
|
||||
}
|
||||
}
|
||||
});
|
||||
}
|
||||
node.childNodes && node.childNodes.forEach(child => _unbindTree(child));
|
||||
};
|
||||
|
||||
export const RefreshState = _scanTree;
|
||||
33
src/globals.js
Normal file
33
src/globals.js
Normal file
@ -0,0 +1,33 @@
|
||||
// src/globals.js
|
||||
import { NewState } from './observer.js';
|
||||
import { Util } from './utils.js';
|
||||
|
||||
// url hash 状态
|
||||
let _hashParams = new URLSearchParams(window.location.hash?.substring(1) || '')
|
||||
export const Hash = NewState({}, k => Util.safeJson(_hashParams.get(k)), (k, v) => {
|
||||
const oldStr = _hashParams.get(k)
|
||||
const newStr = v === undefined ? undefined : JSON.stringify(v)
|
||||
if (oldStr === newStr || (oldStr === null && newStr === undefined)) return
|
||||
v === undefined ? _hashParams.delete(k) : _hashParams.set(k, newStr)
|
||||
window.location.hash = '#' + _hashParams.toString()
|
||||
})
|
||||
|
||||
if (typeof window !== 'undefined') {
|
||||
window.addEventListener('hashchange', () => {
|
||||
const oldHashParams = _hashParams
|
||||
_hashParams = new URLSearchParams(window.location.hash?.substring(1) || '')
|
||||
_hashParams.forEach((v, k) => { if (oldHashParams.get(k) !== v) Hash[k] = Util.safeJson(v) })
|
||||
oldHashParams.forEach((v, k) => { if (_hashParams.get(k) === undefined) Hash[k] = undefined })
|
||||
})
|
||||
}
|
||||
|
||||
// localstorage 状态
|
||||
export const LocalStorage = NewState({}, k => Util.safeJson(localStorage.getItem(k)), (k, v) => {
|
||||
const oldStr = localStorage.getItem(k)
|
||||
const newStr = v === undefined ? undefined : JSON.stringify(v)
|
||||
if (oldStr === newStr || (oldStr === null && newStr === undefined)) return
|
||||
v === undefined ? localStorage.removeItem(k) : localStorage.setItem(k, newStr)
|
||||
})
|
||||
|
||||
globalThis.Hash = Hash;
|
||||
globalThis.LocalStorage = LocalStorage;
|
||||
34
src/index.js
Normal file
34
src/index.js
Normal file
@ -0,0 +1,34 @@
|
||||
// src/index.js
|
||||
export { NewState } from './observer.js';
|
||||
export { Component } from './component.js';
|
||||
export { $, $$, RefreshState, SetTranslator, _scanTree, _unbindTree } from './dom.js';
|
||||
export { Util } from './utils.js';
|
||||
export { Hash, LocalStorage } from './globals.js';
|
||||
|
||||
import { Component } from './component.js';
|
||||
import { _scanTree, _unbindTree } from './dom.js';
|
||||
import { LocalStorage } from './globals.js';
|
||||
|
||||
if (typeof document !== 'undefined') {
|
||||
const init = () => {
|
||||
Component._initPending();
|
||||
new MutationObserver(mutations => {
|
||||
mutations.forEach(mutation => {
|
||||
mutation.addedNodes.forEach(newNode => {
|
||||
if (newNode.isConnected) _scanTree(newNode);
|
||||
});
|
||||
mutation.removedNodes.forEach(oldNode => _unbindTree(oldNode));
|
||||
});
|
||||
}).observe(document.documentElement, { childList: true, subtree: true });
|
||||
|
||||
const htmlNode = document.documentElement;
|
||||
if (!htmlNode.hasAttribute('$data-bs-theme') && !htmlNode.hasAttribute('data-bs-theme')) {
|
||||
htmlNode.setAttribute('$data-bs-theme', "LocalStorage.darkMode?'dark':'light'");
|
||||
}
|
||||
|
||||
_scanTree(document.documentElement);
|
||||
};
|
||||
|
||||
if (document.readyState !== 'loading') init();
|
||||
else document.addEventListener('DOMContentLoaded', init, true);
|
||||
}
|
||||
74
src/observer.js
Normal file
74
src/observer.js
Normal file
@ -0,0 +1,74 @@
|
||||
// src/observer.js
|
||||
let _activeBinding = null;
|
||||
let _noWriteBack = null;
|
||||
let _updateBindingFn = null;
|
||||
|
||||
export function getActiveBinding() { return _activeBinding; }
|
||||
export function setActiveBinding(val) { _activeBinding = val; }
|
||||
export function getNoWriteBack() { return _noWriteBack; }
|
||||
export function setNoWriteBack(val) { _noWriteBack = val; }
|
||||
|
||||
export function onNotifyUpdate(fn) {
|
||||
_updateBindingFn = fn;
|
||||
}
|
||||
|
||||
export function NewState(defaults = {}, getter = null, setter = null) {
|
||||
const _defaults = {};
|
||||
const _stateMappings = new Map();
|
||||
const _watchers = new Map();
|
||||
const _watchFunc = (k, cb) => {
|
||||
if (!_watchers.has(k)) _watchers.set(k, new Set());
|
||||
!cb ? _watchers.get(k).clear() : _watchers.get(k).add(cb);
|
||||
};
|
||||
const _unwatchFunc = (k, cb) => {
|
||||
if (!_watchers.has(k)) _watchers.set(k, new Set());
|
||||
_watchers.get(k).delete(cb);
|
||||
};
|
||||
const _getter = getter || (k => _defaults[k]);
|
||||
const _setter = setter || ((k, v) => _defaults[k] = v);
|
||||
Object.assign(_defaults, defaults);
|
||||
|
||||
return new Proxy(_defaults, {
|
||||
get(target, key) {
|
||||
if (key === '__watch') return _watchFunc;
|
||||
if (key === '__unwatch') return _unwatchFunc;
|
||||
if (_activeBinding) {
|
||||
if (!_stateMappings.has(key)) _stateMappings.set(key, new Set());
|
||||
_stateMappings.get(key).add(_activeBinding);
|
||||
if (!_activeBinding.node._states) _activeBinding.node._states = new Set();
|
||||
_activeBinding.node._states.add(_stateMappings);
|
||||
}
|
||||
return _getter(key);
|
||||
},
|
||||
set(target, key, value) {
|
||||
if (_getter(key) !== value) {
|
||||
_setter(key, value);
|
||||
}
|
||||
if (_watchers.has(key)) {
|
||||
_watchers.get(key).forEach(cb => {
|
||||
const r = cb(value);
|
||||
if (r !== undefined) {
|
||||
value = r;
|
||||
target[key] = value;
|
||||
}
|
||||
});
|
||||
}
|
||||
if (_watchers.has(null)) {
|
||||
_watchers.get(null).forEach(cb => cb(value));
|
||||
}
|
||||
if (_stateMappings.has(key)) {
|
||||
const bindings = _stateMappings.get(key);
|
||||
for (const binding of bindings) {
|
||||
if (!binding.node.isConnected) {
|
||||
bindings.delete(binding);
|
||||
continue;
|
||||
}
|
||||
if (_noWriteBack !== binding.node && _updateBindingFn) {
|
||||
_updateBindingFn(binding);
|
||||
}
|
||||
}
|
||||
}
|
||||
return true;
|
||||
}
|
||||
});
|
||||
}
|
||||
47
src/utils.js
Normal file
47
src/utils.js
Normal file
@ -0,0 +1,47 @@
|
||||
// src/utils.js
|
||||
export const Util = {
|
||||
clone: window.structuredClone || (obj => JSON.parse(JSON.stringify(obj))),
|
||||
base64: str => btoa(String.fromCharCode(...new TextEncoder().encode(str))),
|
||||
unbase64: str => new TextDecoder().decode(Uint8Array.from(atob(str), c => c.charCodeAt(0))),
|
||||
urlbase64: str => Util.base64(str).replace(/[+/=]/g, m => ({ '+': '-', '/': '', '=': '' }[m])),
|
||||
unurlbase64: str => Util.unbase64(str.replace(/[-_.]/g, m => ({ '-': '+', '_': '/', '.': '=' }[m])).padEnd(Math.ceil(str.length / 4) * 4, '=')),
|
||||
safeJson: str => { try { return JSON.parse(str) } catch { return null } },
|
||||
updateDefaults: (obj, defaults) => { for (const k in defaults) if (obj[k] === undefined) obj[k] = defaults[k] },
|
||||
copyFunction: (toObj, fromObj, ...funcNames) => { funcNames.forEach(name => toObj[name] = fromObj[name].bind(fromObj)) },
|
||||
getFunctionBody: fn => { const code = fn.toString(); return code.slice(code.indexOf('{') + 1, code.lastIndexOf('}')).trim() },
|
||||
makeDom: html => {
|
||||
if (html.includes('>\n')) html = html.replace(/>\s+</g, "><").trim()
|
||||
const node = document.createElement('div')
|
||||
node.innerHTML = html
|
||||
return node.children[0]
|
||||
},
|
||||
newAvg: () => {
|
||||
let total = 0, count = 0, avg = 0
|
||||
return {
|
||||
add: (v) => {
|
||||
total += v
|
||||
count++
|
||||
return avg = total / count
|
||||
},
|
||||
get: () => avg,
|
||||
clear: () => { total = 0, count = 0, avg = 0 }
|
||||
}
|
||||
},
|
||||
newTimeCount: () => {
|
||||
let startTime = 0, total = 0, count = 0
|
||||
return {
|
||||
start: () => startTime = new Date().getTime(),
|
||||
end: () => {
|
||||
const endTime = new Date().getTime()
|
||||
const left = endTime - startTime
|
||||
startTime = endTime
|
||||
total += left
|
||||
count++
|
||||
return left
|
||||
},
|
||||
avg: () => total / count
|
||||
}
|
||||
},
|
||||
}
|
||||
|
||||
globalThis.Util = Util;
|
||||
4
test-results/.last-run.json
Normal file
4
test-results/.last-run.json
Normal file
@ -0,0 +1,4 @@
|
||||
{
|
||||
"status": "passed",
|
||||
"failedTests": []
|
||||
}
|
||||
43
test/all.spec.js
Normal file
43
test/all.spec.js
Normal file
@ -0,0 +1,43 @@
|
||||
import { test, expect } from '@playwright/test';
|
||||
|
||||
test('modular unit tests and benchmark', async ({ page }) => {
|
||||
page.on('console', msg => console.log('BROWSER LOG:', msg.text()));
|
||||
await page.goto('http://localhost:8081/test/index.html');
|
||||
|
||||
// Wait for testStatus to be set
|
||||
await page.waitForFunction(() => window.testStatus !== undefined, { timeout: 10000 });
|
||||
|
||||
const status = await page.evaluate(() => window.testStatus);
|
||||
expect(status).toBe('passed');
|
||||
|
||||
// Benchmark: Large list rendering
|
||||
const renderTime = await page.evaluate(async () => {
|
||||
const start = performance.now();
|
||||
document.body.innerHTML = `
|
||||
<ul id="bench-list">
|
||||
<template $each="state.benchItems" as="item">
|
||||
<li $text="item.val"></li>
|
||||
</template>
|
||||
</ul>
|
||||
`;
|
||||
const items = [];
|
||||
for(let i=0; i<1000; i++) items.push({val: 'item ' + i});
|
||||
window.state.benchItems = items;
|
||||
const { RefreshState } = await import('@web/state');
|
||||
RefreshState(document.documentElement);
|
||||
return performance.now() - start;
|
||||
});
|
||||
console.log(`BENCHMARK: 1000 items initial render: ${renderTime.toFixed(2)}ms`);
|
||||
|
||||
// Benchmark: Large list update
|
||||
const updateTime = await page.evaluate(async () => {
|
||||
const start = performance.now();
|
||||
window.state.benchItems[0].val = 'updated';
|
||||
// Note: Shallow proxy requires reassignment or internal trigger if we modified a deep property.
|
||||
// But here we modify benchItems[0], which is an object inside the array.
|
||||
// Our current observer.js might not catch this if it's benchItems[0] = ...
|
||||
window.state.benchItems = [...window.state.benchItems];
|
||||
return performance.now() - start;
|
||||
});
|
||||
console.log(`BENCHMARK: 1000 items update (shallow): ${updateTime.toFixed(2)}ms`);
|
||||
});
|
||||
35
test/component.test.js
Normal file
35
test/component.test.js
Normal file
@ -0,0 +1,35 @@
|
||||
// test/component.test.js
|
||||
import { Component } from '../src/component.js';
|
||||
import { RefreshState, $ } from '../src/dom.js';
|
||||
|
||||
export async function testComponent() {
|
||||
console.log('Testing component.js...');
|
||||
|
||||
// 1. Register component FIRST
|
||||
Component.register('MY-COMP', (node) => {
|
||||
// setup
|
||||
});
|
||||
|
||||
// 2. Add template and instance
|
||||
document.body.innerHTML = `
|
||||
<template component="MY-COMP">
|
||||
<div class="comp-inner">Component Content</div>
|
||||
</template>
|
||||
<my-comp id="comp-instance"></my-comp>
|
||||
`;
|
||||
|
||||
// 3. Scan
|
||||
RefreshState(document.documentElement);
|
||||
|
||||
// 4. Wait a bit for any async DOM updates
|
||||
await new Promise(r => setTimeout(r, 100));
|
||||
|
||||
const instance = $('#comp-instance');
|
||||
if (!instance.innerHTML.includes('Component Content')) {
|
||||
console.log('Current instance innerHTML:', instance.innerHTML);
|
||||
throw new Error('Component rendering failed');
|
||||
}
|
||||
|
||||
console.log('component.js tests passed');
|
||||
return true;
|
||||
}
|
||||
18
test/core.test.js
Normal file
18
test/core.test.js
Normal file
@ -0,0 +1,18 @@
|
||||
// test/core.test.js
|
||||
import { _runCode, _returnCode } from '../src/core.js';
|
||||
|
||||
export async function testCore() {
|
||||
console.log('Testing core.js...');
|
||||
const vars = { a: 1, b: 2 };
|
||||
const extendVars = { c: 3 };
|
||||
|
||||
// _runCode
|
||||
if (_runCode('return a + b + c', vars, {}, extendVars) !== 6) throw new Error('_runCode failed');
|
||||
|
||||
// _returnCode
|
||||
if (_returnCode('a + b', vars, {}) !== 3) throw new Error('_returnCode simple failed');
|
||||
if (_returnCode('${a} + ${b}', vars, {}) !== '1 + 2') throw new Error('_returnCode template failed');
|
||||
|
||||
console.log('core.js tests passed');
|
||||
return true;
|
||||
}
|
||||
88
test/dom.test.js
Normal file
88
test/dom.test.js
Normal file
@ -0,0 +1,88 @@
|
||||
// test/dom.test.js
|
||||
import { RefreshState, $, $$ } from '@web/state';
|
||||
import { NewState } from '@web/state';
|
||||
|
||||
export async function testDom() {
|
||||
console.log('Testing dom.js...');
|
||||
|
||||
// 1. Basic $text binding
|
||||
document.body.innerHTML = `<div id="test-node" $text="state.msg"></div>`;
|
||||
window.state = NewState({ msg: 'hello' });
|
||||
RefreshState(document.documentElement);
|
||||
const node = $('#test-node');
|
||||
if (node.textContent !== 'hello') throw new Error('$text binding failed');
|
||||
state.msg = 'world';
|
||||
if (node.textContent !== 'world') throw new Error('$text update failed');
|
||||
|
||||
// 2. $if directive
|
||||
document.body.innerHTML = `
|
||||
<div id="if-test">
|
||||
<template $if="state.show">
|
||||
<span id="if-content">Visible</span>
|
||||
</template>
|
||||
</div>
|
||||
`;
|
||||
state.show = false;
|
||||
RefreshState(document.documentElement);
|
||||
if ($('#if-content')) throw new Error('$if failed: should be hidden');
|
||||
|
||||
state.show = true;
|
||||
await Promise.resolve();
|
||||
if (!$('#if-content') || $('#if-content').textContent !== 'Visible') throw new Error('$if failed: should be visible');
|
||||
|
||||
state.show = false;
|
||||
await Promise.resolve();
|
||||
if ($('#if-content')) throw new Error('$if failed: should be hidden again');
|
||||
|
||||
// 3. $each directive (Index-based reuse)
|
||||
document.body.innerHTML = `
|
||||
<ul id="list-test">
|
||||
<template $each="state.items" as="item" index="i">
|
||||
<li $text="item.name"></li>
|
||||
</template>
|
||||
</ul>
|
||||
`;
|
||||
state.items = [{ name: 'A' }, { name: 'B' }];
|
||||
RefreshState(document.documentElement);
|
||||
await Promise.resolve(); // Wait for MutationObserver
|
||||
let items = $$('#list-test li');
|
||||
console.log('$each items length:', items.length);
|
||||
if (items.length > 0) console.log('$each first item text:', items[0].textContent);
|
||||
if (items.length !== 2 || items[0].textContent !== 'A' || items[1].textContent !== 'B') throw new Error('$each initialization failed');
|
||||
|
||||
const firstNode = items[0];
|
||||
state.items = [{ name: 'A-mod' }, { name: 'B' }, { name: 'C' }];
|
||||
await Promise.resolve();
|
||||
items = $$('#list-test li');
|
||||
if (items.length !== 3 || items[0].textContent !== 'A-mod') throw new Error('$each update failed');
|
||||
if (items[0] !== firstNode) throw new Error('$each reuse failed: should reuse existing DOM nodes');
|
||||
|
||||
state.items = [{ name: 'C' }];
|
||||
await Promise.resolve();
|
||||
items = $$('#list-test li');
|
||||
if (items.length !== 1 || items[0].textContent !== 'C') throw new Error('$each removal failed');
|
||||
|
||||
// 4. Two-way binding (bind)
|
||||
document.body.innerHTML = `<input id="input-test" $bind="state.val">`;
|
||||
state.val = 'initial';
|
||||
RefreshState(document.documentElement);
|
||||
await Promise.resolve();
|
||||
const input = $('#input-test');
|
||||
if (input.value !== 'initial') throw new Error('$bind initial value failed');
|
||||
|
||||
input.value = 'changed';
|
||||
input.dispatchEvent(new Event('input'));
|
||||
if (state.val !== 'changed') throw new Error('$bind write-back failed');
|
||||
|
||||
// 5. Unbinding cleanup (mock check)
|
||||
// _unbindTree is called when nodes are removed via $if or $each.
|
||||
// We verify that after $if=false, the state mappings for that node are cleared.
|
||||
// This is hard to test directly without exposing internal Map, but we can check if it crashes.
|
||||
state.show = true;
|
||||
const ifNode = $('#if-content');
|
||||
state.show = false; // Trigger _unbindTree via _clearRenderedNodes -> remove() -> MutationObserver (or manual in some cases)
|
||||
// Actually MutationObserver handles _unbindTree in index.js.
|
||||
|
||||
console.log('dom.js tests passed');
|
||||
return true;
|
||||
}
|
||||
39
test/index.html
Normal file
39
test/index.html
Normal file
@ -0,0 +1,39 @@
|
||||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<title>State.js Modular Tests</title>
|
||||
<script type="importmap">
|
||||
{
|
||||
"imports": {
|
||||
"@web/state": "../src/index.js"
|
||||
}
|
||||
}
|
||||
</script>
|
||||
</head>
|
||||
<body>
|
||||
<div id="results">Running tests...</div>
|
||||
<script type="module">
|
||||
import { testCore } from './core.test.js';
|
||||
import { testObserver } from './observer.test.js';
|
||||
import { testDom } from './dom.test.js';
|
||||
import { testComponent } from './component.test.js';
|
||||
|
||||
async function runAll() {
|
||||
const results = document.getElementById('results');
|
||||
try {
|
||||
await testCore();
|
||||
await testObserver();
|
||||
await testDom();
|
||||
await testComponent();
|
||||
results.innerHTML = '<h1 style="color: green">All Tests Passed 🎉</h1>';
|
||||
window.testStatus = 'passed';
|
||||
} catch (e) {
|
||||
console.error(e);
|
||||
results.innerHTML = '<h1 style="color: red">Tests Failed: ' + e.message + '</h1>';
|
||||
window.testStatus = 'failed';
|
||||
}
|
||||
}
|
||||
runAll();
|
||||
</script>
|
||||
</body>
|
||||
</html>
|
||||
28
test/observer.test.js
Normal file
28
test/observer.test.js
Normal file
@ -0,0 +1,28 @@
|
||||
// test/observer.test.js
|
||||
import { NewState } from '../src/observer.js';
|
||||
|
||||
export async function testObserver() {
|
||||
console.log('Testing observer.js...');
|
||||
|
||||
let watchTriggered = 0;
|
||||
const state = NewState({ count: 0 });
|
||||
|
||||
state.__watch('count', (val) => {
|
||||
watchTriggered = val;
|
||||
});
|
||||
|
||||
state.count = 10;
|
||||
if (watchTriggered !== 10) throw new Error('Watcher not triggered or value incorrect');
|
||||
if (state.count !== 10) throw new Error('State value not updated');
|
||||
|
||||
// General watcher
|
||||
let generalTriggered = false;
|
||||
state.__watch(null, () => {
|
||||
generalTriggered = true;
|
||||
});
|
||||
state.count = 20;
|
||||
if (!generalTriggered) throw new Error('General watcher not triggered');
|
||||
|
||||
console.log('observer.js tests passed');
|
||||
return true;
|
||||
}
|
||||
28
vite.config.js
Normal file
28
vite.config.js
Normal file
@ -0,0 +1,28 @@
|
||||
import { defineConfig } from 'vite';
|
||||
import { resolve } from 'path';
|
||||
import terser from '@rollup/plugin-terser';
|
||||
|
||||
export default defineConfig({
|
||||
build: {
|
||||
lib: {
|
||||
entry: resolve(__dirname, 'src/index.js'),
|
||||
name: 'State',
|
||||
formats: ['es']
|
||||
},
|
||||
rollupOptions: {
|
||||
output: [
|
||||
{
|
||||
format: 'es',
|
||||
entryFileNames: 'state.js',
|
||||
minifyInternalExports: false
|
||||
},
|
||||
{
|
||||
format: 'es',
|
||||
entryFileNames: 'state.min.js',
|
||||
plugins: [terser()]
|
||||
}
|
||||
]
|
||||
},
|
||||
minify: false
|
||||
}
|
||||
});
|
||||
Loading…
x
Reference in New Issue
Block a user