resonantjs 1.0.7 → 1.0.9
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.
- package/README.md +4 -1
- package/examples/example-taskmanager.html +3 -6
- package/package.json +1 -1
- package/resonant.js +47 -4
- package/resonant.min.js +1 -1
package/README.md
CHANGED
|
@@ -47,7 +47,10 @@ Include resonant.js in your HTML file, and use the following example to understa
|
|
|
47
47
|
|
|
48
48
|
<script>
|
|
49
49
|
const resonantJs = new Resonant();
|
|
50
|
-
resonantJs.add("counter", 0);
|
|
50
|
+
resonantJs.add("counter", 0, true);
|
|
51
|
+
//counter will instantiate the variable with name "counter"
|
|
52
|
+
//0 is the initial value of the variable
|
|
53
|
+
//true is optional, if true the variable will be stored in local storage
|
|
51
54
|
</script>
|
|
52
55
|
</body>
|
|
53
56
|
</html>
|
|
@@ -45,15 +45,12 @@
|
|
|
45
45
|
|
|
46
46
|
// Add a callback to log actions taken on tasks
|
|
47
47
|
resonantJs.addCallback("tasks", (tasks, task, action) => {
|
|
48
|
-
console.log(`Action taken: ${action}
|
|
48
|
+
console.log(`Action taken: ${action}`);
|
|
49
49
|
});
|
|
50
50
|
|
|
51
51
|
function remove(task) {
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
tasks.splice(index, 1);
|
|
55
|
-
|
|
56
|
-
//You could use as well, still trying to figure out if I want to leave this or not
|
|
52
|
+
const index = tasks.indexOf(task);
|
|
53
|
+
tasks.delete(index);
|
|
57
54
|
}
|
|
58
55
|
|
|
59
56
|
// Add a function to add a new task
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "resonantjs",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.9",
|
|
4
4
|
"description": "A lightweight JavaScript framework that enables reactive data-binding for building dynamic and responsive web applications. It simplifies creating interactive UIs by automatically updating the DOM when your data changes.",
|
|
5
5
|
"main": "resonant.js",
|
|
6
6
|
"repository": {
|
package/resonant.js
CHANGED
|
@@ -7,9 +7,45 @@ class ObservableArray extends Array {
|
|
|
7
7
|
this.variableName = variableName;
|
|
8
8
|
this.resonantInstance = resonantInstance;
|
|
9
9
|
this.isDeleting = false;
|
|
10
|
+
|
|
11
|
+
this.forEach((item, index) => {
|
|
12
|
+
if (typeof item === 'object') {
|
|
13
|
+
this[index] = this._createProxy(item, index);
|
|
14
|
+
}
|
|
15
|
+
});
|
|
16
|
+
}
|
|
17
|
+
|
|
18
|
+
_createProxy(item, index) {
|
|
19
|
+
return new Proxy(item, {
|
|
20
|
+
set: (target, property, value) => {
|
|
21
|
+
if (target[property] !== value) {
|
|
22
|
+
const oldValue = target[property];
|
|
23
|
+
target[property] = value;
|
|
24
|
+
this.resonantInstance._queueUpdate(this.variableName, 'modified', target, property, oldValue, index);
|
|
25
|
+
}
|
|
26
|
+
return true;
|
|
27
|
+
}
|
|
28
|
+
});
|
|
29
|
+
}
|
|
30
|
+
|
|
31
|
+
//temp fix for issues
|
|
32
|
+
forceUpdate() {
|
|
33
|
+
this.resonantInstance.arrayDataChangeDetection[this.variableName] = this.slice();
|
|
34
|
+
this.resonantInstance._queueUpdate(this.variableName, 'modified', this.slice());
|
|
35
|
+
}
|
|
36
|
+
|
|
37
|
+
update(array) {
|
|
38
|
+
window[this.variableName] = array;
|
|
39
|
+
this.resonantInstance._queueUpdate(this.variableName, 'updated', array);
|
|
10
40
|
}
|
|
11
41
|
|
|
12
42
|
push(...args) {
|
|
43
|
+
args = args.map((item, index) => {
|
|
44
|
+
if (typeof item === 'object') {
|
|
45
|
+
return this._createProxy(item, this.length + index);
|
|
46
|
+
}
|
|
47
|
+
return item;
|
|
48
|
+
});
|
|
13
49
|
const result = super.push(...args);
|
|
14
50
|
this.resonantInstance.arrayDataChangeDetection[this.variableName] = this.slice();
|
|
15
51
|
args.forEach((item, index) => {
|
|
@@ -19,6 +55,12 @@ class ObservableArray extends Array {
|
|
|
19
55
|
}
|
|
20
56
|
|
|
21
57
|
splice(start, deleteCount, ...items) {
|
|
58
|
+
items = items.map((item, index) => {
|
|
59
|
+
if (typeof item === 'object') {
|
|
60
|
+
return this._createProxy(item, start + index);
|
|
61
|
+
}
|
|
62
|
+
return item;
|
|
63
|
+
});
|
|
22
64
|
const removedItems = super.splice(start, deleteCount, ...items);
|
|
23
65
|
this.resonantInstance.arrayDataChangeDetection[this.variableName] = this.slice();
|
|
24
66
|
|
|
@@ -73,8 +115,8 @@ class ObservableArray extends Array {
|
|
|
73
115
|
return true;
|
|
74
116
|
}
|
|
75
117
|
|
|
76
|
-
filter(filter) {
|
|
77
|
-
if(this.resonantInstance === undefined) {
|
|
118
|
+
filter(filter, actuallyFilter = true) {
|
|
119
|
+
if(this.resonantInstance === undefined || actuallyFilter === false) {
|
|
78
120
|
return super.filter(filter);
|
|
79
121
|
}
|
|
80
122
|
|
|
@@ -121,7 +163,7 @@ class Resonant {
|
|
|
121
163
|
}
|
|
122
164
|
}
|
|
123
165
|
|
|
124
|
-
|
|
166
|
+
updatePersistantData(variableName) {
|
|
125
167
|
if (localStorage.getItem('res_' + variableName)) {
|
|
126
168
|
localStorage.setItem('res_' + variableName, JSON.stringify(this.data[variableName]));
|
|
127
169
|
}
|
|
@@ -180,7 +222,7 @@ class Resonant {
|
|
|
180
222
|
if (this.pendingUpdates.get(variableName).length === 1) {
|
|
181
223
|
setTimeout(() => {
|
|
182
224
|
const updates = this.pendingUpdates.get(variableName);
|
|
183
|
-
this.
|
|
225
|
+
this.updatePersistantData(variableName);
|
|
184
226
|
this.pendingUpdates.delete(variableName);
|
|
185
227
|
updates.forEach(update => {
|
|
186
228
|
this._triggerCallbacks(variableName, update);
|
|
@@ -190,6 +232,7 @@ class Resonant {
|
|
|
190
232
|
this.updateStylesFor(variableName);
|
|
191
233
|
}, 0);
|
|
192
234
|
}
|
|
235
|
+
|
|
193
236
|
}
|
|
194
237
|
|
|
195
238
|
_triggerCallbacks(variableName, callbackData) {
|
package/resonant.min.js
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
class ObservableArray extends Array{constructor(e,t,...a){if(void 0===t)return super(...a);super(...a),this.variableName=e,this.resonantInstance=t,this.isDeleting=!1}push(...e){
|
|
1
|
+
class ObservableArray extends Array{constructor(e,t,...a){if(void 0===t)return super(...a);super(...a),this.variableName=e,this.resonantInstance=t,this.isDeleting=!1,this.forEach(((e,t)=>{"object"==typeof e&&(this[t]=this._createProxy(e,t))}))}_createProxy(e,t){return new Proxy(e,{set:(e,a,s)=>{if(e[a]!==s){const i=e[a];e[a]=s,this.resonantInstance._queueUpdate(this.variableName,"modified",e,a,i,t)}return!0}})}forceUpdate(){this.resonantInstance.arrayDataChangeDetection[this.variableName]=this.slice(),this.resonantInstance._queueUpdate(this.variableName,"modified",this.slice())}update(e){window[this.variableName]=e,this.resonantInstance._queueUpdate(this.variableName,"updated",e)}push(...e){e=e.map(((e,t)=>"object"==typeof e?this._createProxy(e,this.length+t):e));const t=super.push(...e);return this.resonantInstance.arrayDataChangeDetection[this.variableName]=this.slice(),e.forEach(((e,t)=>{this.resonantInstance._queueUpdate(this.variableName,"added",e,this.length-1-t)})),t}splice(e,t,...a){a=a.map(((t,a)=>"object"==typeof t?this._createProxy(t,e+a):t));const s=super.splice(e,t,...a);return this.resonantInstance.arrayDataChangeDetection[this.variableName]=this.slice(),t>0&&s.forEach(((t,a)=>{this.resonantInstance._queueUpdate(this.variableName,"removed",t,e+a)})),a.length>0&&a.forEach(((t,a)=>{this.resonantInstance._queueUpdate(this.variableName,"added",t,e+a)})),s}set(e,t){if(this[e]!==t){if(this.isDeleting)return!0;const a=this.resonantInstance.arrayDataChangeDetection[this.variableName];let s="modified";(e>=a.length||void 0===a[e])&&(s="added"),this.resonantInstance.arrayDataChangeDetection[this.variableName]=this.slice();const i=this[e];this[e]=t,this.resonantInstance._queueUpdate(this.variableName,s,this[e],e,i)}return!0}delete(e){const t=this[e];return this.isDeleting=!0,this.splice(e,1),this.resonantInstance.arrayDataChangeDetection[this.variableName]=this.slice(),this.resonantInstance._queueUpdate(this.variableName,"removed",null,e,t),this.isDeleting=!1,!0}filter(e,t=!0){if(void 0===this.resonantInstance||!1===t)return super.filter(e);const a=super.filter(e);return this.resonantInstance.arrayDataChangeDetection[this.variableName]=this.slice(),this.resonantInstance._queueUpdate(this.variableName,"filtered"),a}}class Resonant{constructor(){this.data={},this.callbacks={},this.pendingUpdates=new Map,this.arrayDataChangeDetection={}}add(e,t,a){t=this.persist(e,t,a),Array.isArray(t)?(this.data[e]=new ObservableArray(e,this,...t),this.arrayDataChangeDetection[e]=this.data[e].slice()):this.data[e]="object"==typeof t?this._createObject(e,t):t,this._defineProperty(e),this.updateElement(e)}persist(e,t,a){if(void 0===a||!a)return t;var s=localStorage.getItem("res_"+e);return null!=s?JSON.parse(localStorage.getItem("res_"+e)):(localStorage.setItem("res_"+e,JSON.stringify(t)),t)}updatePersistantData(e){localStorage.getItem("res_"+e)&&localStorage.setItem("res_"+e,JSON.stringify(this.data[e]))}addAll(e){Object.entries(e).forEach((([e,t])=>{this.add(e,t)}))}_createObject(e,t){return t[Symbol("isProxy")]=!0,new Proxy(t,{set:(t,a,s)=>{if(t[a]!==s){const i=t[a];t[a]=s,this._queueUpdate(e,"modified",t,a,i)}return!0}})}_defineProperty(e){Object.defineProperty(window,e,{get:()=>this.data[e],set:t=>{Array.isArray(t)?(this.data[e]=new ObservableArray(e,this,...t),this.arrayDataChangeDetection[e]=this.data[e].slice()):this.data[e]="object"==typeof t?this._createObject(e,t):t,this.updateElement(e),this.updateDisplayConditionalsFor(e),this.updateStylesFor(e),Array.isArray(t)||"object"==typeof t||this._queueUpdate(e,"modified",this.data[e])}})}_queueUpdate(e,t,a,s,i){this.pendingUpdates.has(e)||this.pendingUpdates.set(e,[]),this.pendingUpdates.get(e).push({action:t,item:a,property:s,oldValue:i}),1===this.pendingUpdates.get(e).length&&setTimeout((()=>{const t=this.pendingUpdates.get(e);this.updatePersistantData(e),this.pendingUpdates.delete(e),t.forEach((t=>{this._triggerCallbacks(e,t)})),this.updateElement(e),this.updateDisplayConditionalsFor(e),this.updateStylesFor(e)}),0)}_triggerCallbacks(e,t){this.callbacks[e]&&this.callbacks[e].forEach((a=>{const s=t.item||t.oldValue;a(this.data[e],s,t.action)}))}updateElement(e){const t=document.querySelectorAll(`[res="${e}"]`),a=this.data[e];t.forEach((t=>{if(t.value=a,"INPUT"===t.tagName||"TEXTAREA"===t.tagName)t.hasAttribute("data-resonant-bound")||(t.oninput=()=>{this.data[e]=t.value,this._queueUpdate(e,"modified",this.data[e])},t.setAttribute("data-resonant-bound","true"));else if(Array.isArray(a))t.querySelectorAll(`[res="${e}"][res-rendered=true]`).forEach((e=>e.remove())),this._renderArray(e,t);else if("object"==typeof a){t.querySelectorAll("[res-prop]").forEach((t=>{const s=t.getAttribute("res-prop");s&&s in a&&(t.hasAttribute("data-resonant-bound")?"INPUT"===t.tagName||"TEXTAREA"===t.tagName?"checkbox"===t.type?t.checked=a[s]:t.value=a[s]:t.innerHTML=a[s]:("INPUT"===t.tagName||"TEXTAREA"===t.tagName?"checkbox"===t.type?(t.checked=a[s],t.onchange=()=>{this.data[e][s]=t.checked}):(t.value=a[s],t.oninput=()=>{this.data[e][s]=t.value}):t.innerHTML=a[s],t.setAttribute("data-resonant-bound","true")))}))}else t.innerHTML=a})),this.updateDisplayConditionalsFor(e),this.updateStylesFor(e)}updateDisplayConditionalsFor(variableName){const conditionalElements=document.querySelectorAll(`[res-display*="${variableName}"]`);conditionalElements.forEach((conditionalElement=>{const condition=conditionalElement.getAttribute("res-display");try{eval(condition)?conditionalElement.style.display="":conditionalElement.style.display="none"}catch(e){console.error(`Error evaluating condition for ${variableName}: ${condition}`,e)}}))}updateStylesFor(variableName){const styleElements=document.querySelectorAll(`[res-style*="${variableName}"]`);styleElements.forEach((styleElement=>{let styleCondition=styleElement.getAttribute("res-style");try{let parent=styleElement,index=null;for(;parent&&!index;)index=parent.getAttribute("res-index"),parent=parent.parentElement;let resStyles=styleElement.getAttribute("res-styles");if(resStyles){let e=resStyles.split(" ");e.forEach((e=>{styleElement.classList.remove(e)}))}if(null!==index){const e=this.data[variableName][index];styleCondition=styleCondition.replace(new RegExp(`\\b${variableName}\\b`,"g"),"item");const t=new Function("item",`return ${styleCondition}`)(e);if(t)styleElement.classList.add(t);else{var elementHasStyle=styleElement.classList.contains(t);elementHasStyle&&styleElement.classList.remove(t)}}else{const styleClass=eval(styleCondition);if(styleClass)styleElement.classList.add(styleClass),styleElement.setAttribute("res-styles",styleClass);else{var elementHasStyle=styleElement.classList.contains(styleClass);elementHasStyle&&styleElement.classList.remove(styleClass)}}}catch(e){console.error(`Error evaluating style for ${variableName}: ${styleCondition}`,e)}}))}_renderArray(e,t){let a=t.cloneNode(!0);t.innerHTML="",window[e+"_template"]?a=window[e+"_template"]:window[e+"_template"]=a,this.data[e].forEach(((s,i)=>{const n=a.cloneNode(!0);n.setAttribute("res-index",i);for(let t in s){const a=n.querySelector(`[res-prop="${t}"]`);a&&(a.hasAttribute("data-resonant-bound")?"INPUT"===a.tagName||"TEXTAREA"===a.tagName?"checkbox"===a.type?a.checked=s[t]:a.value=s[t]:a.innerHTML=s[t]:("INPUT"===a.tagName||"TEXTAREA"===a.tagName?"checkbox"===a.type?(a.checked=s[t],a.onchange=()=>{s[t]=a.checked,this._queueUpdate(e,"modified",s,t,s[t])}):(a.value=s[t],a.oninput=()=>{s[t]=a.value,this._queueUpdate(e,"modified",s,t,s[t])}):a.innerHTML=s[t],a.setAttribute("data-resonant-bound","true")))}n.querySelectorAll("[res-onclick], [res-onclick-remove]").forEach((t=>{const a=t.getAttribute("res-onclick"),i=t.getAttribute("res-onclick-remove");a&&(t.onclick=()=>{new Function("item",`return ${a}(item)`)(s)}),i&&(t.onclick=()=>{const t=this.data[e].findIndex((e=>e[i]===s[i]));-1!==t&&this.data[e].splice(t,1)})})),n.setAttribute("res-rendered",!0),t.appendChild(n)}))}addCallback(e,t){this.callbacks[e]||(this.callbacks[e]=[]),this.callbacks[e].push(t)}}
|