David Taylor 0ed4b09527
DEV: Move discourse-common/(utils|lib) to discourse/lib (#30733)
`discourse-common` was created in the past to share logic between the
'wizard' app and the main 'discourse' app. Since then, the wizard has
been consolidated into the main app, so the separation of
`discourse-common` is no longer useful.

This commit moves `discourse-common/(lib|utils)/*` into
`discourse/lib/*`, adds shims for the imports, and updates existing
uses in core.
2025-01-13 13:02:49 +00:00

99 lines
3.0 KiB
JavaScript

import { isNone } from "@ember/utils";
import { makeArray } from "discourse/lib/helpers";
let _appendContentCallbacks = {};
function appendContent(pluginApiIdentifiers, contentFunction) {
if (isNone(_appendContentCallbacks[pluginApiIdentifiers])) {
_appendContentCallbacks[pluginApiIdentifiers] = [];
}
_appendContentCallbacks[pluginApiIdentifiers].push(contentFunction);
}
let _prependContentCallbacks = {};
function prependContent(targetedIdentifier, contentFunction) {
if (isNone(_prependContentCallbacks[targetedIdentifier])) {
_prependContentCallbacks[targetedIdentifier] = [];
}
_prependContentCallbacks[targetedIdentifier].push(contentFunction);
}
let _onChangeCallbacks = {};
function onChange(pluginApiIdentifiers, mutationFunction) {
if (isNone(_onChangeCallbacks[pluginApiIdentifiers])) {
_onChangeCallbacks[pluginApiIdentifiers] = [];
}
_onChangeCallbacks[pluginApiIdentifiers].push(mutationFunction);
}
let _replaceContentCallbacks = {};
function replaceContent(pluginApiIdentifiers, contentFunction) {
if (isNone(_replaceContentCallbacks[pluginApiIdentifiers])) {
_replaceContentCallbacks[pluginApiIdentifiers] = [];
}
_replaceContentCallbacks[pluginApiIdentifiers].push(contentFunction);
}
export function applyContentPluginApiCallbacks(content, component) {
makeArray(component.pluginApiIdentifiers).forEach((key) => {
(_prependContentCallbacks[key] || []).forEach((c) => {
const prependedContent = c(component, content);
if (prependedContent) {
content = makeArray(prependedContent).concat(content);
}
});
(_appendContentCallbacks[key] || []).forEach((c) => {
const appendedContent = c(component, content);
if (appendedContent) {
content = content.concat(makeArray(appendedContent));
}
});
(_replaceContentCallbacks[key] || []).forEach((c) => {
const replacementContent = c(component, content);
if (replacementContent) {
content = makeArray(replacementContent);
}
});
});
return content;
}
export function applyOnChangePluginApiCallbacks(value, items, component) {
makeArray(component.pluginApiIdentifiers).forEach((key) => {
(_onChangeCallbacks[key] || []).forEach((c) => c(component, value, items));
});
}
export function modifySelectKit(targetedIdentifier) {
return {
appendContent: (callback) => {
appendContent(targetedIdentifier, callback);
return modifySelectKit(targetedIdentifier);
},
prependContent: (callback) => {
prependContent(targetedIdentifier, callback);
return modifySelectKit(targetedIdentifier);
},
onChange: (callback) => {
onChange(targetedIdentifier, callback);
return modifySelectKit(targetedIdentifier);
},
replaceContent: (callback) => {
replaceContent(targetedIdentifier, callback);
return modifySelectKit(targetedIdentifier);
},
};
}
export function clearCallbacks() {
_appendContentCallbacks = {};
_prependContentCallbacks = {};
_onChangeCallbacks = {};
_replaceContentCallbacks = {};
}