cx 26.0.11 → 26.0.12

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "cx",
3
- "version": "26.0.11",
3
+ "version": "26.0.12",
4
4
  "description": "Advanced JavaScript UI framework for admin and dashboard applications with ready to use grid, form and chart components.",
5
5
  "exports": {
6
6
  "./data/": "./build/data/",
@@ -1,165 +1,153 @@
1
- import { Selection, SelectionConfig, SelectionOptions } from "./Selection";
2
- import { isArray } from "../../util/isArray";
3
- import { isNonEmptyArray } from "../../util/isNonEmptyArray";
4
- import { shallowEquals } from "../../util/shallowEquals";
5
- import { View } from "../../data/View";
6
- import { Prop } from "../Prop";
7
-
8
- export interface KeySelectionConfig extends SelectionConfig {
9
- /** Binding path for selection state. */
10
- bind?: string;
11
-
12
- /** Set to `true` to allow multiple selection. */
13
- multiple?: boolean;
14
-
15
- /** Name of the field used as a key. Default is `id`. */
16
- keyField?: string;
17
-
18
- /** Storage format. Can be `array` or `hash`. Default is `array`. */
19
- storage?: string;
20
-
21
- /** Selection binding configuration. */
22
- selection?: Prop<any>;
23
-
24
- /** Record binding. */
25
- record?: Prop<any>;
26
-
27
- /** Index binding. */
28
- index?: Prop<any>;
29
- }
30
-
31
- export class KeySelection extends Selection {
32
- declare selection: any;
33
- declare key: any;
34
- declare keyField: string | false;
35
- declare keyFields: string[];
36
- declare initialized: boolean;
37
- declare storage: string;
38
-
39
- constructor(config?: KeySelectionConfig) {
40
- super(config);
41
- }
42
-
43
- init(): void {
44
- if (this.bind && !this.selection)
45
- this.selection = {
46
- bind: this.bind,
47
- };
48
-
49
- if (!this.selection) this.selection = {};
50
-
51
- if (isArray(this.keyFields)) this.keyField = false;
52
-
53
- this.initialized = true;
54
- }
55
-
56
- getKey(record: any): any {
57
- if (this.key != null) return this.key;
58
-
59
- if (!record) return null;
60
-
61
- if (this.keyField) return record[this.keyField];
62
-
63
- var key: any = {};
64
- this.keyFields!.forEach((k) => {
65
- key[k] = record[k];
66
- });
67
- return key;
68
- }
69
-
70
- areKeysEqual(key1: any, key2: any): boolean {
71
- if (this.keyField) return key1 === key2 && key1 != null;
72
-
73
- if (!key1 || !key2) return false;
74
-
75
- return !this.keyFields!.some((k) => key1[k] !== key2[k]);
76
- }
77
-
78
- declareData(...args: any[]): any {
79
- return super.declareData(
80
- {
81
- $selection: { structured: true },
82
- },
83
- ...args,
84
- );
85
- }
86
-
87
- configureWidget(widget: any): any {
88
- if (!this.initialized) this.init();
89
-
90
- widget.$selection = Object.assign(widget.$selection || {}, {
91
- keys: this.selection,
92
- });
93
-
94
- return super.configureWidget(widget);
95
- }
96
-
97
- selectMultiple(store: View, records: any[], indexes: any[], { toggle, add }: SelectionOptions = {}): any {
98
- if (!this.selection.bind) return false;
99
-
100
- if (this.toggle) toggle = true;
101
-
102
- if (!isNonEmptyArray(records)) {
103
- if (!toggle && !add) return store.delete(this.selection.bind);
104
- return false;
105
- }
106
-
107
- var keys = records.map((record) => this.getKey(record));
108
- var selection = store.get(this.selection.bind);
109
- if (!this.multiple) {
110
- let key = keys[0];
111
- if (!toggle || !this.areKeysEqual(selection, key)) store.set(this.selection.bind, key);
112
- else store.delete(this.selection.bind);
113
- } else {
114
- if (this.storage == "array") {
115
- if (!isArray(selection) || (!toggle && !add)) this.updateSelectionWithShallowEqualsCheck(store, keys);
116
- else {
117
- let newSelection = [...selection];
118
- keys.forEach((key) => {
119
- let exists = selection.some((x: any) => this.areKeysEqual(x, key));
120
- if (!exists) newSelection.push(key);
121
- else if (toggle) newSelection = newSelection.filter((x: any) => !this.areKeysEqual(x, key)); //TODO: optimize
122
- });
123
- this.updateSelectionWithShallowEqualsCheck(store, newSelection);
124
- }
125
- } else if (this.storage == "hash") {
126
- let newSelection = toggle ? { ...selection } : {};
127
- keys.forEach((key) => {
128
- newSelection[key] = !newSelection[key];
129
- });
130
- this.updateSelectionWithShallowEqualsCheck(store, newSelection);
131
- }
132
- }
133
- }
134
-
135
- updateSelectionWithShallowEqualsCheck(store: View, newSelection: any): void {
136
- store.update(this.selection.bind, (data: any) => (shallowEquals(data, newSelection) ? data : newSelection));
137
- }
138
-
139
- getIsSelectedDelegate(store: View): (record: any, index: any) => boolean {
140
- if (!this.selection.bind) return () => false;
141
-
142
- var selection = store.get(this.selection.bind);
143
-
144
- if (this.multiple) {
145
- if (this.storage == "array") {
146
- selection = selection || [];
147
- return (record, index) => selection.some((k: any) => this.areKeysEqual(this.getKey(record), k));
148
- } else {
149
- selection = selection || {};
150
- return (record, index) => selection[this.getKey(record)];
151
- }
152
- } else return (record, index) => this.areKeysEqual(selection, this.getKey(record));
153
- }
154
-
155
- isSelected(store: View, record: any, index: any): boolean {
156
- return this.getIsSelectedDelegate(store)(record, index);
157
- }
158
- }
159
-
160
- KeySelection.prototype.multiple = false;
161
- KeySelection.prototype.keyField = "id";
162
- KeySelection.prototype.storage = "array";
163
- (KeySelection as any).autoInit = true;
164
-
165
- Selection.alias("key", KeySelection);
1
+ import { Selection, SelectionConfig, SelectionOptions } from "./Selection";
2
+ import { isArray } from "../../util/isArray";
3
+ import { isNonEmptyArray } from "../../util/isNonEmptyArray";
4
+ import { shallowEquals } from "../../util/shallowEquals";
5
+ import { View } from "../../data/View";
6
+ import { Prop } from "../Prop";
7
+
8
+ export interface KeySelectionConfig extends SelectionConfig {
9
+ /** Name of the field used as a key. Default is `id`. */
10
+ keyField?: string;
11
+
12
+ /** Storage format. Can be `array` or `hash`. Default is `array`. */
13
+ storage?: string;
14
+
15
+ /** Selection binding configuration. */
16
+ selection?: Prop<any>;
17
+ }
18
+
19
+ export class KeySelection extends Selection {
20
+ declare selection: any;
21
+ declare key: any;
22
+ declare keyField: string | false;
23
+ declare keyFields: string[];
24
+ declare initialized: boolean;
25
+ declare storage: string;
26
+
27
+ constructor(config?: KeySelectionConfig) {
28
+ super(config);
29
+ }
30
+
31
+ init(): void {
32
+ if (this.bind && !this.selection)
33
+ this.selection = {
34
+ bind: this.bind,
35
+ };
36
+
37
+ if (!this.selection) this.selection = {};
38
+
39
+ if (isArray(this.keyFields)) this.keyField = false;
40
+
41
+ this.initialized = true;
42
+ }
43
+
44
+ getKey(record: any): any {
45
+ if (this.key != null) return this.key;
46
+
47
+ if (!record) return null;
48
+
49
+ if (this.keyField) return record[this.keyField];
50
+
51
+ var key: any = {};
52
+ this.keyFields!.forEach((k) => {
53
+ key[k] = record[k];
54
+ });
55
+ return key;
56
+ }
57
+
58
+ areKeysEqual(key1: any, key2: any): boolean {
59
+ if (this.keyField) return key1 === key2 && key1 != null;
60
+
61
+ if (!key1 || !key2) return false;
62
+
63
+ return !this.keyFields!.some((k) => key1[k] !== key2[k]);
64
+ }
65
+
66
+ declareData(...args: any[]): any {
67
+ return super.declareData(
68
+ {
69
+ $selection: { structured: true },
70
+ },
71
+ ...args,
72
+ );
73
+ }
74
+
75
+ configureWidget(widget: any): any {
76
+ if (!this.initialized) this.init();
77
+
78
+ widget.$selection = Object.assign(widget.$selection || {}, {
79
+ keys: this.selection,
80
+ });
81
+
82
+ return super.configureWidget(widget);
83
+ }
84
+
85
+ selectMultiple(store: View, records: any[], indexes: any[], { toggle, add }: SelectionOptions = {}): any {
86
+ if (!this.selection.bind) return false;
87
+
88
+ if (this.toggle) toggle = true;
89
+
90
+ if (!isNonEmptyArray(records)) {
91
+ if (!toggle && !add) return store.delete(this.selection.bind);
92
+ return false;
93
+ }
94
+
95
+ var keys = records.map((record) => this.getKey(record));
96
+ var selection = store.get(this.selection.bind);
97
+ if (!this.multiple) {
98
+ let key = keys[0];
99
+ if (!toggle || !this.areKeysEqual(selection, key)) store.set(this.selection.bind, key);
100
+ else store.delete(this.selection.bind);
101
+ } else {
102
+ if (this.storage == "array") {
103
+ if (!isArray(selection) || (!toggle && !add)) this.updateSelectionWithShallowEqualsCheck(store, keys);
104
+ else {
105
+ let newSelection = [...selection];
106
+ keys.forEach((key) => {
107
+ let exists = selection.some((x: any) => this.areKeysEqual(x, key));
108
+ if (!exists) newSelection.push(key);
109
+ else if (toggle) newSelection = newSelection.filter((x: any) => !this.areKeysEqual(x, key)); //TODO: optimize
110
+ });
111
+ this.updateSelectionWithShallowEqualsCheck(store, newSelection);
112
+ }
113
+ } else if (this.storage == "hash") {
114
+ let newSelection = toggle ? { ...selection } : {};
115
+ keys.forEach((key) => {
116
+ newSelection[key] = !newSelection[key];
117
+ });
118
+ this.updateSelectionWithShallowEqualsCheck(store, newSelection);
119
+ }
120
+ }
121
+ }
122
+
123
+ updateSelectionWithShallowEqualsCheck(store: View, newSelection: any): void {
124
+ store.update(this.selection.bind, (data: any) => (shallowEquals(data, newSelection) ? data : newSelection));
125
+ }
126
+
127
+ getIsSelectedDelegate(store: View): (record: any, index: any) => boolean {
128
+ if (!this.selection.bind) return () => false;
129
+
130
+ var selection = store.get(this.selection.bind);
131
+
132
+ if (this.multiple) {
133
+ if (this.storage == "array") {
134
+ selection = selection || [];
135
+ return (record, index) => selection.some((k: any) => this.areKeysEqual(this.getKey(record), k));
136
+ } else {
137
+ selection = selection || {};
138
+ return (record, index) => selection[this.getKey(record)];
139
+ }
140
+ } else return (record, index) => this.areKeysEqual(selection, this.getKey(record));
141
+ }
142
+
143
+ isSelected(store: View, record: any, index: any): boolean {
144
+ return this.getIsSelectedDelegate(store)(record, index);
145
+ }
146
+ }
147
+
148
+ KeySelection.prototype.multiple = false;
149
+ KeySelection.prototype.keyField = "id";
150
+ KeySelection.prototype.storage = "array";
151
+ (KeySelection as any).autoInit = true;
152
+
153
+ Selection.alias("key", KeySelection);
@@ -1,87 +1,87 @@
1
- import { Selection, SelectionOptions } from "./Selection";
2
- import { View } from "../../data/View";
3
- import { isAccessorChain } from "../../data/createAccessorModelProxy";
4
- import { Binding } from "../Prop";
5
-
6
- export interface PropertySelectionConfig {
7
- /** Name of the field used to indicate selection. Default is `selected`. */
8
- selectedField?: string;
9
-
10
- /** Set to `true` to allow multiple selection. */
11
- multiple?: boolean;
12
-
13
- /** Name of the field used as a key. */
14
- keyField?: string;
15
-
16
- /** Record binding. */
17
- record?: Binding;
18
-
19
- /** Records binding. */
20
- records?: Binding;
21
-
22
- /** Index binding. */
23
- index?: Binding;
24
-
25
- /** Binding path for selection state. */
26
- bind?: string;
27
- }
28
-
29
- export class PropertySelection extends Selection {
30
- declare records: any;
31
- declare selectedField: string;
32
-
33
- constructor(config?: PropertySelectionConfig) {
34
- super(config);
35
- }
36
-
37
- selectMultiple(store: View, records: any[], indexes: any[], { toggle, add }: SelectionOptions = {}): any {
38
- if (this.toggle) toggle = true;
39
-
40
- if (!this.records) return false;
41
-
42
- let path = isAccessorChain(this.records) ? this.records.toString() : this.records.bind;
43
- if (!path) return false;
44
-
45
- let array = store.get(path);
46
- let newArray = [...array];
47
- let dirty = false;
48
-
49
- if (!toggle && !add) {
50
- newArray.forEach((r, i) => {
51
- if (r[this.selectedField]) {
52
- let nr = Object.assign({}, r);
53
- nr[this.selectedField] = false;
54
- newArray[i] = nr;
55
- dirty = true;
56
- }
57
- });
58
- }
59
-
60
- records.forEach((record, i) => {
61
- let index = indexes[i];
62
- let rec = newArray[index];
63
- if (array[index] !== record) throw new Error("Stale data.");
64
-
65
- let value = rec[this.selectedField];
66
- let newValue = add ? true : toggle ? !value : true;
67
-
68
- if (value == newValue) return;
69
-
70
- let newRec = Object.assign({}, rec);
71
- newRec[this.selectedField] = newValue;
72
- newArray[index] = newRec;
73
- dirty = true;
74
- });
75
-
76
- if (dirty) store.set(path, newArray);
77
- }
78
-
79
- isSelected(store: View, record: any, index: any): boolean {
80
- return record && record[this.selectedField!];
81
- }
82
- }
83
-
84
- PropertySelection.prototype.selectedField = "selected";
85
- PropertySelection.prototype.multiple = false;
86
-
87
- (Selection as any).alias("property", PropertySelection);
1
+ import { Selection, SelectionOptions } from "./Selection";
2
+ import { View } from "../../data/View";
3
+ import { isAccessorChain } from "../../data/createAccessorModelProxy";
4
+ import { Binding } from "../Prop";
5
+
6
+ export interface PropertySelectionConfig {
7
+ /** Name of the field used to indicate selection. Default is `selected`. */
8
+ selectedField?: string;
9
+
10
+ /** Set to `true` to allow multiple selection. */
11
+ multiple?: boolean;
12
+
13
+ /** Name of the field used as a key. */
14
+ keyField?: string;
15
+
16
+ /** Record binding. */
17
+ record?: Binding;
18
+
19
+ /** Records binding. */
20
+ records?: Binding;
21
+
22
+ /** Index binding. */
23
+ index?: Binding;
24
+
25
+ /** Binding path for selection state. */
26
+ bind?: string;
27
+ }
28
+
29
+ export class PropertySelection extends Selection {
30
+ declare records: any;
31
+ declare selectedField: string;
32
+
33
+ constructor(config?: PropertySelectionConfig) {
34
+ super(config);
35
+ }
36
+
37
+ selectMultiple(store: View, records: any[], indexes: any[], { toggle, add }: SelectionOptions = {}): any {
38
+ if (this.toggle) toggle = true;
39
+
40
+ if (!this.records) return false;
41
+
42
+ let path = isAccessorChain(this.records) ? this.records.toString() : this.records.bind;
43
+ if (!path) return false;
44
+
45
+ let array = store.get(path);
46
+ let newArray = [...array];
47
+ let dirty = false;
48
+
49
+ if (!toggle && !add) {
50
+ newArray.forEach((r, i) => {
51
+ if (r[this.selectedField]) {
52
+ let nr = Object.assign({}, r);
53
+ nr[this.selectedField] = false;
54
+ newArray[i] = nr;
55
+ dirty = true;
56
+ }
57
+ });
58
+ }
59
+
60
+ records.forEach((record, i) => {
61
+ let index = indexes[i];
62
+ let rec = newArray[index];
63
+ if (array[index] !== record) throw new Error("Stale data.");
64
+
65
+ let value = rec[this.selectedField];
66
+ let newValue = add ? true : toggle ? !value : true;
67
+
68
+ if (value == newValue) return;
69
+
70
+ let newRec = Object.assign({}, rec);
71
+ newRec[this.selectedField] = newValue;
72
+ newArray[index] = newRec;
73
+ dirty = true;
74
+ });
75
+
76
+ if (dirty) store.set(path, newArray);
77
+ }
78
+
79
+ isSelected(store: View, record: any, index: any): boolean {
80
+ return record && record[this.selectedField!];
81
+ }
82
+ }
83
+
84
+ PropertySelection.prototype.selectedField = "selected";
85
+ PropertySelection.prototype.multiple = false;
86
+
87
+ (Selection as any).alias("property", PropertySelection);