2023-11-01 20:34:37 -04:00
|
|
|
<div
|
|
|
|
class="admin-config-area-sidebar-experiment"
|
|
|
|
{{did-insert this.loadDefaultNavConfig}}
|
|
|
|
>
|
|
|
|
<h4>Sidebar Experiment</h4>
|
|
|
|
<p>Changes you make here will be applied to the admin sidebar and persist
|
|
|
|
between reloads
|
|
|
|
<em>on this device only</em>. Note that in addition to the
|
|
|
|
<code>text</code>
|
|
|
|
and
|
|
|
|
<code>route</code>
|
|
|
|
options, you can also specify a
|
|
|
|
<code>icon</code>
|
|
|
|
or a
|
|
|
|
<code>href</code>, if you want to link to a specific page but don't know the
|
2023-11-01 22:13:20 -04:00
|
|
|
Ember route. You can also use the Ember Inspector extension to find route
|
|
|
|
names, for example for plugin routes which are not auto-generated here.</p>
|
2023-11-01 20:34:37 -04:00
|
|
|
|
|
|
|
<DButton
|
|
|
|
@action={{this.resetToDefault}}
|
|
|
|
@translatedLabel="Reset to Default"
|
|
|
|
/>
|
|
|
|
<DButton
|
|
|
|
class="btn-primary"
|
|
|
|
@action={{this.applyConfig}}
|
|
|
|
@translatedLabel="Apply Config"
|
|
|
|
/>
|
|
|
|
|
|
|
|
<div class="admin-config-area-sidebar-experiment__editor">
|
|
|
|
<AceEditor
|
|
|
|
@content={{this.editedNavConfig}}
|
|
|
|
@editorId="admin-config-area-sidebar-experiment"
|
|
|
|
@save={{this.applyNav}}
|
|
|
|
/>
|
|
|
|
</div>
|
|
|
|
</div>
|