This PR is the first step towards replacing our `{{user-selector}}` and eventually deprecating and removing it from our codebase. Some of `{{user-selector}}` problems are:
1. It's called `{{user-selector}}`, but in reality in can also select groups and emails.
2. It's an Ember component, yet it doesn't have a handlebars template and uses jQuery to render itself and modify the DOM. An example of this problem is when you want to clear the selected users programmatically, see [this](6c155dba77/app/assets/javascripts/discourse/app/components/user-selector.js (L179-L185)).
3. We now have select kit which does very similar things but a lot better.
This PR introduces `{{email-group-user-chooser}}` which is meant to replace `{{user-selector}}`. It extends select kit and has the same features that `{{user-selector}}` has. `{{user-selector}}` is still used in a few places in core, but they'll all be replaced with the new component in a separate commit.
Once `{{user-selector}}` is not used anywhere in core, it'll be deprecated and then removed after the 2.7 release.
47 lines
1.2 KiB
JavaScript
47 lines
1.2 KiB
JavaScript
import {
|
|
acceptance,
|
|
exists,
|
|
queryAll,
|
|
} from "discourse/tests/helpers/qunit-helpers";
|
|
import { test } from "qunit";
|
|
import { visit } from "@ember/test-helpers";
|
|
|
|
acceptance("New Message - Anonymous", function () {
|
|
test("accessing new-message route when logged out", async function (assert) {
|
|
await visit(
|
|
"/new-message?username=charlie&title=message%20title&body=message%20body"
|
|
);
|
|
|
|
assert.ok(exists(".modal.login-modal"), "it shows the login modal");
|
|
});
|
|
});
|
|
|
|
acceptance("New Message - Authenticated", function (needs) {
|
|
needs.user();
|
|
|
|
test("accessing new-message route when logged in", async function (assert) {
|
|
await visit(
|
|
"/new-message?username=charlie&title=message%20title&body=message%20body"
|
|
);
|
|
|
|
assert.ok(exists(".composer-fields"), "it opens composer");
|
|
assert.equal(
|
|
queryAll("#reply-title").val().trim(),
|
|
"message title",
|
|
"it pre-fills message title"
|
|
);
|
|
assert.equal(
|
|
queryAll(".d-editor-input").val().trim(),
|
|
"message body",
|
|
"it pre-fills message body"
|
|
);
|
|
assert.equal(
|
|
queryAll("#private-message-users .selected-name:nth-of-type(1)")
|
|
.text()
|
|
.trim(),
|
|
"charlie",
|
|
"it selects correct username"
|
|
);
|
|
});
|
|
});
|