summaryrefslogtreecommitdiff
path: root/src/views/Search.vue
diff options
context:
space:
mode:
authorSanto Cariotti <santo@dcariotti.me>2021-03-23 21:30:34 +0100
committerSanto Cariotti <santo@dcariotti.me>2021-03-23 21:30:34 +0100
commit9bbff6134c7068567a7a38b2de13472bff4c73e9 (patch)
tree2a68867468ca56db3e08a3eda4bc63a5e933203f /src/views/Search.vue
parentfa76107eeca937667e10648e9bccb4decd343268 (diff)
feat: search page
Diffstat (limited to 'src/views/Search.vue')
-rw-r--r--src/views/Search.vue46
1 files changed, 46 insertions, 0 deletions
diff --git a/src/views/Search.vue b/src/views/Search.vue
new file mode 100644
index 0000000..c173567
--- /dev/null
+++ b/src/views/Search.vue
@@ -0,0 +1,46 @@
+<template lang="pug">
+ main
+ header-blue
+ b-container(v-if="loading")
+ b-overlay(:show="true" spinner-large)
+ b-container(v-else)
+ .commit
+ h2 Commits found {{ commits.length }}
+ .commit(style="padding: 50px" v-if="loading")
+ b-overlay(:show="true" spinner-large)
+ commit-card(
+ v-else
+ v-for="i in commits" :key="i.hash" :data="i"
+ :author="emails[i.author_email]"
+ :committer="emails[i.committer_email]"
+ )
+</template>
+
+<script>
+import HeaderBlue from '@/components/HeaderBlue';
+import Commit from '@/components/Commit';
+
+export default {
+ name: "Commit",
+ props: ["hash"],
+ components: {
+ 'header-blue': HeaderBlue,
+ 'commit-card': Commit,
+ },
+ mounted() {
+ this.$store.dispatch('get_commits', this.$route.query.q);
+ this.$store.dispatch('get_emails');
+ },
+ computed: {
+ loading: function() {
+ return this.$store.getters.loading;
+ },
+ commits: function() {
+ return this.$store.getters.commits;
+ },
+ emails: function() {
+ return this.$store.getters.emails;
+ },
+ },
+}
+</script>