52 lines
1.6 KiB
JavaScript
52 lines
1.6 KiB
JavaScript
import { triggerKeyEvent, visit } from "@ember/test-helpers";
|
|
import KeyboardShortcuts from "discourse/lib/keyboard-shortcuts";
|
|
import { acceptance } from "discourse/tests/helpers/qunit-helpers";
|
|
import sinon from "sinon";
|
|
import { test } from "qunit";
|
|
import { withPluginApi } from "discourse/lib/plugin-api";
|
|
|
|
acceptance("Plugin Keyboard Shortcuts - Logged In", function (needs) {
|
|
needs.user();
|
|
|
|
test("a plugin can add a keyboard shortcut", async function (assert) {
|
|
// Initialize the app (required in the legacy testing env)
|
|
await visit("/");
|
|
|
|
withPluginApi("0.8.38", (api) => {
|
|
api.addKeyboardShortcut("]", () => {
|
|
$("#qunit-fixture").html(
|
|
"<div id='added-element'>Test adding plugin shortcut</div>"
|
|
);
|
|
});
|
|
});
|
|
|
|
await visit("/t/this-is-a-test-topic/9");
|
|
await triggerKeyEvent(document, "keypress", "]".charCodeAt(0));
|
|
assert.strictEqual(
|
|
$("#added-element").length,
|
|
1,
|
|
"the keyboard shortcut callback fires successfully"
|
|
);
|
|
});
|
|
});
|
|
|
|
acceptance("Plugin Keyboard Shortcuts - Anonymous", function () {
|
|
test("a plugin can add a keyboard shortcut with an option", async function (assert) {
|
|
// Initialize the app (required in the legacy testing env)
|
|
await visit("/");
|
|
|
|
let spy = sinon.spy(KeyboardShortcuts, "_bindToPath");
|
|
withPluginApi("0.8.38", (api) => {
|
|
api.addKeyboardShortcut("]", () => {}, {
|
|
anonymous: true,
|
|
path: "test-path",
|
|
});
|
|
});
|
|
|
|
assert.ok(
|
|
spy.calledWith("test-path", "]"),
|
|
"bindToPath is called due to options provided"
|
|
);
|
|
});
|
|
});
|