]> git.immae.eu Git - github/bastienwirtz/homer.git/commitdiff
Adding external config support
authorBastien Wirtz <bastien.wirtz@gmail.com>
Wed, 10 Jun 2020 02:11:42 +0000 (19:11 -0700)
committerBastien Wirtz <bastien.wirtz@gmail.com>
Wed, 10 Jun 2020 04:55:29 +0000 (21:55 -0700)
README.md
src/App.vue

index e9483f9fb99a63e98dd95ada7bd1104cc3b7a44b..c3a6f07590b23878bf70482cadb3ac8fa3cbd23d 100644 (file)
--- a/README.md
+++ b/README.md
@@ -85,6 +85,10 @@ Title, icons, links, colors, and services can be configured in the `config.yml`
 # Homepage configuration
 # See https://fontawesome.com/icons for icons options
 
+# Optional: Use external configuration file. 
+# Using this will ignore remaining config in this file
+# externalConfig: https://example.com/server-luci/config.yaml
+
 title: "App dashboard"
 subtitle: "Homer"
 logo: "assets/homer.png"
index fddc5853a6f20acbbf961a520313192b9ba8f057..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"
               />
@@ -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 (