open-vault/ui/app/templates/components/namespace-picker.hbs
Matthew Irish a105664141
UI - ent fixes (#5430)
* re-add performancestandycode for health api call

* update debounce timeout for namespace input on the auth page

* re-fetch cluster model on successful init

* 500ms for the debounce

* swap auth methods after successful api call so that the auth box doesn't jump around

* move list capability fetch to namespace component and don't use computed queryRecord to fetch it

* convert ed models to JSON so that they're unaffected by store unloading

* serialize with the id for the auth method models

* speed tests back up with different polling while loop

* login flash isn't in the same run loop so no longer needs withFlash
2018-10-02 10:05:34 -05:00

73 lines
3.2 KiB
Handlebars

{{#if (and (not accessibleNamespaces.length) inRootNamespace)}}
<div class="namespace-picker no-namespaces">
{{!-- Just yield the logo if they're in the root namespace and only have access to it --}}
{{yield}}
</div>
{{else}}
<div class="namespace-picker">
<BasicDropdown @horizontalPosition="auto-left" @verticalPosition="below" as |D|>
<D.trigger
@tagName="button"
@class="button is-transparent namespace-picker-trigger has-current-color"
>
{{yield}} {{#if namespaceDisplay}}<span class="namespace-name">{{namespaceDisplay}}</span>{{/if}}
<ICon
@glyph="chevron-down"
@size=8
@class="has-text-white auto-width is-status-chevron"
aria-hidden="true"
/>
</D.trigger>
<D.content @class="namespace-picker-content">
<div class="namespace-header-bar level is-mobile">
<div class="level-left">
{{#if (not isUserRootNamespace)}}
<NamespaceLink @targetNamespace={{or (object-at (dec 2 menuLeaves.length) lastMenuLeaves) auth.authData.userRootNamespace}} @class="namespace-link button is-ghost icon">
<ICon
@glyph="chevron-left"
@size=12
@class="has-text-info"
aria-hidden="true"
/>
</NamespaceLink>
{{/if}}
</div>
<div class="level-right">
{{#if canList}}
{{#link-to "vault.cluster.access.namespaces" class="namespace-manage-link"}}
Manage
{{/link-to}}
{{/if}}
</div>
</div>
<header class="current-namespace">
<h5 class="namespace-header">Current namespace</h5>
<div class="level is-mobile namespace-link">
<span class="level-left">{{if namespacePath (concat namespacePath "/") "root"}}</span>
<ICon @glyph="checkmark-circled-outline" @size="16" @class="has-text-success level-right" />
</div>
</header>
<div class="namespace-list {{if isAnimating "animated-list"}}">
{{#if (contains '' lastMenuLeaves)}}
{{!-- leaf is '' which is the root namespace, and then we need to iterate the root leaves --}}
<div class="leaf-panel
{{if (eq '' currentLeaf) "leaf-panel-current" "leaf-panel-left"}}
">{{~#each rootLeaves as |rootLeaf|}}
<NamespaceLink @targetNamespace={{rootLeaf}} @class="namespace-link" @showLastSegment={{true}} />
{{/each~}}</div>
{{/if}}
{{#each lastMenuLeaves as |leaf|}}
<div class="leaf-panel
{{if (eq leaf currentLeaf) "leaf-panel-current" "leaf-panel-left"}}
{{if (and isAdding (eq leaf changedLeaf)) "leaf-panel-adding"}}
{{if (and (not isAdding) (eq leaf changedLeaf)) "leaf-panel-exiting"}}
">{{~#each-in (get namespaceTree leaf) as |leafName|}}
<NamespaceLink @targetNamespace={{concat leaf "/" leafName}} @class="namespace-link" @showLastSegment={{true}} />
{{/each-in~}}</div>
{{/each}}
</div>
</D.content>
</BasicDropdown>
</div>
{{/if}}