mirror of
https://github.com/documize/community.git
synced 2025-07-24 15:49:44 +02:00
68 lines
2.2 KiB
Handlebars
68 lines
2.2 KiB
Handlebars
{{layout/logo-heading
|
|
title="Space Meta"
|
|
desc="Set space visibility, icon and label"
|
|
icon=constants.Icon.Settings}}
|
|
|
|
<form>
|
|
<div class="form-group">
|
|
<label>Name</label>
|
|
{{focus-input id="space-name" type="text" value=spaceName class=(if hasNameError "form-control is-invalid" "form-control") placeholder="Space name" autocomplete="off"}}
|
|
</div>
|
|
|
|
<div class="form-group">
|
|
<label>Description</label>
|
|
{{focus-input id="space-desc" type="text" value=spaceDesc class="form-control" placeholder="Space description" autocomplete="off"}}
|
|
</div>
|
|
|
|
<div class="form-group">
|
|
<label>Visibility</label>
|
|
{{ui/ui-select id="spacetypes-dropdown" content=spaceTypeOptions optionValuePath="id" optionLabelPath="label" selection=spaceType action=(action "onSetSpaceType")}}
|
|
</div>
|
|
|
|
<div class="form-group">
|
|
<label>Icon</label>
|
|
<div class="ui-icon-picker">
|
|
<ul class="list">
|
|
{{#each iconList as |icon|}}
|
|
<li class="item {{if (eq spaceIcon icon) "selected"}}" {{action "onSetIcon" icon}}>
|
|
{{ui/ui-icon-meta icon=icon}}
|
|
</li>
|
|
{{/each}}
|
|
</ul>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="form-group">
|
|
<label>Label</label>
|
|
<ul class="space-label-picker">
|
|
<li class="label none {{if (eq spaceLabel "") "selected"}}" {{action "onSetLabel" ""}}>None</li>
|
|
{{#each labels as |label|}}
|
|
<li class="label {{if (eq spaceLabel label.id) "selected"}}"
|
|
style={{label.bgColor}}
|
|
{{action "onSetLabel" label.id}} title={{label.name}}>
|
|
{{label.name}}
|
|
</li>
|
|
{{/each}}
|
|
</ul>
|
|
</div>
|
|
|
|
<div class="form-group">
|
|
<label>Enable Feedback</label>
|
|
{{x-toggle value=allowLikes size="medium" theme="light" onToggle=(action (mut allowLikes))}}
|
|
</div>
|
|
|
|
{{#if allowLikes}}
|
|
<div class="form-group">
|
|
<label>Feedback Prompt</label>
|
|
{{input type="text" id="space-likes-prompt" class="form-control" placeholder="Enter prompt asking for user feedback" value=likes}}
|
|
<small class="form-text text-muted">Specify the prompt, e.g. Did this help you? Was this helpful? Did you find what you needed?</small>
|
|
</div>
|
|
{{/if}}
|
|
</form>
|
|
|
|
{{ui/ui-button
|
|
color=constants.Color.Green
|
|
icon=constants.Icon.Settings
|
|
label=constants.Label.Save
|
|
light=true
|
|
onClick=(action "onSave")}}
|