stylus/backup/fileSaveLoad.js
narcolepticinsomniac 7904cf9b6f Add files via upload
2017-01-30 14:02:50 -05:00

48 lines
1.8 KiB
JavaScript

var STYLISH_DUMP_FILE_EXT = ".txt";
var STYLISH_DEFAULT_SAVE_NAME = "stylus-mm-dd-yyy" + STYLISH_DUMP_FILE_EXT;
function saveAsFile(text, fileName, dialog) {
fileName = fileName || STYLISH_DEFAULT_SAVE_NAME;
dialog = typeof dialog === "boolean" ? dialog : true;
return new Promise(function(resolve){
var fileContent = 'data:text/plain;charset=utf-8,' + encodeURIComponent(text);
chrome.downloads.download({filename: fileName, saveAs: true, url: fileContent}, resolve)
});
}
/**
* !!works only when page has representation - backgound page won't work
*
* opens open file dialog,
* gets selected file,
* gets it's path,
* gets content of it by ajax
*/
function loadFromFile(formatToFilter){
return new Promise(function(resolve){
var fileInput = document.createElement('input');
fileInput.style = "display: none;";
fileInput.type = "file";
fileInput.accept = formatToFilter || STYLISH_DUMP_FILE_EXT;
fileInput.acceptCharset = "utf8";
document.body.appendChild(fileInput);
fileInput.initialValue = fileInput.value;
fileInput.addEventListener('change', changeHandler);
function changeHandler(){
if (fileInput.value != fileInput.initialValue){
var fReader = new FileReader();
fReader.readAsDataURL(fileInput.files[0]);
fReader.onloadend = function(event){
fileInput.removeEventListener('change', changeHandler);
fileInput.remove();
var b64text = event.target.result.split(",")[1],
rawText = atob(b64text);
resolve(rawText);
}
}
}
fileInput.click();
});
}