]> git.immae.eu Git - github/bastienwirtz/homer.git/blobdiff - src/App.vue
Adding external config support
[github/bastienwirtz/homer.git] / src / App.vue
index be16234d4d2b08c45dc89309d0f8b14799b8fd77..440ffa088e5b5e4b70248b973b931d8b574d0e3c 100644 (file)
@@ -63,7 +63,7 @@
               </h2>
               <Service
                 v-for="item in group.items"
-                :key="item.url"
+                :key="item.name"
                 v-bind:item="item"
                 class="column is-one-third-widescreen"
               />
@@ -146,28 +146,34 @@ export default {
     };
   },
   created: async function () {
-    try {
-      const defaults = jsyaml.load(defaultConfig);
-      let config = await this.getConfig();
-
-      this.config = merge(defaults, config);
-
-      console.log(this.config);
-      this.services = this.config.services;
-      document.title = `${this.config.title} | ${this.config.subtitle}`;
-    } catch (error) {
-      this.offline = true;
-    }
+    const defaults = jsyaml.load(defaultConfig);
+    let config = await this.getConfig();
+    this.config = merge(defaults, config);
+    this.services = this.config.services;
+    document.title = `${this.config.title} | ${this.config.subtitle}`;
   },
   methods: {
-    getConfig: function () {
-      return fetch("config.yml").then(function (response) {
-        if (response.status != 200) {
-          return;
+    getConfig: function (path = "config.yml") {
+      return fetch(path).then((response) => {
+        if (!response.ok) {
+          throw Error(response.statusText);
         }
-        return response.text().then(function (body) {
-          return jsyaml.load(body);
-        });
+
+        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);
+          });
       });
     },
     matchesFilter: function (item) {
@@ -209,6 +215,15 @@ export default {
         },
       ];
     },
+    handleErrors: function (title, content) {
+      return {
+        message: {
+          title: title,
+          style: "is-danger",
+          content: content,
+        },
+      };
+    },
   },
 };
 </script>