summaryrefslogtreecommitdiff
path: root/src/views/Repository.vue
blob: 0b9e2cfff3bc7e81d63d5a3f6dde6be9473021d5 (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
<template lang="pug">
  main
    header-blue
    b-container(v-if="loading")
      b-overlay(:show="true" spinner-large)
    b-container(v-else)
      .commit.no-hover
        h1 {{ user }}/
          span.secondary {{ name }}
          b-button.open-github(
            :href="'https://github.com/'+user+'/'+name"
            variant="outline-dark" target="_new"
          ) Open on GitHub 
            i.fab.fa-github
      section(v-if="commits.length > 0")
        .commit.no-hover
          h2 Commits found: {{ (commits.length == 1000)?"1000+":commits.length }}
        commit-card(
          v-for="i in commits" :key="i.hash" :data="i"
          :author="emails[i.author_email]"
          :committer="emails[i.committer_email]"
          :expand="true"
        )
</template>

<script>
import HeaderBlue from '@/components/HeaderBlue';
import Commit from '@/components/Commit';

export default {
  name: "Repository",
  props: ["user", "name"],
  components: {
    'header-blue': HeaderBlue,
    'commit-card': Commit,
  },
  data() {
    return {
      error404: false
    }
  },
  async mounted() {
    this.$store.dispatch('set_loading', true);
    this.$store.dispatch('get_repo_commits', {user: this.user, name: this.name});
    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>