aboutsummaryrefslogtreecommitdiff
path: root/src/components/exporter/exporter.js
diff options
context:
space:
mode:
authorHJ <30-hj@users.noreply.git.pleroma.social>2019-04-29 18:15:58 +0000
committerHJ <30-hj@users.noreply.git.pleroma.social>2019-04-29 18:15:58 +0000
commitd94fdd0617057f17a677e7e409f65021afc9d124 (patch)
tree3f9b0d96d1d76eedd59fd7de353be0ae668b796c /src/components/exporter/exporter.js
parent6d1d09bcc05f4476c7efad1980e656683db2e5c3 (diff)
parenta793835566d478503f4cadf7970ad62476dd75ac (diff)
Merge branch '220-import-export-blocks-mutes' into 'develop'
Allow import/export of blocks See merge request pleroma/pleroma-fe!717
Diffstat (limited to 'src/components/exporter/exporter.js')
-rw-r--r--src/components/exporter/exporter.js48
1 files changed, 48 insertions, 0 deletions
diff --git a/src/components/exporter/exporter.js b/src/components/exporter/exporter.js
new file mode 100644
index 00000000..8f507416
--- /dev/null
+++ b/src/components/exporter/exporter.js
@@ -0,0 +1,48 @@
+const Exporter = {
+ props: {
+ getContent: {
+ type: Function,
+ required: true
+ },
+ filename: {
+ type: String,
+ default: 'export.csv'
+ },
+ exportButtonLabel: {
+ type: String,
+ default () {
+ return this.$t('exporter.export')
+ }
+ },
+ processingMessage: {
+ type: String,
+ default () {
+ return this.$t('exporter.processing')
+ }
+ }
+ },
+ data () {
+ return {
+ processing: false
+ }
+ },
+ methods: {
+ process () {
+ this.processing = true
+ this.getContent()
+ .then((content) => {
+ const fileToDownload = document.createElement('a')
+ fileToDownload.setAttribute('href', 'data:text/plain;charset=utf-8,' + encodeURIComponent(content))
+ fileToDownload.setAttribute('download', this.filename)
+ fileToDownload.style.display = 'none'
+ document.body.appendChild(fileToDownload)
+ fileToDownload.click()
+ document.body.removeChild(fileToDownload)
+ // Add delay before hiding processing state since browser takes some time to handle file download
+ setTimeout(() => { this.processing = false }, 2000)
+ })
+ }
+ }
+}
+
+export default Exporter