See https://github.com/ember-cli/ember-cli-htmlbars#tagged-template-usage--migrating-from-htmlbars-inline-precompile
99 lines
2.3 KiB
JavaScript
99 lines
2.3 KiB
JavaScript
import { module, test } from "qunit";
|
|
import { setupRenderingTest } from "discourse/tests/helpers/component-test";
|
|
import { click, render } from "@ember/test-helpers";
|
|
import { hbs } from "ember-cli-htmlbars";
|
|
import selectKit from "discourse/tests/helpers/select-kit-helper";
|
|
|
|
const DEFAULT_CONTENT = [
|
|
{ id: 1, name: "foo" },
|
|
{ id: 2, name: "bar" },
|
|
{ id: 3, name: "baz" },
|
|
];
|
|
|
|
const DEFAULT_VALUE = 1;
|
|
|
|
const setDefaultState = (ctx, options = {}) => {
|
|
const properties = Object.assign(
|
|
{
|
|
content: DEFAULT_CONTENT,
|
|
value: DEFAULT_VALUE,
|
|
},
|
|
options
|
|
);
|
|
ctx.setProperties(properties);
|
|
};
|
|
|
|
module("Integration | Component | select-kit/combo-box", function (hooks) {
|
|
setupRenderingTest(hooks);
|
|
|
|
hooks.beforeEach(function () {
|
|
this.set("subject", selectKit());
|
|
});
|
|
|
|
test("options.clearable", async function (assert) {
|
|
setDefaultState(this, {
|
|
clearable: true,
|
|
onChange: (value) => {
|
|
this.set("value", value);
|
|
},
|
|
});
|
|
|
|
await render(hbs`
|
|
<ComboBox
|
|
@value={{this.value}}
|
|
@content={{this.content}}
|
|
@onChange={{this.onChange}}
|
|
@options={{hash clearable=this.clearable}}
|
|
/>
|
|
`);
|
|
|
|
const header = this.subject.header();
|
|
|
|
assert.ok(
|
|
header.el().querySelector(".btn-clear"),
|
|
"it shows the clear button"
|
|
);
|
|
assert.strictEqual(header.value(), DEFAULT_VALUE.toString());
|
|
|
|
await click(header.el().querySelector(".btn-clear"));
|
|
|
|
assert.notOk(
|
|
header.el().querySelector(".btn-clear"),
|
|
"it hides the clear button"
|
|
);
|
|
assert.strictEqual(header.value(), null);
|
|
});
|
|
|
|
test("options.{caretUpIcon,caretDownIcon}", async function (assert) {
|
|
setDefaultState(this, {
|
|
caretUpIcon: "pencil-alt",
|
|
caretDownIcon: "trash-alt",
|
|
});
|
|
|
|
await render(hbs`
|
|
<ComboBox
|
|
@value={{this.value}}
|
|
@content={{this.content}}
|
|
@options={{hash
|
|
caretUpIcon=caretUpIcon
|
|
caretDownIcon=caretDownIcon
|
|
}}
|
|
/>
|
|
`);
|
|
|
|
const header = this.subject.header().el();
|
|
|
|
assert.ok(
|
|
header.querySelector(`.d-icon-${this.caretDownIcon}`),
|
|
"it uses the icon provided"
|
|
);
|
|
|
|
await this.subject.expand();
|
|
|
|
assert.ok(
|
|
header.querySelector(`.d-icon-${this.caretUpIcon}`),
|
|
"it uses the icon provided"
|
|
);
|
|
});
|
|
});
|