summaryrefslogtreecommitdiff
path: root/src/components/Global/TableRowAction.vue
blob: 7e4af49963a91c5c12652e8d1aaac0840c90ade4 (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
<template>
  <span>
    <b-link
      v-if="value === 'export'"
      class="align-bottom btn-link py-0"
      :download="download"
      :href="href"
      :title="title"
      :aria-label="title"
    >
      <slot name="icon">
        {{ $t('global.action.export') }}
      </slot>
    </b-link>
    <b-button
      v-else
      variant="link"
      class="py-0"
      :aria-label="title"
      :title="title"
      :disabled="!enabled"
      @click="$emit('click:tableAction', value)"
    >
      <slot name="icon">
        {{ title }}
      </slot>
    </b-button>
  </span>
</template>

<script>
import { omit } from 'lodash';

export default {
  name: 'TableRowAction',
  props: {
    value: {
      type: String,
      required: true,
    },
    enabled: {
      type: Boolean,
      default: true,
    },
    title: {
      type: String,
      default: null,
    },
    rowData: {
      type: Object,
      default: () => {},
    },
    exportName: {
      type: String,
      default: 'export',
    },
  },
  computed: {
    dataForExport() {
      return JSON.stringify(omit(this.rowData, 'actions'));
    },
    download() {
      return `${this.exportName}.json`;
    },
    href() {
      return `data:text/json;charset=utf-8,${this.dataForExport}`;
    },
  },
};
</script>