2020-05-29 15:42:46 +00:00
|
|
|
{{yield}}
|
|
|
|
<form class={{concat 'filter-bar' (if (eq secondary 'sort') ' with-sort')}} ...attributes>
|
2020-08-11 17:02:51 +00:00
|
|
|
{{#yield-slot name="primary"}}
|
|
|
|
<fieldset>
|
|
|
|
{{yield}}
|
|
|
|
</fieldset>
|
|
|
|
{{else}}
|
|
|
|
<FreetextFilter
|
|
|
|
@onsearch={{action onsearch}}
|
|
|
|
@value={{value}}
|
|
|
|
@placeholder={{or placeholder 'Search'}}
|
|
|
|
/>
|
|
|
|
{{/yield-slot}}
|
2020-05-29 15:42:46 +00:00
|
|
|
{{#yield-slot name="secondary"}}
|
2020-08-11 17:02:51 +00:00
|
|
|
<fieldset>
|
|
|
|
{{yield}}
|
|
|
|
</fieldset>
|
2020-05-29 15:42:46 +00:00
|
|
|
{{else}}
|
|
|
|
{{#if options}}
|
|
|
|
{{#if (eq secondary 'sort')}}
|
|
|
|
{{else}}
|
|
|
|
<RadioGroup
|
|
|
|
@keyboardAccess={{true}}
|
|
|
|
@value={{selected.key}}
|
|
|
|
@items={{options}}
|
|
|
|
@onchange={{action onchange}}
|
|
|
|
/>
|
|
|
|
{{/if}}
|
|
|
|
{{/if}}
|
|
|
|
{{/yield-slot}}
|
|
|
|
</form>
|