diff options
author | Kevin Serrano <kevin.serrano@consensys.net> | 2017-09-12 07:22:20 +0800 |
---|---|---|
committer | Kevin Serrano <kevin.serrano@consensys.net> | 2017-09-12 07:22:20 +0800 |
commit | fa1ec5dcd16ba09d31720a42d4015dedde91148c (patch) | |
tree | 121d25121bbb01630e519f1e0c8601f8bc32531d /ui | |
parent | 3a7d4a5d4e94d9a4c2556b161c5bad7dc00837a4 (diff) | |
download | tangerine-wallet-browser-fa1ec5dcd16ba09d31720a42d4015dedde91148c.tar tangerine-wallet-browser-fa1ec5dcd16ba09d31720a42d4015dedde91148c.tar.gz tangerine-wallet-browser-fa1ec5dcd16ba09d31720a42d4015dedde91148c.tar.bz2 tangerine-wallet-browser-fa1ec5dcd16ba09d31720a42d4015dedde91148c.tar.lz tangerine-wallet-browser-fa1ec5dcd16ba09d31720a42d4015dedde91148c.tar.xz tangerine-wallet-browser-fa1ec5dcd16ba09d31720a42d4015dedde91148c.tar.zst tangerine-wallet-browser-fa1ec5dcd16ba09d31720a42d4015dedde91148c.zip |
Move function as util function.
Diffstat (limited to 'ui')
-rw-r--r-- | ui/app/components/account-export.js | 18 | ||||
-rw-r--r-- | ui/app/util.js | 16 |
2 files changed, 18 insertions, 16 deletions
diff --git a/ui/app/components/account-export.js b/ui/app/components/account-export.js index 5bbdfca39..d438c9ca5 100644 --- a/ui/app/components/account-export.js +++ b/ui/app/components/account-export.js @@ -1,6 +1,7 @@ const Component = require('react').Component const h = require('react-hyperscript') const inherits = require('util').inherits +const exportAsFile = require('../util').exportAsFile const copyToClipboard = require('copy-to-clipboard') const actions = require('../actions') const ethUtil = require('ethereumjs-util') @@ -113,7 +114,7 @@ ExportAccountView.prototype.render = function () { onClick: () => this.props.dispatch(actions.backToAccountDetail(this.props.address)), }, 'Done'), h('button', { - onClick: () => this.exportAsFile(`MetaMask ${nickname} Private Key`, plainKey), + onClick: () => exportAsFile(`MetaMask ${nickname} Private Key`, plainKey), }, 'Save as File'), ]) } @@ -126,18 +127,3 @@ ExportAccountView.prototype.onExportKeyPress = function (event) { const input = document.getElementById('exportAccount').value this.props.dispatch(actions.exportAccount(input, this.props.address)) } - -ExportAccountView.prototype.exportAsFile = function (filename, data) { - // source: https://stackoverflow.com/a/33542499 by Ludovic Feltz - const blob = new Blob([data], {type: 'text/csv'}) - if (window.navigator.msSaveOrOpenBlob) { - window.navigator.msSaveBlob(blob, filename) - } else { - const elem = window.document.createElement('a') - elem.href = window.URL.createObjectURL(blob) - elem.download = filename - document.body.appendChild(elem) - elem.click() - document.body.removeChild(elem) - } -} diff --git a/ui/app/util.js b/ui/app/util.js index ac3f42c6b..1368ebf11 100644 --- a/ui/app/util.js +++ b/ui/app/util.js @@ -36,6 +36,7 @@ module.exports = { valueTable: valueTable, bnTable: bnTable, isHex: isHex, + exportAsFile: exportAsFile, } function valuesFor (obj) { @@ -215,3 +216,18 @@ function readableDate (ms) { function isHex (str) { return Boolean(str.match(/^(0x)?[0-9a-fA-F]+$/)) } + +function exportAsFile (filename, data) { + // source: https://stackoverflow.com/a/33542499 by Ludovic Feltz + const blob = new Blob([data], {type: 'text/csv'}) + if (window.navigator.msSaveOrOpenBlob) { + window.navigator.msSaveBlob(blob, filename) + } else { + const elem = window.document.createElement('a') + elem.href = window.URL.createObjectURL(blob) + elem.download = filename + document.body.appendChild(elem) + elem.click() + document.body.removeChild(elem) + } +} |