aboutsummaryrefslogblamecommitdiffhomepage
path: root/src/components/services/Mealie.vue
blob: 43550d876c20ce6a487410b36b5f5b0128300b90 (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
          













                                                                      


           


                                          

                 
                    


                 


               








                                    







                                                                                
                              



                                                               



         
<template>
  <Generic :item="item">
    <template #content>
      <p class="title is-4">{{ item.name }}</p>
      <p class="subtitle is-6">
        <template v-if="item.subtitle">
          {{ item.subtitle }}
        </template>
        <template v-else-if="meal"> Today: {{ meal.name }} </template>
        <template v-else-if="stats">
          happily keeping {{ stats.totalRecipes }} recipes organized
        </template>
      </p>
    </template>
  </Generic>
</template>

<script>
import service from "@/mixins/service.js";
import Generic from "./Generic.vue";

export default {
  name: "Mealie",
  mixins: [service],
  props: {
    item: Object,
  },
  components: {
    Generic,
  },
  data: () => ({
    stats: null,
    meal: null,
  }),
  created() {
    this.fetchStatus();
  },
  methods: {
    fetchStatus: async function () {
      const headers = {
        Authorization: "Bearer " + this.item.apikey,
        Accept: "application/json",
      };

      if (this.item.subtitle != null) return;

      this.meal = await this.fetch("/api/meal-plans/today/", { headers }).catch(
        (e) => console.log(e),
      );
      this.stats = await this.fetch("/api/debug/statistics/", {
        headers,
      }).catch((e) => console.log(e));
    },
  },
};
</script>