summaryrefslogtreecommitdiff
path: root/src/components/_sila/Global/TableToolbarExport.vue
blob: 152a4f6879c6c8ca69c97f14115616b012c03cfb (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
<template>
  <b-button size="md" variant="primary" :download="download" :href="href">
    <icon-export /> {{ $t('global.action.export') }}
  </b-button>
</template>

<script>
import IconExport from '@carbon/icons-vue/es/document--export/20';
export default {
  components: {
    IconExport,
  },
  props: {
    data: {
      type: Array,
      default: () => [],
    },
    fileName: {
      type: String,
      default: 'data',
    },
  },
  computed: {
    dataForExport() {
      return JSON.stringify(this.data);
    },
    download() {
      return `${this.fileName}.json`;
    },
    href() {
      return `data:text/json;charset=utf-8,${this.dataForExport}`;
    },
  },
};
</script>