ariadne_view_components 0.0.53-aarch64-linux → 0.0.55-aarch64-linux
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +4 -0
- data/app/components/ariadne/accumulator_controller/accumulator_controller.js +2 -2
- data/app/components/ariadne/accumulator_controller/accumulator_controller.ts +2 -2
- data/app/components/ariadne/options_controller/options_controller.js +2 -2
- data/app/components/ariadne/options_controller/options_controller.ts +2 -2
- data/app/components/ariadne/string_match_controller/string_match_controller.js +2 -2
- data/app/components/ariadne/string_match_controller/string_match_controller.ts +2 -2
- data/app/components/ariadne/synced_boolean_attributes_controller/synced_boolean_attributes_controller.d.ts +3 -0
- data/app/components/ariadne/synced_boolean_attributes_controller/synced_boolean_attributes_controller.js +38 -4
- data/app/components/ariadne/synced_boolean_attributes_controller/synced_boolean_attributes_controller.ts +45 -4
- data/app/lib/ariadne/form_builder.rb +6 -0
- data/lib/ariadne/view_components/version.rb +1 -1
- metadata +2 -21
- data/app/assets/javascripts/ariadne_view_components.js +0 -8
- data/app/assets/javascripts/ariadne_view_components.js.map +0 -1
- data/app/assets/javascripts/components/ariadne/accumulator_controller/accumulator_controller.d.ts +0 -22
- data/app/assets/javascripts/components/ariadne/ariadne-form.d.ts +0 -22
- data/app/assets/javascripts/components/ariadne/ariadne.d.ts +0 -2
- data/app/assets/javascripts/components/ariadne/clipboard_copy_component/clipboard-copy-component.d.ts +0 -4
- data/app/assets/javascripts/components/ariadne/dropdown/menu_component.d.ts +0 -1
- data/app/assets/javascripts/components/ariadne/events_controller/events_controller.d.ts +0 -4
- data/app/assets/javascripts/components/ariadne/options_controller/options_controller.d.ts +0 -39
- data/app/assets/javascripts/components/ariadne/outlet_manager_controller/outlet_manager_controller.d.ts +0 -42
- data/app/assets/javascripts/components/ariadne/rich_text_area_component/rich-text-area-component.d.ts +0 -6
- data/app/assets/javascripts/components/ariadne/slideover_component/slideover-component.d.ts +0 -9
- data/app/assets/javascripts/components/ariadne/string_match_controller/string_match_controller.d.ts +0 -27
- data/app/assets/javascripts/components/ariadne/synced_boolean_attributes_controller/synced_boolean_attributes_controller.d.ts +0 -45
- data/app/assets/javascripts/components/ariadne/tab_container_component/tab-container-component.d.ts +0 -1
- data/app/assets/javascripts/components/ariadne/tab_nav_component/tab-nav-component.d.ts +0 -9
- data/app/assets/javascripts/components/ariadne/time_ago_component/time-ago-component.d.ts +0 -1
- data/app/assets/javascripts/components/ariadne/toggleable_controller/toggleable_controller.d.ts +0 -34
- data/app/assets/javascripts/components/ariadne/tooltip_component/tooltip-component.d.ts +0 -24
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 806073b6e52610788efbdce81e097aa0dcc320b248840bcc78c8725fdc1fa971
|
4
|
+
data.tar.gz: 8ddc41c41d707ec285e90ab0f5885bd0ba6a72762f2118b52e77fc25a8f6d06e
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 2ba27b4f99c55fd202c404c1709ad2be6d875c317a37a8ae3f658f9e37df2205e419a4b6031a50fa144b3dc1b6fe24ea349bd87fdf9a1504159b0ee193da7d7d
|
7
|
+
data.tar.gz: 16940a5434ca1c8551e0c1d475845e565be127bd2f14359b459f0e4a0f86c3faed71b82ff45f33b22913e7b74f5a738e134d531d667a9597b7415759fe005f40
|
data/CHANGELOG.md
CHANGED
@@ -5,7 +5,7 @@ class AccumulatorController extends Controller {
|
|
5
5
|
}
|
6
6
|
accumulate() {
|
7
7
|
let sum = 0;
|
8
|
-
for (
|
8
|
+
for (const i in this.sumTargets) {
|
9
9
|
const target = this.sumTargets[i];
|
10
10
|
const value = Number(target.getAttribute(this.sumAttrValue));
|
11
11
|
if (!isNaN(value)) {
|
@@ -15,7 +15,7 @@ class AccumulatorController extends Controller {
|
|
15
15
|
this.setAttributesTo(sum);
|
16
16
|
}
|
17
17
|
setAttributesTo(sum) {
|
18
|
-
for (
|
18
|
+
for (const i in this.syncAttrsValue) {
|
19
19
|
const attr = this.syncAttrsValue[i];
|
20
20
|
this.accumulator.setAttribute(attr, sum.toString());
|
21
21
|
}
|
@@ -24,7 +24,7 @@ export default class AccumulatorController extends Controller {
|
|
24
24
|
|
25
25
|
accumulate() {
|
26
26
|
let sum = 0
|
27
|
-
for (
|
27
|
+
for (const i in this.sumTargets) {
|
28
28
|
const target = this.sumTargets[i]
|
29
29
|
const value = Number(target.getAttribute(this.sumAttrValue))
|
30
30
|
if (!isNaN(value)) {
|
@@ -36,7 +36,7 @@ export default class AccumulatorController extends Controller {
|
|
36
36
|
}
|
37
37
|
|
38
38
|
setAttributesTo(sum: number) {
|
39
|
-
for (
|
39
|
+
for (const i in this.syncAttrsValue) {
|
40
40
|
const attr = this.syncAttrsValue[i]
|
41
41
|
this.accumulator.setAttribute(attr, sum.toString())
|
42
42
|
}
|
@@ -14,7 +14,7 @@ class OptionsController extends SyncedBooleanAttributesController {
|
|
14
14
|
select(event, updateTo = {}) {
|
15
15
|
var _a;
|
16
16
|
const activeOptions = updateTo.data;
|
17
|
-
for (
|
17
|
+
for (const index in this.optionTargets) {
|
18
18
|
const target = this.optionTargets[index];
|
19
19
|
const wasSelected = target === event.currentTarget;
|
20
20
|
const isCurrentlyActive = (_a = this.getValueForElement(target)) !== null && _a !== void 0 ? _a : false;
|
@@ -78,7 +78,7 @@ _OptionsController_instances = new WeakSet(), _OptionsController_shouldChangeSta
|
|
78
78
|
if (elementValue) {
|
79
79
|
return elementValue;
|
80
80
|
}
|
81
|
-
return element.
|
81
|
+
return element.textContent.trim();
|
82
82
|
};
|
83
83
|
OptionsController.outlets = SyncedBooleanAttributesController.outlets;
|
84
84
|
OptionsController.targets = ['option'];
|
@@ -31,7 +31,7 @@ export default class OptionsController
|
|
31
31
|
|
32
32
|
select(event: Event, updateTo: TOutletChangeData<TActiveOptions> = {}) {
|
33
33
|
const activeOptions = updateTo.data
|
34
|
-
for (
|
34
|
+
for (const index in this.optionTargets) {
|
35
35
|
const target = this.optionTargets[index]
|
36
36
|
const wasSelected = target === event.currentTarget
|
37
37
|
const isCurrentlyActive = this.getValueForElement(target) ?? false
|
@@ -101,7 +101,7 @@ export default class OptionsController
|
|
101
101
|
return elementValue
|
102
102
|
}
|
103
103
|
|
104
|
-
return (element as HTMLElement).
|
104
|
+
return (element as HTMLElement).textContent.trim()
|
105
105
|
}
|
106
106
|
|
107
107
|
getValueForElement(element: Element) {
|
@@ -23,7 +23,7 @@ class StringMatchController extends SyncedBooleanAttributesController {
|
|
23
23
|
}
|
24
24
|
getValueForElement(element) {
|
25
25
|
var _a, _b;
|
26
|
-
return (_b = (_a = element.
|
26
|
+
return (_b = (_a = element.textContent) === null || _a === void 0 ? void 0 : _a.toLowerCase().includes(this.keywordValue.toLowerCase())) !== null && _b !== void 0 ? _b : false;
|
27
27
|
}
|
28
28
|
getState() {
|
29
29
|
return this.keywordValue;
|
@@ -32,7 +32,7 @@ class StringMatchController extends SyncedBooleanAttributesController {
|
|
32
32
|
_StringMatchController_instances = new WeakSet(), _StringMatchController_compareKeywordToTargets = function _StringMatchController_compareKeywordToTargets() {
|
33
33
|
if (this.hasMatchTarget) {
|
34
34
|
let foundMatch = false;
|
35
|
-
for (
|
35
|
+
for (const index in this.matchTargets) {
|
36
36
|
const target = this.matchTargets[index];
|
37
37
|
const value = this.getValueForElement(target);
|
38
38
|
this.updateAttributesForElement(target, value);
|
@@ -34,7 +34,7 @@ export default class StringMatchController
|
|
34
34
|
#compareKeywordToTargets() {
|
35
35
|
if (this.hasMatchTarget) {
|
36
36
|
let foundMatch = false
|
37
|
-
for (
|
37
|
+
for (const index in this.matchTargets) {
|
38
38
|
const target = this.matchTargets[index]
|
39
39
|
const value = this.getValueForElement(target)
|
40
40
|
this.updateAttributesForElement(target, value)
|
@@ -54,7 +54,7 @@ export default class StringMatchController
|
|
54
54
|
}
|
55
55
|
|
56
56
|
getValueForElement(element: Element) {
|
57
|
-
return (element as HTMLElement).
|
57
|
+
return (element as HTMLElement).textContent?.toLowerCase().includes(this.keywordValue.toLowerCase()) ?? false
|
58
58
|
}
|
59
59
|
|
60
60
|
getState() {
|
@@ -39,6 +39,9 @@ export default class SyncedBooleanAttributesController<T> extends OutletManagerC
|
|
39
39
|
getElementsToSync(): Array<Element> | null | undefined;
|
40
40
|
connect(): void;
|
41
41
|
updateAttributesForElement(element: Element, value: boolean): void;
|
42
|
+
getSyncedAttrsForElement(element: Element): string[] | null;
|
43
|
+
getAntiAttrsForElement(element: Element): string[] | null;
|
44
|
+
getParsedAttributeForElement<T>(element: Element, attribute: string): T | null;
|
42
45
|
syncElementAttributes(): void;
|
43
46
|
validateAttrChange(dispatchEvent: TStimulusDispatchEvent<TSyncAttrDetail>): void;
|
44
47
|
doesElementHaveOnAttrs(element: Element): boolean;
|
@@ -61,11 +61,45 @@ class SyncedBooleanAttributesController extends OutletManagerController {
|
|
61
61
|
updateAttributesForElement(element, value) {
|
62
62
|
// This is how you should update any synced or anti-synced attrs on your elements
|
63
63
|
// Do not do it manually unless you are very sure of what you're doing
|
64
|
+
const syncedAttrs = this.getSyncedAttrsForElement(element);
|
65
|
+
if (syncedAttrs === null || syncedAttrs === void 0 ? void 0 : syncedAttrs.length) {
|
66
|
+
__classPrivateFieldGet(this, _SyncedBooleanAttributesController_instances, "m", _SyncedBooleanAttributesController_setAttrs).call(this, element, syncedAttrs, value);
|
67
|
+
}
|
68
|
+
const antiAttrs = this.getAntiAttrsForElement(element);
|
69
|
+
if (antiAttrs === null || antiAttrs === void 0 ? void 0 : antiAttrs.length) {
|
70
|
+
__classPrivateFieldGet(this, _SyncedBooleanAttributesController_instances, "m", _SyncedBooleanAttributesController_setAttrs).call(this, element, antiAttrs, !value);
|
71
|
+
}
|
72
|
+
}
|
73
|
+
getSyncedAttrsForElement(element) {
|
74
|
+
const parsedAttrs = this.getParsedAttributeForElement(element, 'data-options-synced-attrs-value');
|
75
|
+
if (parsedAttrs) {
|
76
|
+
return parsedAttrs;
|
77
|
+
}
|
64
78
|
if (this.hasSyncedAttrsValue) {
|
65
|
-
|
79
|
+
return this.syncedAttrsValue;
|
80
|
+
}
|
81
|
+
return null;
|
82
|
+
}
|
83
|
+
getAntiAttrsForElement(element) {
|
84
|
+
const parsedAttrs = this.getParsedAttributeForElement(element, 'data-options-anti-attrs-value');
|
85
|
+
if (parsedAttrs) {
|
86
|
+
return parsedAttrs;
|
66
87
|
}
|
67
88
|
if (this.hasAntiAttrsValue) {
|
68
|
-
|
89
|
+
return this.antiAttrsValue;
|
90
|
+
}
|
91
|
+
return null;
|
92
|
+
}
|
93
|
+
getParsedAttributeForElement(element, attribute) {
|
94
|
+
const attr = element.getAttribute(attribute);
|
95
|
+
try {
|
96
|
+
if (attr === null) {
|
97
|
+
throw new Error('Bad attr');
|
98
|
+
}
|
99
|
+
return JSON.parse(attr);
|
100
|
+
}
|
101
|
+
catch (err) {
|
102
|
+
return null;
|
69
103
|
}
|
70
104
|
}
|
71
105
|
syncElementAttributes() {
|
@@ -74,7 +108,7 @@ class SyncedBooleanAttributesController extends OutletManagerController {
|
|
74
108
|
// Essentially just a "sync attrs and anti-attrs on mount" function
|
75
109
|
const elements = this.getElementsToSync();
|
76
110
|
if (elements === null || elements === void 0 ? void 0 : elements.length) {
|
77
|
-
for (
|
111
|
+
for (const index in elements) {
|
78
112
|
const element = elements[index];
|
79
113
|
const value = (_a = this.getValueForElement(element)) !== null && _a !== void 0 ? _a : false;
|
80
114
|
this.updateAttributesForElement(element, value);
|
@@ -137,7 +171,7 @@ _SyncedBooleanAttributesController_instances = new WeakSet(), _SyncedBooleanAttr
|
|
137
171
|
// Attempts to change the attr for an element. However, it'll dispatch an event
|
138
172
|
// first so other controllers get the opportunity to deny it
|
139
173
|
const attrState = JSON.stringify(value);
|
140
|
-
for (
|
174
|
+
for (const index in attrs) {
|
141
175
|
const attr = attrs[index];
|
142
176
|
const dispatchEvent = this.dispatch('attrChange', {
|
143
177
|
target: element,
|
@@ -93,12 +93,53 @@ export default class SyncedBooleanAttributesController<T> extends OutletManagerC
|
|
93
93
|
updateAttributesForElement(element: Element, value: boolean) {
|
94
94
|
// This is how you should update any synced or anti-synced attrs on your elements
|
95
95
|
// Do not do it manually unless you are very sure of what you're doing
|
96
|
+
const syncedAttrs = this.getSyncedAttrsForElement(element)
|
97
|
+
if (syncedAttrs?.length) {
|
98
|
+
this.#setAttrs(element, syncedAttrs, value)
|
99
|
+
}
|
100
|
+
|
101
|
+
const antiAttrs = this.getAntiAttrsForElement(element)
|
102
|
+
if (antiAttrs?.length) {
|
103
|
+
this.#setAttrs(element, antiAttrs, !value)
|
104
|
+
}
|
105
|
+
}
|
106
|
+
|
107
|
+
getSyncedAttrsForElement(element: Element) {
|
108
|
+
const parsedAttrs = this.getParsedAttributeForElement<Array<string>>(element, 'data-options-synced-attrs-value')
|
109
|
+
if (parsedAttrs) {
|
110
|
+
return parsedAttrs
|
111
|
+
}
|
112
|
+
|
96
113
|
if (this.hasSyncedAttrsValue) {
|
97
|
-
|
114
|
+
return this.syncedAttrsValue
|
115
|
+
}
|
116
|
+
|
117
|
+
return null
|
118
|
+
}
|
119
|
+
|
120
|
+
getAntiAttrsForElement(element: Element) {
|
121
|
+
const parsedAttrs = this.getParsedAttributeForElement<Array<string>>(element, 'data-options-anti-attrs-value')
|
122
|
+
if (parsedAttrs) {
|
123
|
+
return parsedAttrs
|
98
124
|
}
|
99
125
|
|
100
126
|
if (this.hasAntiAttrsValue) {
|
101
|
-
|
127
|
+
return this.antiAttrsValue
|
128
|
+
}
|
129
|
+
|
130
|
+
return null
|
131
|
+
}
|
132
|
+
|
133
|
+
getParsedAttributeForElement<T>(element: Element, attribute: string) {
|
134
|
+
const attr = element.getAttribute(attribute)
|
135
|
+
try {
|
136
|
+
if (attr === null) {
|
137
|
+
throw new Error('Bad attr')
|
138
|
+
}
|
139
|
+
|
140
|
+
return JSON.parse(attr) as T
|
141
|
+
} catch (err) {
|
142
|
+
return null
|
102
143
|
}
|
103
144
|
}
|
104
145
|
|
@@ -108,7 +149,7 @@ export default class SyncedBooleanAttributesController<T> extends OutletManagerC
|
|
108
149
|
const elements = this.getElementsToSync()
|
109
150
|
|
110
151
|
if (elements?.length) {
|
111
|
-
for (
|
152
|
+
for (const index in elements) {
|
112
153
|
const element = elements[index]
|
113
154
|
const value = this.getValueForElement(element) ?? false
|
114
155
|
this.updateAttributesForElement(element, value)
|
@@ -181,7 +222,7 @@ export default class SyncedBooleanAttributesController<T> extends OutletManagerC
|
|
181
222
|
// Attempts to change the attr for an element. However, it'll dispatch an event
|
182
223
|
// first so other controllers get the opportunity to deny it
|
183
224
|
const attrState = JSON.stringify(value)
|
184
|
-
for (
|
225
|
+
for (const index in attrs) {
|
185
226
|
const attr = attrs[index]
|
186
227
|
|
187
228
|
const dispatchEvent = this.dispatch('attrChange', {
|
@@ -70,5 +70,11 @@ module Ariadne
|
|
70
70
|
options[:class] = merge_class_names(DEFAULT_PASSWORD_CLASSES, options.delete(:classes))
|
71
71
|
super(method, **options)
|
72
72
|
end
|
73
|
+
|
74
|
+
DEFAULT_FILE_FIELD_CLASSES = ""
|
75
|
+
def file_field(method, options = {})
|
76
|
+
options[:class] = merge_class_names(DEFAULT_FILE_FIELD_CLASSES, options.delete(:classes))
|
77
|
+
super(method, **options)
|
78
|
+
end
|
73
79
|
end
|
74
80
|
end
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: ariadne_view_components
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.0.
|
4
|
+
version: 0.0.55
|
5
5
|
platform: aarch64-linux
|
6
6
|
authors:
|
7
7
|
- Garen J. Torikian
|
8
8
|
autorequire:
|
9
9
|
bindir: exe
|
10
10
|
cert_chain: []
|
11
|
-
date: 2023-07-
|
11
|
+
date: 2023-07-14 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: tailwind_merge
|
@@ -112,25 +112,6 @@ files:
|
|
112
112
|
- LICENSE.txt
|
113
113
|
- README.md
|
114
114
|
- app/assets/builds/ariadne_view_components.css
|
115
|
-
- app/assets/javascripts/ariadne_view_components.js
|
116
|
-
- app/assets/javascripts/ariadne_view_components.js.map
|
117
|
-
- app/assets/javascripts/components/ariadne/accumulator_controller/accumulator_controller.d.ts
|
118
|
-
- app/assets/javascripts/components/ariadne/ariadne-form.d.ts
|
119
|
-
- app/assets/javascripts/components/ariadne/ariadne.d.ts
|
120
|
-
- app/assets/javascripts/components/ariadne/clipboard_copy_component/clipboard-copy-component.d.ts
|
121
|
-
- app/assets/javascripts/components/ariadne/dropdown/menu_component.d.ts
|
122
|
-
- app/assets/javascripts/components/ariadne/events_controller/events_controller.d.ts
|
123
|
-
- app/assets/javascripts/components/ariadne/options_controller/options_controller.d.ts
|
124
|
-
- app/assets/javascripts/components/ariadne/outlet_manager_controller/outlet_manager_controller.d.ts
|
125
|
-
- app/assets/javascripts/components/ariadne/rich_text_area_component/rich-text-area-component.d.ts
|
126
|
-
- app/assets/javascripts/components/ariadne/slideover_component/slideover-component.d.ts
|
127
|
-
- app/assets/javascripts/components/ariadne/string_match_controller/string_match_controller.d.ts
|
128
|
-
- app/assets/javascripts/components/ariadne/synced_boolean_attributes_controller/synced_boolean_attributes_controller.d.ts
|
129
|
-
- app/assets/javascripts/components/ariadne/tab_container_component/tab-container-component.d.ts
|
130
|
-
- app/assets/javascripts/components/ariadne/tab_nav_component/tab-nav-component.d.ts
|
131
|
-
- app/assets/javascripts/components/ariadne/time_ago_component/time-ago-component.d.ts
|
132
|
-
- app/assets/javascripts/components/ariadne/toggleable_controller/toggleable_controller.d.ts
|
133
|
-
- app/assets/javascripts/components/ariadne/tooltip_component/tooltip-component.d.ts
|
134
115
|
- app/assets/stylesheets/ariadne_view_components.css
|
135
116
|
- app/assets/stylesheets/dropdown.css
|
136
117
|
- app/assets/stylesheets/prosemirror.css
|