mirror of
https://github.com/discourse/discourse.git
synced 2024-11-26 07:23:40 +08:00
ff5a82b614
This breaking change was originally a deprecation fix for overriding a computed property `none`. There are 4 uses of `rootNone` in core and "all-the-plugins": 1. in discourse-chat-integration, admin-plugins-chat-edit-rule.hbs - changed behavior, that I'd consider a fix - `rootNoneLabel` is now used regardless of `siteSettings.allow_uncategorized_topics` value, which I believe was an originally intended behavior (i.e. it most likely hasn't been tested with disabled uncategorized topics) 2. in discourse-slack-official, plugins-slack.hbs - the same as 1. 3. in core, edit-category-general.hbs (in this PR) - no change in behavior 4. in discourse-googlebooks, edit-category-general.hbs - no change in behavior (since `allowUncategorized="true"` is also passed as an argument)
135 lines
3.7 KiB
JavaScript
135 lines
3.7 KiB
JavaScript
import selectKit from "helpers/select-kit-helper";
|
|
import componentTest from "helpers/component-test";
|
|
|
|
moduleForComponent("category-chooser", {
|
|
integration: true,
|
|
beforeEach: function() {
|
|
this.set("subject", selectKit());
|
|
}
|
|
});
|
|
|
|
componentTest("with value", {
|
|
template: "{{category-chooser value=2}}",
|
|
|
|
test(assert) {
|
|
assert.equal(this.subject.header().value(), 2);
|
|
assert.equal(this.subject.header().title(), "feature");
|
|
}
|
|
});
|
|
|
|
componentTest("with excludeCategoryId", {
|
|
template: "{{category-chooser excludeCategoryId=2}}",
|
|
|
|
async test(assert) {
|
|
await this.subject.expand();
|
|
|
|
assert.notOk(this.subject.rowByValue(2).exists());
|
|
}
|
|
});
|
|
|
|
componentTest("with scopedCategoryId", {
|
|
template: "{{category-chooser scopedCategoryId=2}}",
|
|
|
|
async test(assert) {
|
|
await this.subject.expand();
|
|
|
|
assert.equal(
|
|
this.subject.rowByIndex(0).title(),
|
|
"Discussion about features or potential features of Discourse: how they work, why they work, etc."
|
|
);
|
|
assert.equal(this.subject.rowByIndex(0).value(), 2);
|
|
assert.equal(
|
|
this.subject.rowByIndex(1).title(),
|
|
"My idea here is to have mini specs for features we would like built but have no bandwidth to build"
|
|
);
|
|
assert.equal(this.subject.rowByIndex(1).value(), 26);
|
|
assert.equal(this.subject.rows().length, 2);
|
|
|
|
await this.subject.fillInFilter("spec");
|
|
|
|
assert.equal(this.subject.rows().length, 1);
|
|
}
|
|
});
|
|
|
|
componentTest("with allowUncategorized=null", {
|
|
template: "{{category-chooser allowUncategorized=null}}",
|
|
|
|
beforeEach() {
|
|
this.siteSettings.allow_uncategorized_topics = false;
|
|
},
|
|
|
|
test(assert) {
|
|
assert.equal(this.subject.header().value(), null);
|
|
assert.equal(this.subject.header().title(), "category");
|
|
}
|
|
});
|
|
|
|
componentTest("with allowUncategorized=null rootNone=true", {
|
|
template: "{{category-chooser allowUncategorized=null rootNone=true}}",
|
|
|
|
beforeEach() {
|
|
this.siteSettings.allow_uncategorized_topics = false;
|
|
},
|
|
|
|
test(assert) {
|
|
assert.equal(this.subject.header().value(), null);
|
|
assert.equal(this.subject.header().title(), "(no category)");
|
|
}
|
|
});
|
|
|
|
componentTest("with disallowed uncategorized, rootNone and rootNoneLabel", {
|
|
template:
|
|
'{{category-chooser allowUncategorized=null rootNone=true rootNoneLabel="test.root"}}',
|
|
|
|
beforeEach() {
|
|
I18n.translations[I18n.locale].js.test = { root: "root none label" };
|
|
this.siteSettings.allow_uncategorized_topics = false;
|
|
},
|
|
|
|
test(assert) {
|
|
assert.equal(this.subject.header().value(), null);
|
|
assert.equal(this.subject.header().title(), "root none label");
|
|
}
|
|
});
|
|
|
|
componentTest("with allowed uncategorized", {
|
|
template: "{{category-chooser allowUncategorized=true}}",
|
|
|
|
beforeEach() {
|
|
this.siteSettings.allow_uncategorized_topics = true;
|
|
},
|
|
|
|
test(assert) {
|
|
assert.equal(this.subject.header().value(), null);
|
|
assert.equal(this.subject.header().title(), "uncategorized");
|
|
}
|
|
});
|
|
|
|
componentTest("with allowed uncategorized and rootNone", {
|
|
template: "{{category-chooser allowUncategorized=true rootNone=true}}",
|
|
|
|
beforeEach() {
|
|
this.siteSettings.allow_uncategorized_topics = true;
|
|
},
|
|
|
|
test(assert) {
|
|
assert.equal(this.subject.header().value(), null);
|
|
assert.equal(this.subject.header().title(), "(no category)");
|
|
}
|
|
});
|
|
|
|
componentTest("with allowed uncategorized rootNone and rootNoneLabel", {
|
|
template:
|
|
'{{category-chooser allowUncategorized=true rootNone=true rootNoneLabel="test.root"}}',
|
|
|
|
beforeEach() {
|
|
I18n.translations[I18n.locale].js.test = { root: "root none label" };
|
|
this.siteSettings.allow_uncategorized_topics = true;
|
|
},
|
|
|
|
test(assert) {
|
|
assert.equal(this.subject.header().value(), null);
|
|
assert.equal(this.subject.header().title(), "root none label");
|
|
}
|
|
});
|