-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathindex.hbs
42 lines (42 loc) · 1.21 KB
/
index.hbs
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
{{! @glint-nocheck: not typesafe yet }}
<AuPanel class="au-u-margin-bottom-tiny" as |Section|>
<Section>
<AuToolbar as |Group|>
<Group>
<AuHeading @level="4" @skin="4">RDFa</AuHeading>
</Group>
{{#if @node}}
<Group>
<AuPill>{{this.type}}</AuPill>
<AuButton
@skin="naked"
@icon={{if this.collapsed this.ChevronDownIcon this.ChevronUpIcon}}
{{on "click" this.toggleSection}}
/>
</Group>
{{/if}}
</AuToolbar>
</Section>
{{#if @node}}
{{#unless this.collapsed}}
{{#if this.showPropertiesSection}}
<Section>
<this.PropertyEditor @node={{@node}} @controller={{@controller}} />
</Section>
{{/if}}
<Section>
<this.RelationshipEditor @node={{@node}} @controller={{@controller}} />
</Section>
<Section>
<this.WrappingUtils @node={{@node}} @controller={{@controller}} />
</Section>
<Section>
<this.RemoveNode @node={{@node}} @controller={{@controller}} />
</Section>
{{/unless}}
{{else}}
<Section>
<this.WrappingUtils @node={{@node}} @controller={{@controller}} />
</Section>
{{/if}}
</AuPanel>