This repository has been archived on 2023-03-18. You can view files and clone it, but cannot push or open issues or pull requests.
osr-discourse-src/app/assets/javascripts/discourse/templates/components/topic-footer-buttons.hbs
Joffrey JAFFEUX 0431942f3d
DEV: select-kit 2 (#7998)
This new iteration of select-kit focuses on following best principales and disallowing mutations inside select-kit components. A best effort has been made to avoid breaking changes, however if you content was a flat array, eg: ["foo", "bar"] You will need to set valueProperty=null and nameProperty=null on the component.

Also almost every component should have an `onChange` handler now to decide what to do with the updated data. **select-kit will not mutate your data by itself anymore**
2020-02-03 14:22:14 +01:00

67 lines
2.0 KiB
Handlebars

<div class='topic-footer-main-buttons'>
{{topic-admin-menu-button
topic=topic
openUpwards="true"
toggleMultiSelect=toggleMultiSelect
deleteTopic=deleteTopic
recoverTopic=recoverTopic
toggleFeaturedOnProfile=toggleFeaturedOnProfile
toggleClosed=toggleClosed
toggleArchived=toggleArchived
toggleVisibility=toggleVisibility
showTopicStatusUpdate=showTopicStatusUpdate
showFeatureTopic=showFeatureTopic
showChangeTimestamp=showChangeTimestamp
resetBumpDate=resetBumpDate
convertToPublicTopic=convertToPublicTopic
convertToPrivateMessage=convertToPrivateMessage
}}
{{#if site.mobileView}}
{{topic-footer-mobile-dropdown topic=topic content=dropdownButtons}}
{{/if}}
{{#each inlineButtons as |button|}}
{{d-button
id=(concat "topic-footer-button-" button.id)
class=(concat "btn-default topic-footer-button " button.classNames)
action=button.action
icon=button.icon
translatedLabel=button.label
translatedTitle=button.title
disabled=button.disabled}}
{{/each}}
{{plugin-outlet name="topic-footer-main-buttons-before-create"
args=(hash topic=topic)
tagName=""
connectorTagName="span"}}
{{#if topic.details.can_create_post}}
{{d-button class="btn-primary create"
icon="reply"
action=replyToPost
label="topic.reply.title"
title="topic.reply.help"}}
{{/if}}
{{plugin-outlet name="after-topic-footer-main-buttons"
args=(hash topic=topic)
tagName=""
connectorTagName="span"}}
{{pinned-button pinned=topic.pinned topic=topic}}
</div>
{{#if showNotificationsButton}}
{{topic-notifications-button
notificationLevel=topic.details.notification_level
topic=topic
}}
{{/if}}
{{plugin-outlet name="after-topic-footer-buttons"
args=(hash topic=topic)
tagName=""
connectorTagName="span"}}