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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
|
<template>
<div class="container">
<HomeHeader />
<HomeProjectsHeader />
<div class="row">
<div id="projects" class="col vld-parent">
<ul v-if="projects">
<li v-for="(project, project_name, index) in projects" :key="index">
<div v-if="(search !== null && project_name.includes(search)) || search == null">
<span class="fs-3">
<router-link :to="project_name">
{{ project_name }}
</router-link>
</span>
<span class="repo-last-updated fs-5">Last updated about {{ project["last_updated"] }} ago</span>
<span class="fs-5">{{ project["description"] }}</span>
</div>
</li>
</ul>
<BaseErrorMessage :fetch-failed="fetch_failed" />
<Loading
:active="is_loading" :height="24"
:width="24" color="#ffffff"
:opacity="0" :is-full-page="false" />
</div>
</div>
</div>
</template>
<script>
import HomeHeader from "@/components/HomeHeader";
import HomeProjectsHeader from "@/components/HomeProjectsHeader";
import Loading from "vue-loading-overlay";
import BaseErrorMessage from "@/components/BaseErrorMessage";
import fetchData from "@/util/fetch";
import { ref } from "vue";
export default {
name: "Home",
components: {
HomeHeader,
HomeProjectsHeader,
Loading,
BaseErrorMessage
},
setup() {
const projects = ref({});
const search = ref("");
const is_loading = ref(true);
const fetch_failed = ref(null);
const fetchProjects = async() => {
const projects_data = await fetchData("repos", fetch_failed, is_loading, "projects");
projects.value = projects_data;
};
search.value = (new URLSearchParams(window.location.search)).get("q");
return { projects, search, is_loading, fetch_failed, fetchProjects };
},
mount() {
this.fetchProjects();
},
created() {
this.fetchProjects();
}
};
</script>
<style lang="scss" scoped>
@use "../scss/colors";
@import "~vue-loading-overlay/dist/vue-loading.css";
.repo-last-updated {
display: block;
font-weight: 300;
font-style: italic;
}
#projects {
margin-left: 1.5rem;
ul {
list-style-type: none;
padding: 0;
margin-top: 25px;
li {
margin-bottom: 25px;
}
}
}
</style>
|