-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathindex.ts
121 lines (106 loc) · 3.65 KB
/
index.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
import Component from '@glimmer/component';
import { tracked } from '@glimmer/tracking';
import SayController from '@lblod/ember-rdfa-editor/core/say-controller';
import type SayNodeSpec from '@lblod/ember-rdfa-editor/core/say-node-spec';
import { unwrap } from '@lblod/ember-rdfa-editor/utils/_private/option';
import TransformUtils from '@lblod/ember-rdfa-editor/utils/_private/transform-utils';
import type { ResolvedPNode } from '@lblod/ember-rdfa-editor/utils/_private/types';
import { Changeset, EmberChangeset } from 'ember-changeset';
import { trackedReset } from 'tracked-toolbox';
import { dependencySatisfies, macroCondition } from '@embroider/macros';
import { importSync } from '@embroider/macros';
const CheckIcon = macroCondition(
dependencySatisfies('@appuniversum/ember-appuniversum', '>=3.4.1'),
)
? // @ts-expect-error TS/glint doesn't seem to treat this as an import
importSync('@appuniversum/ember-appuniversum/components/icons/check')
.CheckIcon
: 'check';
const PencilIcon = macroCondition(
dependencySatisfies('@appuniversum/ember-appuniversum', '>=3.4.1'),
)
? // @ts-expect-error TS/glint doesn't seem to treat this as an import
importSync('@appuniversum/ember-appuniversum/components/icons/pencil')
.PencilIcon
: 'pencil';
const ChevronDownIcon = macroCondition(
dependencySatisfies('@appuniversum/ember-appuniversum', '>=3.4.1'),
)
? // @ts-expect-error TS/glint doesn't seem to treat this as an import
importSync('@appuniversum/ember-appuniversum/components/icons/chevron-down')
.ChevronDownIcon
: 'chevron-down';
const ChevronUpIcon = macroCondition(
dependencySatisfies('@appuniversum/ember-appuniversum', '>=3.4.1'),
)
? // @ts-expect-error TS/glint doesn't seem to treat this as an import
importSync('@appuniversum/ember-appuniversum/components/icons/chevron-up')
.ChevronUpIcon
: 'chevron-up';
type Args = {
controller: SayController;
node: ResolvedPNode;
};
export default class AttributeEditor extends Component<Args> {
CheckIcon = CheckIcon;
PencilIcon = PencilIcon;
ChevronDownIcon = ChevronDownIcon;
ChevronUpIcon = ChevronUpIcon;
@tracked collapsed = false;
@trackedReset<AttributeEditor, boolean>({
memo: 'node',
update: (component) => {
component.changeset = undefined;
return false;
},
})
isEditing = false;
@tracked changeset?: EmberChangeset;
get controller() {
return this.args.controller;
}
get node() {
return this.args.node;
}
get nodespec() {
return this.node.value.type.spec as SayNodeSpec;
}
toggleSection = () => {
this.collapsed = !this.collapsed;
};
isEditable = (attr: string) => {
//@ts-expect-error editable is not defined on attribute-spec type
return this.node.value.type.spec.attrs[attr].editable as
| boolean
| undefined;
};
enableEditingMode = () => {
this.changeset = Changeset(this.node.value.attrs);
this.isEditing = true;
};
cancelEditing = () => {
this.isEditing = false;
this.changeset = undefined;
};
saveChanges = () => {
this.controller?.withTransaction((tr) => {
for (const { key, value } of unwrap(this.changeset).changes) {
TransformUtils.setAttribute(tr, this.node.pos, key, value);
}
return tr;
});
this.isEditing = false;
this.changeset = undefined;
};
updateChangeset = (attr: string, event: InputEvent) => {
if (this.changeset) {
this.changeset[attr] = (event.target as HTMLTextAreaElement).value;
}
};
formatValue = (value: unknown) => {
return JSON.stringify(value, null, 2);
};
editorComponent = (attr: string) => {
return this.nodespec?.attrs?.[attr].editor;
};
}