2020-03-07 06:49:28 +08:00
|
|
|
import Application from "@ember/application";
|
2016-08-31 23:30:51 +08:00
|
|
|
import { buildResolver } from "discourse-common/resolver";
|
2016-08-25 02:35:07 +08:00
|
|
|
|
2020-03-07 06:49:28 +08:00
|
|
|
export default Application.extend({
|
2016-08-25 02:35:07 +08:00
|
|
|
rootElement: "#wizard-main",
|
2016-08-31 23:30:51 +08:00
|
|
|
Resolver: buildResolver("wizard"),
|
2016-08-26 01:14:56 +08:00
|
|
|
|
|
|
|
start() {
|
2020-08-29 03:30:20 +08:00
|
|
|
// required for select kit to work without Ember CLI
|
2022-03-10 00:54:07 +08:00
|
|
|
// eslint-disable-next-line no-undef
|
2020-08-29 03:30:20 +08:00
|
|
|
Object.keys(Ember.TEMPLATES).forEach((k) => {
|
|
|
|
if (k.indexOf("select-kit") === 0) {
|
2022-03-10 00:54:07 +08:00
|
|
|
// eslint-disable-next-line no-undef
|
2020-08-29 03:30:20 +08:00
|
|
|
let template = Ember.TEMPLATES[k];
|
|
|
|
define(k, () => template);
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
2016-08-26 01:14:56 +08:00
|
|
|
Object.keys(requirejs._eak_seen).forEach((key) => {
|
|
|
|
if (/\/initializers\//.test(key)) {
|
2017-07-06 02:14:30 +08:00
|
|
|
const module = requirejs(key, null, null, true);
|
2016-08-26 01:14:56 +08:00
|
|
|
if (!module) {
|
|
|
|
throw new Error(key + " must export an initializer.");
|
|
|
|
}
|
2016-10-29 03:51:19 +08:00
|
|
|
this.initializer(module.default);
|
2016-08-26 01:14:56 +08:00
|
|
|
}
|
|
|
|
});
|
|
|
|
},
|
2016-08-25 02:35:07 +08:00
|
|
|
});
|