2020-02-11 22:54:56 +08:00
|
|
|
import MultiSelectComponent from "select-kit/components/multi-select";
|
|
|
|
import { computed } from "@ember/object";
|
|
|
|
import {
|
|
|
|
default as userSearch,
|
|
|
|
skipSearch,
|
|
|
|
eagerCompleteSearch
|
|
|
|
} from "discourse/lib/user-search";
|
|
|
|
import { makeArray } from "discourse-common/lib/helpers";
|
|
|
|
|
|
|
|
export default MultiSelectComponent.extend({
|
|
|
|
pluginApiIdentifiers: ["user-chooser"],
|
|
|
|
classNames: ["user-chooser"],
|
|
|
|
valueProperty: "username",
|
|
|
|
|
|
|
|
modifyComponentForRow() {
|
|
|
|
return "user-chooser/user-row";
|
|
|
|
},
|
|
|
|
|
|
|
|
selectKitOptions: {
|
|
|
|
topicId: undefined,
|
|
|
|
categoryId: undefined,
|
|
|
|
includeGroups: false,
|
|
|
|
allowedUsers: false,
|
|
|
|
includeMentionableGroups: false,
|
|
|
|
includeMessageableGroups: false,
|
|
|
|
allowEmails: false,
|
|
|
|
groupMembersOf: undefined
|
|
|
|
},
|
|
|
|
|
|
|
|
content: computed("value.[]", function() {
|
2020-02-19 07:57:58 +08:00
|
|
|
return makeArray(this.value).map(x => this.defaultItem(x, x));
|
2020-02-11 22:54:56 +08:00
|
|
|
}),
|
|
|
|
|
|
|
|
excludedUsers: computed(
|
|
|
|
"value",
|
|
|
|
"currentUser",
|
|
|
|
"selectKit.options.{excludeCurrentUser,excludedUsernames}",
|
|
|
|
{
|
|
|
|
get() {
|
|
|
|
const options = this.selectKit.options;
|
|
|
|
let usernames = makeArray(this.value);
|
|
|
|
|
|
|
|
if (this.currentUser && options.excludeCurrentUser) {
|
2020-02-12 03:41:18 +08:00
|
|
|
usernames = usernames.concat([this.currentUser.username]);
|
2020-02-11 22:54:56 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
return usernames.concat(options.excludedUsernames || []);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
),
|
|
|
|
|
|
|
|
search(filter = "") {
|
|
|
|
filter = filter || "";
|
|
|
|
const options = this.selectKit.options;
|
|
|
|
|
|
|
|
// prevents doing ajax request for nothing
|
|
|
|
const skippedSearch = skipSearch(filter, options.allowEmails);
|
|
|
|
const eagerComplete = eagerCompleteSearch(
|
|
|
|
filter,
|
|
|
|
options.topicId || options.categoryId
|
|
|
|
);
|
|
|
|
if (skippedSearch || (filter === "" && !eagerComplete)) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
return userSearch({
|
|
|
|
term: filter,
|
|
|
|
topicId: options.topicId,
|
|
|
|
categoryId: options.categoryId,
|
|
|
|
exclude: this.excludedUsers,
|
|
|
|
includeGroups: options.includeGroups,
|
|
|
|
allowedUsers: options.allowedUsers,
|
|
|
|
includeMentionableGroups: options.includeMentionableGroups,
|
|
|
|
includeMessageableGroups: options.includeMessageableGroups,
|
|
|
|
groupMembersOf: options.groupMembersOf,
|
|
|
|
allowEmails: options.allowEmails
|
|
|
|
}).then(result => {
|
|
|
|
if (typeof result === "string") {
|
|
|
|
// do nothing promise probably got cancelled
|
|
|
|
} else {
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
});
|
|
|
|
}
|
|
|
|
});
|