3c851293c1
no issue We were in a part-way state where some touched files had been (sometimes partially) migrated to explicit `this`. The codemod that was available has now fixed the formatting issues it had so it was a good time to run it. https://github.com/ember-codemods/ember-no-implicit-this-codemod - part of the migration path for https://github.com/emberjs/rfcs/pull/308 - starts to make template resolution rules more explicit - `<MyComponent />` - always a component - `{{my-component}}` - component or helper (components _must_ have a `-`. This style of component will go away once fully migrated to angle bracket components) - `{{value}}` - a helper or local template variable - `{{this.value}}` - reference to a property on the backing context (either a controller or a component JS file)
88 lines
3.6 KiB
Handlebars
88 lines
3.6 KiB
Handlebars
<section class="gh-canvas" {{this.did-insert (action "setMainClass" "gh-main-primarybg" target=this.ui)}}>
|
|
<header class="gh-canvas-header post-header">
|
|
<h2 class="gh-canvas-title" data-test-screen-title>Pages</h2>
|
|
<section class="view-actions">
|
|
<div class="gh-contentfilter">
|
|
{{#unless this.session.user.isContributor}}
|
|
{{#power-select
|
|
selected=this.selectedType
|
|
options=this.availableTypes
|
|
searchEnabled=false
|
|
onchange=(action (mut k))
|
|
tagName="div"
|
|
classNames="gh-contentfilter-menu gh-contentfilter-type"
|
|
triggerClass="gh-contentfilter-menu-trigger"
|
|
dropdownClass="gh-contentfilter-menu-dropdown"
|
|
matchTriggerWidth=false
|
|
data-test-type-select=true
|
|
as |type|
|
|
}}
|
|
{{type.name}}
|
|
{{/power-select}}
|
|
{{/unless}}
|
|
|
|
{{#unless this.session.user.isAuthorOrContributor}}
|
|
{{#power-select
|
|
selected=this.selectedAuthor
|
|
options=this.availableAuthors
|
|
searchField="name"
|
|
onchange=(action (mut k))
|
|
tagName="div"
|
|
classNames="gh-contentfilter-menu gh-contentfilter-author"
|
|
triggerClass="gh-contentfilter-menu-trigger"
|
|
dropdownClass="gh-contentfilter-menu-dropdown"
|
|
searchPlaceholder="Search authors"
|
|
matchTriggerWidth=false
|
|
data-test-author-select=true
|
|
as |author|
|
|
}}
|
|
{{author.name}}
|
|
{{/power-select}}
|
|
{{/unless}}
|
|
|
|
{{#unless this.session.user.isContributor}}
|
|
{{#power-select
|
|
selected=this.selectedTag
|
|
options=this.availableTags
|
|
searchField="name"
|
|
onchange=(action (mut k))
|
|
tagName="div"
|
|
classNames="gh-contentfilter-menu gh-contentfilter-tag"
|
|
triggerClass="gh-contentfilter-menu-trigger"
|
|
dropdownClass="gh-contentfilter-menu-dropdown"
|
|
searchPlaceholder="Search tags"
|
|
matchTriggerWidth=false
|
|
optionsComponent="power-select-vertical-collection-options"
|
|
data-test-tag-select=true
|
|
as |tag|
|
|
}}
|
|
{{tag.name}}
|
|
{{/power-select}}
|
|
{{/unless}}
|
|
|
|
{{#power-select
|
|
selected=this.selectedOrder
|
|
options=this.availableOrders
|
|
searchEnabled=false
|
|
onchange=(action (mut k))
|
|
tagName="div"
|
|
classNames="gh-contentfilter-menu gh-contentfilter-sort"
|
|
triggerClass="gh-contentfilter-menu-trigger"
|
|
dropdownClass="gh-contentfilter-menu-dropdown"
|
|
matchTriggerWidth=false
|
|
data-test-order-select=true
|
|
as |order|
|
|
}}
|
|
{{order.name}}
|
|
{{/power-select}}
|
|
</div>
|
|
|
|
{{#link-to "editor.new" "page" class="gh-btn gh-btn-green" data-test-new-page-button=true}}<span>New page</span>{{/link-to}}
|
|
</section>
|
|
</header>
|
|
|
|
<div class="gh-content">
|
|
{{gh-loading-list}}
|
|
</div>
|
|
</section>
|