X-Git-Url: https://git.immae.eu/?a=blobdiff_plain;f=src%2FApp.vue;h=440ffa088e5b5e4b70248b973b931d8b574d0e3c;hb=1a42e30a1752be5ab0fba5b224fad5686f12499e;hp=fddc5853a6f20acbbf961a520313192b9ba8f057;hpb=52ed5af6074bb6850925cbb658a60a4493079338;p=github%2Fbastienwirtz%2Fhomer.git diff --git a/src/App.vue b/src/App.vue index fddc585..440ffa0 100644 --- a/src/App.vue +++ b/src/App.vue @@ -63,7 +63,7 @@ @@ -153,19 +153,28 @@ export default { document.title = `${this.config.title} | ${this.config.subtitle}`; }, methods: { - getConfig: function () { - return fetch("config.yml") - .then((response) => { - if (!response.ok) { - throw Error(response.statusText); - } - return response.text().then((body) => { + getConfig: function (path = "config.yml") { + return fetch(path).then((response) => { + if (!response.ok) { + throw Error(response.statusText); + } + + const that = this; + return response + .text() + .then((body) => { return jsyaml.load(body); + }) + .then(function (config) { + if (config.externalConfig) { + return that.getConfig(config.externalConfig); + } + return config; + }) + .catch((error) => { + return this.handleErrors("⚠️ Error loading configuration", error); }); - }) - .catch((error) => { - return this.handleErrors("⚠️ Error loading configuration", error); - }); + }); }, matchesFilter: function (item) { return (