mirror of
https://github.com/mealie-recipes/mealie.git
synced 2025-10-27 16:24:31 -04:00
* update tag route * search.and * offset for mobile * relative imports * get settings * new page * category/tag CRUD * bulk assign frontend * Bulk assign * debounce search * remove dev data * recipe store refactor * fix mobile view * fix failing tests * commit test data Co-authored-by: hay-kot <hay-kot@pm.me>
79 lines
1.9 KiB
Vue
79 lines
1.9 KiB
Vue
<template>
|
|
<v-container>
|
|
|
|
<CardSection
|
|
v-if="siteSettings.showRecent"
|
|
:title="$t('page.recent')"
|
|
:recipes="recentRecipes"
|
|
:hard-limit="siteSettings.cardsPerSection"
|
|
/>
|
|
<CardSection
|
|
:sortable="true"
|
|
v-for="(section, index) in recipeByCategory"
|
|
:key="section.name + section.position"
|
|
:title="section.name"
|
|
:recipes="section.recipes"
|
|
:hard-limit="siteSettings.cardsPerSection"
|
|
@sort="sortAZ(index)"
|
|
@sort-recent="sortRecent(index)"
|
|
/>
|
|
</v-container>
|
|
</template>
|
|
|
|
<script>
|
|
import { api } from "@/api";
|
|
import CardSection from "../components/UI/CardSection";
|
|
|
|
export default {
|
|
components: {
|
|
CardSection,
|
|
},
|
|
data() {
|
|
return {
|
|
recipeByCategory: [],
|
|
};
|
|
},
|
|
computed: {
|
|
siteSettings() {
|
|
return this.$store.getters.getSiteSettings;
|
|
},
|
|
recentRecipes() {
|
|
return this.$store.getters.getRecentRecipes;
|
|
|
|
},
|
|
},
|
|
async mounted() {
|
|
await this.buildPage();
|
|
this.recipeByCategory.sort((a, b) => a.position - b.position);
|
|
},
|
|
methods: {
|
|
async buildPage() {
|
|
await this.$store.dispatch("requestSiteSettings");
|
|
this.siteSettings.categories.forEach(async element => {
|
|
let recipes = await this.getRecipeByCategory(element.slug);
|
|
if (recipes.recipes.length < 0) recipes.recipes = [];
|
|
this.recipeByCategory.push(recipes);
|
|
});
|
|
},
|
|
async getRecipeByCategory(category) {
|
|
return await api.categories.getRecipesInCategory(category);
|
|
},
|
|
getRecentRecipes() {
|
|
this.$store.dispatch("requestRecentRecipes");
|
|
},
|
|
sortAZ(index) {
|
|
this.recipeByCategory[index].recipes.sort((a, b) =>
|
|
a.name > b.name ? 1 : -1
|
|
);
|
|
},
|
|
sortRecent(index) {
|
|
this.recipeByCategory[index].recipes.sort((a, b) =>
|
|
a.dateAdded > b.dateAdded ? -1 : 1
|
|
);
|
|
},
|
|
},
|
|
};
|
|
</script>
|
|
|
|
<style>
|
|
</style> |