discourse/plugins/discourse-details/assets/javascripts/initializers/apply-details.js.es6

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

38 lines
807 B
Plaintext
Raw Normal View History

import I18n from "I18n";
2018-06-15 12:42:20 -04:00
import { withPluginApi } from "discourse/lib/plugin-api";
2015-11-30 05:32:01 -05:00
2016-06-16 09:25:18 -04:00
function initializeDetails(api) {
api.decorateCooked(($elem) => $("details", $elem), {
id: "discourse-details",
});
2016-06-16 09:25:18 -04:00
api.addToolbarPopupMenuOptionsCallback(() => {
return {
2018-06-15 12:42:20 -04:00
action: "insertDetails",
icon: "caret-right",
label: "details.title",
2016-06-16 09:25:18 -04:00
};
});
2018-06-15 12:42:20 -04:00
api.modifyClass("controller:composer", {
2016-06-16 09:25:18 -04:00
actions: {
insertDetails() {
this.toolbarEvent.applySurround(
"\n" + `[details="${I18n.t("composer.details_title")}"]` + "\n",
"\n[/details]\n",
"details_text",
{ multiline: false }
);
2016-06-16 09:25:18 -04:00
},
},
});
}
2015-11-30 05:32:01 -05:00
export default {
name: "apply-details",
initialize() {
2018-06-15 12:42:20 -04:00
withPluginApi("0.8.7", initializeDetails);
2015-11-30 05:32:01 -05:00
},
};