aboutsummaryrefslogtreecommitdiff
path: root/packages/client/src/views/Repository.vue
blob: 8586b2a81c2c0263cc1a22a9112d841e95caf6c0 (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
<template>
	<div class="container">
		<RepositoryHeader :name="name" :description="description" />
		<RepositoryNavbar
			:repository="$router.currentRoute._rawValue.params.repo" :active-page="$router.currentRoute._rawValue.path.split('/')[2]"
			:has-readme="has_readme" />
		<router-view />
	</div>
</template>

<script lang="ts">
import { defineComponent, Ref, ref } from "vue";
import { Router } from "vue-router";
import { Repository } from "shared_types";
import { getParam } from "../util/util";

import RepositoryHeader from "../components/RepositoryHeader.vue";
import RepositoryNavbar from "../components/RepositoryNavbar.vue";

export default defineComponent({
	name: "Repository",
	components: {
		RepositoryHeader,
		RepositoryNavbar
	},
	setup(props) {
		const name: Ref<string> = ref("");
		const description: Ref<string> = ref("");
		const has_readme: Ref<boolean> = ref(false);

		const fetchProjects = async(repository: string, router: Router, path: string) => {
			const repository_data = await fetch(`${window.location.protocol}//${window.location.host}/api/v1/repos/${repository}`)
				.catch(() => {
					if(path.split("/").length === 2) {
						router.replace(`/${repository}/log`);
					};
					return null;
				});

			if(repository_data) {
				const data: Repository = (await repository_data.json()).data;
				name.value = data.name;
				description.value = data.description;
				has_readme.value = data.has_readme;
			}
		};

		return { name, description, has_readme, fetchProjects };
	},
	created() {
		this.fetchProjects(getParam(this.$route.params, "repo"), this.$router, this.$route.path);
	}
});
</script>