discourse/app/assets/javascripts/discourse-common/addon/utils/macro-alias.js
David Taylor 392bafcd7e
DEV: Add unique ids to deprecations (#19019)
This will improve the QUnit deprecation summaries introduced via 8c48285145
2022-11-16 10:00:39 +00:00

30 lines
925 B
JavaScript

import isDescriptor from "discourse-common/utils/is-descriptor";
import deprecated from "discourse-common/lib/deprecated";
function handleDescriptor(target, property, desc, fn, params = []) {
return {
enumerable: desc.enumerable,
configurable: desc.configurable,
writable: desc.writable,
initializer() {
return fn(...params);
},
};
}
export default function macroAlias(fn) {
return function (...params) {
if (isDescriptor(params[params.length - 1])) {
return handleDescriptor(...params, fn);
} else {
deprecated(
`Importing ${fn.name} from 'discourse-common/utils/decorators' is deprecated. You should instead import it from '@ember/object/computed' directly.`,
{ id: "discourse.utils-decorators-import" }
);
return function (target, property, desc) {
return handleDescriptor(target, property, desc, fn, params);
};
}
};
}