summaryrefslogtreecommitdiff
path: root/app/assets/javascripts/vue_shared/components/pipelines_table.vue
blob: ebe8fba8a44aa40fc89b8c952b08ce3914a77126 (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
<script>
  import pipelinesTableRowComponent from './pipelines_table_row.vue';

  /**
   * Pipelines Table Component.
   *
   * Given an array of objects, renders a table.
   */
  export default {
    props: {
      pipelines: {
        type: Array,
        required: true,
      },
      service: {
        type: Object,
        required: true,
      },
      updateGraphDropdown: {
        type: Boolean,
        required: false,
        default: false,
      },
    },
    components: {
      pipelinesTableRowComponent,
    },
  };
</script>
<template>
  <table class="table ci-table">
    <thead>
      <tr>
        <th class="js-pipeline-status pipeline-status">Status</th>
        <th class="js-pipeline-info pipeline-info">Pipeline</th>
        <th class="js-pipeline-commit pipeline-commit">Commit</th>
        <th class="js-pipeline-stages pipeline-stages">Stages</th>
        <th class="js-pipeline-date pipeline-date"></th>
        <th class="js-pipeline-actions pipeline-actions"></th>
      </tr>
    </thead>
    <tbody>
      <template
        v-for="model in pipelines"
        :model="model">
        <tr
          is="pipelines-table-row-component"
          :pipeline="model"
          :service="service"
          :update-graph-dropdown="updateGraphDropdown"
          />
      </template>
    </tbody>
  </table>
</template>