aboutsummaryrefslogtreecommitdiff
path: root/packages/client/src/components/RepositoryHeader.vue
blob: 9f37df49b9f61357ad66e6d1d72bee91db2a5331 (plain)
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
<template>
	<div id="header" class="mx-0 d-flex mt-3 ms-2">
		<BaseBackButton to="/" />
		<div class="d-inline ms-3">
			<span id="title" class="fs-1">{{ name }}</span>
			<p id="about" class="fs-4">
				{{ description }}
			</p>
		</div>
	</div>
</template>

<script>
import BaseBackButton from "@/components/BaseBackButton";
import { ref } from "vue";

export default {
	name: "RepositoryHeader",
	props: {
		repository: {
			type: String,
			required: true
		}
	},
	components: {
		BaseBackButton
	},
	setup(props) {
		const name = ref("");
		const description = ref("");

		const fetchProjects = async() => {
			const repository_data = await (await fetch(`${window.location.protocol}//${window.location.host}/api/v1/repos/${props.repository}`)).json();
			name.value = repository_data.data.name;
			description.value = repository_data.data.description;
		};

		return { name, description, fetchProjects };
	},
	created() {
		this.fetchProjects();
	}
};
</script>

<style lang="scss" scoped>
@use "../scss/colors";

@import "../scss/bootstrap";
@import "../scss/fonts";

#title {
	font-family: $font-title;
	font-weight: 300;
	line-height: 0.6;
}

#about {
	font-weight: 300;
	padding-left: 1px;
	margin: 0px;
	margin-top: 10px;
}
</style>