X-Git-Url: https://git.immae.eu/?a=blobdiff_plain;f=src%2FApp.vue;h=17c32143b44cc93d4740f2cd6fdb547e00f2e0f4;hb=a23914d573841f9088cc9cd69bce24c28f432acf;hp=fddc5853a6f20acbbf961a520313192b9ba8f057;hpb=bd9109425a40f5b6c43147a7c9852014a5797dca;p=github%2Fbastienwirtz%2Fhomer.git diff --git a/src/App.vue b/src/App.vue index fddc585..17c3214 100644 --- a/src/App.vue +++ b/src/App.vue @@ -49,7 +49,10 @@
- +
@@ -63,9 +66,9 @@
@@ -76,7 +79,7 @@ class="columns is-multiline layout-vertical" >
@@ -153,19 +156,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 (