2022-03-09 15:20:16 -05:00
|
|
|
<div class="title center">{{localize 'toc'}}</div>
|
2018-12-18 19:03:34 +00:00
|
|
|
{{#if canEdit}}
|
|
|
|
<div class="document-sidebar-toc">
|
|
|
|
<div class="controls {{if state.actionablePage "current-page"}}">
|
2022-01-11 12:40:52 -05:00
|
|
|
<div id="toc-up-button" class="arrow {{if state.upDisabled "disabled"}}" {{action "pageUp"}} role="button" tabindex="0" aria-label="Up">
|
2018-12-18 19:03:34 +00:00
|
|
|
<i class="dicon {{constants.Icon.ArrowSmallUp}}" />
|
|
|
|
</div>
|
2022-01-11 12:40:52 -05:00
|
|
|
<div id="toc-down-button" class="arrow {{if state.downDisabled "disabled"}}" {{action "pageDown"}} role="button" tabindex="0" aria-label="Down">
|
2018-12-18 19:03:34 +00:00
|
|
|
<i class="dicon {{constants.Icon.ArrowSmallDown}}" />
|
|
|
|
</div>
|
2022-01-11 12:40:52 -05:00
|
|
|
<div id="toc-outdent-button" class="arrow {{if state.outdentDisabled "disabled"}}" {{action "pageOutdent"}} role="button" tabindex="0" aria-label="Outdent">
|
2018-12-18 19:03:34 +00:00
|
|
|
<i class="dicon {{constants.Icon.ArrowSmallLeft}}" />
|
|
|
|
</div>
|
2022-01-11 12:40:52 -05:00
|
|
|
<div id="toc-indent-button" class="arrow {{if state.indentDisabled "disabled"}}" {{action "pageIndent"}} role="button" tabindex="0" aria-label="Indent">
|
2018-12-18 19:03:34 +00:00
|
|
|
<i class="dicon {{constants.Icon.ArrowSmallRight}}" />
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
2019-01-16 16:55:43 +00:00
|
|
|
{{else}}
|
2019-05-28 10:59:48 +01:00
|
|
|
<Ui::UiSpacer @size="100" />
|
2018-12-18 19:03:34 +00:00
|
|
|
{{/if}}
|
|
|
|
|
|
|
|
<div class="document-sidebar-toc">
|
|
|
|
<ul class="index-list">
|
|
|
|
{{#each pages key="id" as |item|}}
|
|
|
|
<li class="item">
|
2022-01-11 12:40:52 -05:00
|
|
|
<a id="index-{{item.page.id}}" {{action "onGotoPage" item.page.id}} role="button" tabindex="0"
|
2018-12-18 19:03:34 +00:00
|
|
|
class="link toc-index-item {{item.page.tocIndentCss}} {{if (eq item.page.id state.pageId) "selected"}}"
|
|
|
|
title={{item.page.title}}>
|
|
|
|
<span class="numbering">{{item.page.numbering}}</span>
|
|
|
|
{{#if (or item.userHasChangePending userHasNewPagePending)}}
|
2022-03-09 15:20:16 -05:00
|
|
|
<span class="color-red-600" title={{localize 'approval_pending'}}>[*] </span>
|
2018-12-18 19:03:34 +00:00
|
|
|
{{/if}}
|
|
|
|
{{#if (or permissions.documentApprove roles.documentApprove)}}
|
|
|
|
{{#if item.changeAwaitingReview}}
|
2022-03-09 15:20:16 -05:00
|
|
|
<span class="color-green-700" title={{localize 'approval_awaiting'}}>[*] </span>
|
2018-12-18 19:03:34 +00:00
|
|
|
{{/if}}
|
|
|
|
{{/if}}
|
|
|
|
{{item.page.title}}
|
|
|
|
</a>
|
|
|
|
</li>
|
|
|
|
{{/each}}
|
|
|
|
</ul>
|
|
|
|
</div>
|