aboutsummaryrefslogtreecommitdiff
path: root/packages/client/src/views/RepositoryLog.vue
blob: 3b6248cb89bb58892e5062da4254a1e782c9ce13 (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
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
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
<template>
	<div class="row mx-0 vld-parent flex-fill">
		<div class="col ms-4 ps-4 ps-sm-5 mt-3">
			<table
				id="log" class="table table-dark fs-5"
				v-if="commits">
				<thead>
					<tr>
						<th class="text-secondary">
							Subject
						</th>
						<th class="text-secondary">
							Author
						</th>
						<th class="text-secondary">
							Date
						</th>
						<th class="text-secondary">
							Files
						</th>
						<th class="text-secondary">
							Del/Add
						</th>
					</tr>
				</thead>
				<tbody>
					<tr v-for="(commit, index) in commits" :key="index">
						<td>
							<router-link :to="'log/' + commit['commit']">
								{{ commit["message"] }}
							</router-link>
						</td>
						<td>{{ commit["author_name"] }}</td>
						<td>{{ format(new Date(commit["date"]), "yyyy-MM-dd hh:mm") }}</td>
						<td>{{ commit["files_changed"] }}</td>
						<td><span class="text-danger">-{{ commit["deletions"] }}</span> / <span class="text-success">+{{ commit["insertions"] }}</span></td>
					</tr>
				</tbody>
			</table>
			<BaseErrorMessage :fetch-failed="fetch_failed" />
			<Loading
				:active="is_loading" :height="24"
				:width="24" color="#ffffff"
				:opacity="0" :is-full-page="false" />
		</div>
	</div>
</template>

<script>
import Loading from "vue-loading-overlay";
import BaseErrorMessage from "@/components/BaseErrorMessage";
import { ref } from "vue";
import { format } from "date-fns";
import fetchData from "@/util/fetch";

export default {
	name: "RepositoryLog",
	components: {
		Loading,
		BaseErrorMessage
	},
	data() {
		return {
			format
		};
	},
	setup() {
		const commits = ref(null);
		const is_loading = ref(true);
		const fetch_failed = ref(null);

		const fetchLog = async(repository) => {
			const log_data = await fetchData(`repos/${repository}/log`, fetch_failed, is_loading, "log");
			if(log_data) {
				commits.value = log_data;
			}
		};

		return { commits, is_loading, fetch_failed, fetchLog };
	},
	created() {
		this.fetchLog(this.$router.currentRoute._rawValue.params.repo);
	}
};
</script>

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

@import "~vue-loading-overlay/dist/vue-loading.css";
@import "../scss/bootstrap";
@import "../scss/fonts";

@import "~bootstrap/scss/tables";

#log {
	border-spacing: 0;
	tbody tr {
		&:hover {
			--bs-table-bg: 0;
			background-color: lighten(colors.$background, 5%);
		}
		td {
			padding-bottom: 1em;
		}
	}
	th {
		text-align: start;
		padding-bottom: 1em;
	}
}

@include media-breakpoint-down(sm) {
	.table > :not(caption) > * > * {
		padding: 0.1rem;
	}
}

</style>