This reverts commit fc166258d3
.
This commit is contained in:
parent
d1e844841d
commit
f1a52db0a0
|
@ -26,7 +26,6 @@
|
|||
@value={{link.icon}}
|
||||
@options={{hash maximum=1}}
|
||||
class={{link.iconCssClass}}
|
||||
@onlyAvailable={{true}}
|
||||
@onChange={{action (mut link.icon)}}
|
||||
/>
|
||||
</div>
|
||||
|
|
|
@ -1,58 +0,0 @@
|
|||
import { module, test } from "qunit";
|
||||
import { setupRenderingTest } from "discourse/tests/helpers/component-test";
|
||||
import { render } from "@ember/test-helpers";
|
||||
import { hbs } from "ember-cli-htmlbars";
|
||||
import selectKit from "discourse/tests/helpers/select-kit-helper";
|
||||
import { queryAll } from "discourse/tests/helpers/qunit-helpers";
|
||||
import pretender, { response } from "discourse/tests/helpers/create-pretender";
|
||||
import { setIconList } from "discourse-common/lib/icon-library";
|
||||
|
||||
module("Integration | Component | select-kit/icon-picker", function (hooks) {
|
||||
setupRenderingTest(hooks);
|
||||
|
||||
hooks.beforeEach(function () {
|
||||
this.set("subject", selectKit());
|
||||
setIconList(["ad", "link"]);
|
||||
|
||||
pretender.get("/svg-sprite/picker-search", () => {
|
||||
return response([
|
||||
{ id: "ad", symbol: "" },
|
||||
{ id: "bacon", symbol: "" },
|
||||
{ id: "link", symbol: [] },
|
||||
]);
|
||||
});
|
||||
});
|
||||
|
||||
test("content", async function (assert) {
|
||||
await render(hbs`
|
||||
<IconPicker
|
||||
@name="icon"
|
||||
@value={{this.value}}
|
||||
@content={{this.content}}
|
||||
/>
|
||||
`);
|
||||
|
||||
await this.subject.expand();
|
||||
const icons = [...queryAll(".select-kit-row .name")].map(
|
||||
(el) => el.innerText
|
||||
);
|
||||
assert.deepEqual(icons, ["ad", "bacon", "link"]);
|
||||
});
|
||||
|
||||
test("only available", async function (assert) {
|
||||
await render(hbs`
|
||||
<IconPicker
|
||||
@name="icon"
|
||||
@value={{this.value}}
|
||||
@content={{this.content}}
|
||||
@onlyAvailable={{true}}
|
||||
/>
|
||||
`);
|
||||
|
||||
await this.subject.expand();
|
||||
const icons = [...queryAll(".select-kit-row .name")].map(
|
||||
(el) => el.innerText
|
||||
);
|
||||
assert.deepEqual(icons, ["ad", "link"]);
|
||||
});
|
||||
});
|
|
@ -2,7 +2,6 @@ import {
|
|||
convertIconClass,
|
||||
disableMissingIconWarning,
|
||||
enableMissingIconWarning,
|
||||
isExistingIconId,
|
||||
} from "discourse-common/lib/icon-library";
|
||||
import MultiSelectComponent from "select-kit/components/multi-select";
|
||||
import { computed } from "@ember/object";
|
||||
|
@ -40,9 +39,6 @@ export default MultiSelectComponent.extend({
|
|||
data: { filter },
|
||||
}).then((icons) => {
|
||||
icons = icons.map(this._processIcon);
|
||||
if (this.onlyAvailable) {
|
||||
icons = icons.filter(this._iconExists);
|
||||
}
|
||||
if (filter === "") {
|
||||
this._cachedIconsList = icons;
|
||||
}
|
||||
|
@ -51,10 +47,6 @@ export default MultiSelectComponent.extend({
|
|||
}
|
||||
},
|
||||
|
||||
_iconExists(icon) {
|
||||
return isExistingIconId(icon.id);
|
||||
},
|
||||
|
||||
_processIcon(icon) {
|
||||
const iconName = typeof icon === "object" ? icon.id : icon,
|
||||
strippedIconName = convertIconClass(iconName);
|
||||
|
|
Loading…
Reference in New Issue