resonantjs 1.0.6 → 1.0.7
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/Demo.gif +0 -0
- package/README.md +1 -15
- package/package.json +1 -1
- package/resonant.js +48 -4
- package/resonant.min.js +1 -1
package/Demo.gif
CHANGED
|
Binary file
|
package/README.md
CHANGED
|
@@ -9,7 +9,6 @@ Resonant.js is an open-source lightweight JavaScript framework that enables reac
|
|
|
9
9
|
- **Bidirectional Input Binding**: Bind HTML input fields directly to your data model.
|
|
10
10
|
- **Efficient Conditional Updates**: Only evaluate conditional expressions tied to specific variable changes.
|
|
11
11
|
- **Lightweight and Easy to Integrate**: Minimal setup required to get started.
|
|
12
|
-
- **Compatible with Modern Browsers**: Works seamlessly across all modern web browsers.
|
|
13
12
|
## Installation
|
|
14
13
|
## NPM
|
|
15
14
|
To install via NPM, use the following command:
|
|
@@ -70,20 +69,7 @@ Include resonant.js in your HTML file, and use the following example to understa
|
|
|
70
69
|
- **Dynamic Arrays and Objects**: Easily handle collections and nested objects to dynamically add or remove elements based on your data structures.
|
|
71
70
|
- **Event Callbacks**: Register custom functions to execute whenever your data model changes.
|
|
72
71
|
- **Bidirectional Input Binding**: Bind form input fields directly to your data, making two-way synchronization simple.
|
|
73
|
-
|
|
74
|
-
### New Features in Version 1.0.2
|
|
75
|
-
|
|
76
|
-
#### Pending Updates Mechanism
|
|
77
|
-
- Introduced to prevent redundant updates and ensure callbacks are only triggered once per update cycle, improving performance and user experience.
|
|
78
|
-
|
|
79
|
-
#### Callback Parameter Enhancement
|
|
80
|
-
- Callbacks now receive detailed parameters including the specific action taken (`added`, `modified`, `removed`), the item affected, and the previous value. This provides better context for handling updates.
|
|
81
|
-
|
|
82
|
-
#### Batched Updates for Object Properties
|
|
83
|
-
- Improved handling of object property updates to ensure changes are batched together, preventing multiple redundant callback triggers.
|
|
84
|
-
|
|
85
|
-
#### Refined Data Binding
|
|
86
|
-
- Enhanced data binding between model and view to ensure consistent synchronization without unnecessary updates.
|
|
72
|
+
- **Optional Persistent Data**: Save your data model to local storage for easy retrieval and persistence across sessions.
|
|
87
73
|
|
|
88
74
|
## Other Information
|
|
89
75
|
- The demo HTML file uses the Pico CSS framework for styling. You can find more information about Pico CSS [here](https://picocss.com/).
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "resonantjs",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.7",
|
|
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
|
@@ -1,5 +1,8 @@
|
|
|
1
1
|
class ObservableArray extends Array {
|
|
2
2
|
constructor(variableName, resonantInstance, ...args) {
|
|
3
|
+
if(resonantInstance === undefined) {
|
|
4
|
+
return super(...args);
|
|
5
|
+
}
|
|
3
6
|
super(...args);
|
|
4
7
|
this.variableName = variableName;
|
|
5
8
|
this.resonantInstance = resonantInstance;
|
|
@@ -69,6 +72,17 @@ class ObservableArray extends Array {
|
|
|
69
72
|
this.isDeleting = false;
|
|
70
73
|
return true;
|
|
71
74
|
}
|
|
75
|
+
|
|
76
|
+
filter(filter) {
|
|
77
|
+
if(this.resonantInstance === undefined) {
|
|
78
|
+
return super.filter(filter);
|
|
79
|
+
}
|
|
80
|
+
|
|
81
|
+
const result = super.filter(filter);
|
|
82
|
+
this.resonantInstance.arrayDataChangeDetection[this.variableName] = this.slice();
|
|
83
|
+
this.resonantInstance._queueUpdate(this.variableName, 'filtered');
|
|
84
|
+
return result;
|
|
85
|
+
}
|
|
72
86
|
}
|
|
73
87
|
|
|
74
88
|
class Resonant {
|
|
@@ -76,10 +90,11 @@ class Resonant {
|
|
|
76
90
|
this.data = {};
|
|
77
91
|
this.callbacks = {};
|
|
78
92
|
this.pendingUpdates = new Map();
|
|
79
|
-
this.arrayDataChangeDetection = {};
|
|
93
|
+
this.arrayDataChangeDetection = {};
|
|
80
94
|
}
|
|
81
95
|
|
|
82
|
-
add(variableName, value) {
|
|
96
|
+
add(variableName, value, persist) {
|
|
97
|
+
value = this.persist(variableName, value, persist);
|
|
83
98
|
if (Array.isArray(value)) {
|
|
84
99
|
this.data[variableName] = new ObservableArray(variableName, this, ...value);
|
|
85
100
|
this.arrayDataChangeDetection[variableName] = this.data[variableName].slice();
|
|
@@ -93,6 +108,25 @@ class Resonant {
|
|
|
93
108
|
this.updateElement(variableName);
|
|
94
109
|
}
|
|
95
110
|
|
|
111
|
+
persist(variableName, value, persist) {
|
|
112
|
+
if (persist === undefined || !persist) {
|
|
113
|
+
return value;
|
|
114
|
+
}
|
|
115
|
+
var found = localStorage.getItem('res_' + variableName);
|
|
116
|
+
if (found !== null && found !== undefined){
|
|
117
|
+
return JSON.parse(localStorage.getItem('res_' + variableName));
|
|
118
|
+
} else {
|
|
119
|
+
localStorage.setItem('res_' + variableName, JSON.stringify(value));
|
|
120
|
+
return value;
|
|
121
|
+
}
|
|
122
|
+
}
|
|
123
|
+
|
|
124
|
+
updatePersistentData(variableName) {
|
|
125
|
+
if (localStorage.getItem('res_' + variableName)) {
|
|
126
|
+
localStorage.setItem('res_' + variableName, JSON.stringify(this.data[variableName]));
|
|
127
|
+
}
|
|
128
|
+
}
|
|
129
|
+
|
|
96
130
|
addAll(config) {
|
|
97
131
|
Object.entries(config).forEach(([variableName, value]) => {
|
|
98
132
|
this.add(variableName, value);
|
|
@@ -146,6 +180,7 @@ class Resonant {
|
|
|
146
180
|
if (this.pendingUpdates.get(variableName).length === 1) {
|
|
147
181
|
setTimeout(() => {
|
|
148
182
|
const updates = this.pendingUpdates.get(variableName);
|
|
183
|
+
this.updatePersistentData(variableName);
|
|
149
184
|
this.pendingUpdates.delete(variableName);
|
|
150
185
|
updates.forEach(update => {
|
|
151
186
|
this._triggerCallbacks(variableName, update);
|
|
@@ -256,6 +291,14 @@ class Resonant {
|
|
|
256
291
|
parent = parent.parentElement;
|
|
257
292
|
}
|
|
258
293
|
|
|
294
|
+
let resStyles = styleElement.getAttribute('res-styles');
|
|
295
|
+
if (resStyles) {
|
|
296
|
+
let resStylesArray = resStyles.split(' ');
|
|
297
|
+
resStylesArray.forEach(resStyle => {
|
|
298
|
+
styleElement.classList.remove(resStyle);
|
|
299
|
+
});
|
|
300
|
+
}
|
|
301
|
+
|
|
259
302
|
if (index !== null) {
|
|
260
303
|
const item = this.data[variableName][index];
|
|
261
304
|
styleCondition = styleCondition.replace(new RegExp(`\\b${variableName}\\b`, 'g'), 'item');
|
|
@@ -271,8 +314,10 @@ class Resonant {
|
|
|
271
314
|
}
|
|
272
315
|
} else {
|
|
273
316
|
const styleClass = eval(styleCondition);
|
|
317
|
+
|
|
274
318
|
if (styleClass) {
|
|
275
319
|
styleElement.classList.add(styleClass);
|
|
320
|
+
styleElement.setAttribute('res-styles', styleClass);
|
|
276
321
|
} else {
|
|
277
322
|
var elementHasStyle = styleElement.classList.contains(styleClass);
|
|
278
323
|
if (elementHasStyle) {
|
|
@@ -339,7 +384,6 @@ class Resonant {
|
|
|
339
384
|
onclickElements.forEach(onclickEl => {
|
|
340
385
|
const functionName = onclickEl.getAttribute('res-onclick');
|
|
341
386
|
const removeKey = onclickEl.getAttribute('res-onclick-remove');
|
|
342
|
-
|
|
343
387
|
if (functionName) {
|
|
344
388
|
onclickEl.onclick = () => {
|
|
345
389
|
const func = new Function('item', `return ${functionName}(item)`);
|
|
@@ -368,4 +412,4 @@ class Resonant {
|
|
|
368
412
|
}
|
|
369
413
|
this.callbacks[variableName].push(method);
|
|
370
414
|
}
|
|
371
|
-
}
|
|
415
|
+
}
|
package/resonant.min.js
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
class ObservableArray extends Array{constructor(e,t,...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}push(...e){let 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){let 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;let a=this.resonantInstance.arrayDataChangeDetection[this.variableName],s="modified";e>=a.length?s="added":void 0===a[e]&&(s="added"),this.resonantInstance.arrayDataChangeDetection[this.variableName]=this.slice();let i=this[e];this[e]=t,this.resonantInstance._queueUpdate(this.variableName,s,this[e],e,i)}return!0}delete(e){let 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){if(void 0===this.resonantInstance)return super.filter(e);let t=super.filter(e);return this.resonantInstance.arrayDataChangeDetection[this.variableName]=this.slice(),this.resonantInstance._queueUpdate(this.variableName,"filtered"),t}}class Resonant{constructor(){this.data={},this.callbacks={},this.pendingUpdates=new Map,this.arrayDataChangeDetection={}}add(e,t,a){Array.isArray(t=this.persist(e,t,a))?(this.data[e]=new ObservableArray(e,this,...t),this.arrayDataChangeDetection[e]=this.data[e].slice()):"object"==typeof t?this.data[e]=this._createObject(e,t):this.data[e]=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)}updatePersistentData(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){let 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()):"object"==typeof t?this.data[e]=this._createObject(e,t):this.data[e]=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(()=>{let t=this.pendingUpdates.get(e);this.updatePersistentData(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=>{let s=t.item||t.oldValue;a(this.data[e],s,t.action)})}updateElement(e){let 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){let s=t.querySelectorAll("[res-prop]");s.forEach(t=>{let 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){let conditionalElements=document.querySelectorAll(`[res-display*="${variableName}"]`);conditionalElements.forEach(conditionalElement=>{let 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){let 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&&resStyles.split(" ").forEach(e=>{styleElement.classList.remove(e)}),null!==index){let item=this.data[variableName][index];styleCondition=styleCondition.replace(RegExp(`\\b${variableName}\\b`,"g"),"item");let styleClass=Function("item",`return ${styleCondition}`)(item);if(styleClass)styleElement.classList.add(styleClass);else{var elementHasStyle=styleElement.classList.contains(styleClass);elementHasStyle&&styleElement.classList.remove(styleClass)}}else{let 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)=>{let r=a.cloneNode(!0);for(let n in r.setAttribute("res-index",i),s){let l=r.querySelector(`[res-prop="${n}"]`);l&&(l.hasAttribute("data-resonant-bound")?"INPUT"===l.tagName||"TEXTAREA"===l.tagName?"checkbox"===l.type?l.checked=s[n]:l.value=s[n]:l.innerHTML=s[n]:("INPUT"===l.tagName||"TEXTAREA"===l.tagName?"checkbox"===l.type?(l.checked=s[n],l.onchange=()=>{s[n]=l.checked,this._queueUpdate(e,"modified",s,n,s[n])}):(l.value=s[n],l.oninput=()=>{s[n]=l.value,this._queueUpdate(e,"modified",s,n,s[n])}):l.innerHTML=s[n],l.setAttribute("data-resonant-bound","true")))}let h=r.querySelectorAll("[res-onclick], [res-onclick-remove]");h.forEach(t=>{let a=t.getAttribute("res-onclick"),i=t.getAttribute("res-onclick-remove");a&&(t.onclick=()=>{let e=Function("item",`return ${a}(item)`);e(s)}),i&&(t.onclick=()=>{let t=this.data[e].findIndex(e=>e[i]===s[i]);-1!==t&&this.data[e].splice(t,1)})}),r.setAttribute("res-rendered",!0),t.appendChild(r)})}addCallback(e,t){this.callbacks[e]||(this.callbacks[e]=[]),this.callbacks[e].push(t)}}
|