1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
|
<template lang="pug">
.mx-auto.w-90p.py-6(class="sm:px-6 lg:px-8 md:max-w-7xl")
model-loading(v-if="isLoading")
section(v-else)
form.mb-5.flex(action="/search")
input.block.w-full.rounded-md.border-gray-300.border-1.px-2.py-1.mr-2(
name="q"
class="focus:border-green-500 focus:ring-green-500 sm:text-sm dark:bg-gray-600 dark:text-gray-50 dark:border-gray-700"
placeholder="Type some text to find the best models..."
)
button.inline-flex.justify-center.rounded-md.border.border-transparent.bg-green-600.py-2.px-4.text-sm.font-medium.text-white.shadow-sm(
type="submit"
class="hover:bg-green-700 focus:outline-none focus:ring-2 focus:ring-green-500 focus:ring-offset-2"
)
| Explore
.grid.grid-cols-1.gap-4(class="md:grid-cols-4")
model-box-card(
v-for="model in models"
:key="model.id"
:model="model"
)
pagination(:page="page" :pages="pages" v-if="count")
</template>
<script>
import ModelLoading from "@/components/ModelLoading.vue";
import ModelBoxCard from "@/components/ModelBoxCard.vue";
import Pagination from "@/components/Pagination.vue";
import { mapGetters } from "vuex";
export default {
name: "IndexPage",
layout: "default",
head: {
title: "Verden - Social for 3D artists",
},
components: {
"model-loading": ModelLoading,
"model-box-card": ModelBoxCard,
pagination: Pagination,
},
data() {
return {
page: 0,
pages: 0,
};
},
computed: {
...mapGetters(["isLoading"]),
...mapGetters("auth", ["isLogged"]),
...mapGetters("models", ["models", "count"]),
},
created() {
this.page = this.$route.query.page ?? 0;
this.$store.dispatch("models/getModels", this.page).then(() => {
this.pages = Math.ceil(this.count / 20);
});
},
};
</script>
|