FIX: tag intersection not populating (#6296)

* Fix for tag intersection not populating

* Fix prettier

* Add acceptance test for tags intersection
This commit is contained in:
James Kiesel 2018-08-22 23:22:47 -05:00 committed by Sam
parent db05ab1868
commit b2ce33be26
2 changed files with 48 additions and 3 deletions

View File

@ -184,9 +184,11 @@ export default Discourse.Route.extend({
var c = self.controllerFor("composer").get("model");
c.set(
"tags",
_.flatten(
[controller.get("model.id")],
_.compact(
_.flatten([
controller.get("model.id"),
controller.get("additionalTags")
])
)
);
}

View File

@ -0,0 +1,43 @@
import { acceptance } from "helpers/qunit-helpers";
acceptance("Tags intersection", {
loggedIn: true,
site: { can_tag_topics: true },
settings: { tagging_enabled: true },
pretend(server, helper) {
server.get("/tags/first/notifications", () => {
return helper.response({
tag_notification: { id: "first", notification_level: 1 }
});
});
server.get("/tags/intersection/first/second.json", () => {
return helper.response({
users: [],
primary_groups: [],
topic_list: {
can_create_topic: true,
draft_key: "new_topic",
topics: [{ id: 16, posters: [] }],
tags: [
{ id: 1, name: "first", topic_count: 1 },
{ id: 2, name: "second", topic_count: 1 }
]
}
});
});
}
});
QUnit.test("Populate tags when creating new topic", async assert => {
await visit("/tags/intersection/first/second");
await click("#create-topic");
assert.ok(exists(".mini-tag-chooser"), "The tag selector appears");
assert.equal(
$(".mini-tag-chooser")
.text()
.trim(),
"first, second",
"populates the tags when clicking 'New topic'"
);
});