1
0
Fork 0
mirror of synced 2024-06-02 11:04:31 +12:00
waifu2x/assets/ui.js
nagadomi 6b200c2763 Download with XHR
Some mobile browser fails to download dynamic content with POST request.
This commit fixes that.
2016-02-15 10:02:14 +09:00

95 lines
2.8 KiB
JavaScript

$(function (){
var expires = 365;
function clear_file() {
var new_file = $("#file").clone();
new_file.change(clear_url);
$("#file").replaceWith(new_file);
}
function clear_url() {
$("#url").val("")
}
function on_change_style(e) {
var checked = $("input[name=style]:checked");
if (checked.val() == "art") {
$(".main-title").text("waifu2x");
} else {
$(".main-title").html("w<s>/a/</s>ifu2x");
}
$.cookie("style", checked.val(), {expires: expires});
}
function on_change_noise_level(e)
{
var checked = $("input[name=noise]:checked");
$.cookie("noise", checked.val(), {expires: expires});
}
function on_change_scale_factor(e)
{
var checked = $("input[name=scale]:checked");
$.cookie("scale", checked.val(), {expires: expires});
}
function restore_from_cookie()
{
if ($.cookie("style")) {
$("input[name=style]").filter("[value=" + $.cookie("style") + "]").prop("checked", true)
}
if ($.cookie("noise")) {
$("input[name=noise]").filter("[value=" + $.cookie("noise") + "]").prop("checked", true)
}
if ($.cookie("scale")) {
$("input[name=scale]").filter("[value=" + $.cookie("scale") + "]").prop("checked", true)
}
}
function uuid()
{
// ref: http://stackoverflow.com/a/2117523
return 'xxxxxxxx-xxxx-4xxx-yxxx-xxxxxxxxxxxx'.replace(/[xy]/g, function(c) {
var r = Math.random()*16|0, v = c == 'x' ? r : (r&0x3|0x8);
return v.toString(16);
});
}
function download_with_xhr(e)
{
if (typeof window.URL.createObjectURL == "undefined" ||
typeof window.Blob == "undefined" ||
typeof window.XMLHttpRequest == "undefined" ||
typeof window.URL.revokeObjectURL == "undefined")
{
return;
}
$("input[name=download]").attr("disabled", "disabled");
e.preventDefault();
e.stopPropagation();
var xhr = new XMLHttpRequest();
xhr.open('POST', '/api', true);
xhr.responseType = 'arraybuffer';
xhr.onload= function(e) {
if (this.status == 200) {
var blob = new Blob([this.response], {type : 'image/png'});
var a = document.createElement("a");
var url = URL.createObjectURL(blob);
a.href = url;
a.target = "_blank";
a.download = uuid() + ".png";
a.click();
URL.revokeObjectURL(url);
$("input[name=download]").removeAttr("disabled");
} else {
alert("Download Error");
$("input[name=download]").removeAttr("disabled");
}
};
xhr.send(new FormData($("form").get(0)));
}
$("#url").change(clear_file);
$("#file").change(clear_url);
$("input[name=style]").change(on_change_style);
$("input[name=noise]").change(on_change_noise_level);
$("input[name=scale]").change(on_change_scale_factor);
$("input[name=download]").click(download_with_xhr);
restore_from_cookie();
on_change_style();
on_change_scale_factor();
on_change_noise_level();
})