mirror of
https://github.com/flarum/core.git
synced 2025-06-08 07:35:19 +02:00
116 lines
2.9 KiB
JavaScript
116 lines
2.9 KiB
JavaScript
import Button from 'flarum/components/Button';
|
|
import Separator from 'flarum/components/Separator';
|
|
import EditUserModal from 'flarum/components/EditUserModal';
|
|
import UserPage from 'flarum/components/UserPage';
|
|
import ItemList from 'flarum/utils/ItemList';
|
|
|
|
/**
|
|
* The `UserControls` utility constructs a list of buttons for a user which
|
|
* perform actions on it.
|
|
*/
|
|
export default {
|
|
/**
|
|
* Get a list of controls for a user.
|
|
*
|
|
* @param {User} user
|
|
* @param {*} context The parent component under which the controls menu will
|
|
* be displayed.
|
|
* @return {ItemList}
|
|
* @public
|
|
*/
|
|
controls(user, context) {
|
|
const items = new ItemList();
|
|
|
|
['user', 'moderation', 'destructive'].forEach(section => {
|
|
const controls = this[section + 'Controls'](user, context).toArray();
|
|
if (controls.length) {
|
|
controls.forEach(item => items.add(item.itemName, item));
|
|
items.add(section + 'Separator', Separator.component());
|
|
}
|
|
});
|
|
|
|
return items;
|
|
},
|
|
|
|
/**
|
|
* Get controls for a user pertaining to the current user (e.g. poke, follow).
|
|
*
|
|
* @param {User} user
|
|
* @param {*} context The parent component under which the controls menu will
|
|
* be displayed.
|
|
* @return {ItemList}
|
|
* @protected
|
|
*/
|
|
userControls() {
|
|
return new ItemList();
|
|
},
|
|
|
|
/**
|
|
* Get controls for a user pertaining to moderation (e.g. suspend, edit).
|
|
*
|
|
* @param {User} user
|
|
* @param {*} context The parent component under which the controls menu will
|
|
* be displayed.
|
|
* @return {ItemList}
|
|
* @protected
|
|
*/
|
|
moderationControls(user) {
|
|
const items = new ItemList();
|
|
|
|
if (user.canEdit()) {
|
|
items.add('edit', Button.component({
|
|
icon: 'fas fa-pencil-alt',
|
|
children: app.translator.trans('core.forum.user_controls.edit_button'),
|
|
onclick: this.editAction.bind(user)
|
|
}));
|
|
}
|
|
|
|
return items;
|
|
},
|
|
|
|
/**
|
|
* Get controls for a user which are destructive (e.g. delete).
|
|
*
|
|
* @param {User} user
|
|
* @param {*} context The parent component under which the controls menu will
|
|
* be displayed.
|
|
* @return {ItemList}
|
|
* @protected
|
|
*/
|
|
destructiveControls(user) {
|
|
const items = new ItemList();
|
|
|
|
if (user.id() !== '1' && user.canDelete()) {
|
|
items.add('delete', Button.component({
|
|
icon: 'fas fa-times',
|
|
children: app.translator.trans('core.forum.user_controls.delete_button'),
|
|
onclick: this.deleteAction.bind(user)
|
|
}));
|
|
}
|
|
|
|
return items;
|
|
},
|
|
|
|
/**
|
|
* Delete the user.
|
|
*/
|
|
deleteAction() {
|
|
if (confirm(app.translator.trans('core.forum.user_controls.delete_confirmation'))) {
|
|
this.delete().then(() => {
|
|
if (app.current instanceof UserPage && app.current.user === this) {
|
|
app.history.back();
|
|
} else {
|
|
window.location.reload();
|
|
}
|
|
});
|
|
}
|
|
},
|
|
|
|
/**
|
|
* Edit the user.
|
|
*/
|
|
editAction() {
|
|
app.modal.show(new EditUserModal({user: this}));
|
|
}
|
|
};
|