mirror of
https://github.com/flarum/core.git
synced 2025-06-23 19:25:35 +02:00
- Changes all `app.trans` calls to `app.translator.trans` calls. - Changes existing keys to [three-tier namespace structure](https://github.com/flarum/english/pull/12). - Extracts additional strings for `lib:` namespace. - Extracts two previously missed strings for EditGroupModal.js.
72 lines
1.8 KiB
JavaScript
72 lines
1.8 KiB
JavaScript
import ComposerBody from 'flarum/components/ComposerBody';
|
|
import icon from 'flarum/helpers/icon';
|
|
|
|
/**
|
|
* The `EditPostComposer` component displays the composer content for editing a
|
|
* post. It sets the initial content to the content of the post that is being
|
|
* edited, and adds a header control to indicate which post is being edited.
|
|
*
|
|
* ### Props
|
|
*
|
|
* - All of the props for ComposerBody
|
|
* - `post`
|
|
*/
|
|
export default class EditPostComposer extends ComposerBody {
|
|
init() {
|
|
super.init();
|
|
|
|
this.editor.props.preview = () => {
|
|
m.route(app.route.post(this.props.post));
|
|
};
|
|
}
|
|
|
|
static initProps(props) {
|
|
super.initProps(props);
|
|
|
|
props.submitLabel = props.submitLabel || app.translator.trans('core.forum.composer_edit.submit_button');
|
|
props.confirmExit = props.confirmExit || app.translator.trans('core.forum.composer_edit.discard_confirmation');
|
|
props.originalContent = props.originalContent || props.post.content();
|
|
props.user = props.user || props.post.user();
|
|
|
|
props.post.editedContent = props.originalContent;
|
|
}
|
|
|
|
headerItems() {
|
|
const items = super.headerItems();
|
|
const post = this.props.post;
|
|
|
|
items.add('title', (
|
|
<h3>
|
|
{icon('pencil')} {' '}
|
|
<a href={app.route.discussion(post.discussion(), post.number())} config={m.route}>
|
|
{app.translator.trans('core.forum.composer_edit.post_link', {number: post.number(), discussion: post.discussion().title()})}
|
|
</a>
|
|
</h3>
|
|
));
|
|
|
|
return items;
|
|
}
|
|
|
|
/**
|
|
* Get the data to submit to the server when the post is saved.
|
|
*
|
|
* @return {Object}
|
|
*/
|
|
data() {
|
|
return {
|
|
content: this.content()
|
|
};
|
|
}
|
|
|
|
onsubmit() {
|
|
this.loading = true;
|
|
|
|
const data = this.data();
|
|
|
|
this.props.post.save(data).then(
|
|
() => app.composer.hide(),
|
|
this.loaded.bind(this)
|
|
);
|
|
}
|
|
}
|