summaryrefslogtreecommitdiff
path: root/src/views/Home.vue
blob: 3ca1445865d761bf949a1c32054c866878e715be (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
<template lang="pug">
  main
    header-blue
    b-container
      b-row
        b-col(md="8" sm="12")
          h2 List of commits
          section#commits
            .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]"
            )
        b-col
</template>

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

export default {
  name: "Home",
  components: {
    'header-blue': HeaderBlue,
    'commit-card': Commit,
  },
  mounted() {
    this.$store.dispatch('get_commits');
    this.$store.dispatch('get_emails');
  },
  computed: {
    commits: function() {
      return this.$store.getters.commits;
    },
    emails: function() {
      return this.$store.getters.emails;
    },
    loading: function() {
      return this.$store.getters.loading;
    }
  }
}
</script>