mirror of
https://framagit.org/fiat-tux/hat-softwares/lutim.git
synced 2026-07-06 01:41:30 +02:00
118 lines
4.1 KiB
JavaScript
118 lines
4.1 KiB
JavaScript
function addItem(item) {
|
|
var files = localStorage.getItem('images');
|
|
if (files === null) {
|
|
files = new Array();
|
|
} else {
|
|
files = JSON.parse(files);
|
|
}
|
|
delete item['thumb'];
|
|
files.push(item);
|
|
localStorage.setItem('images', JSON.stringify(files));
|
|
}
|
|
function delItem(short) {
|
|
var files = localStorage.getItem('images');
|
|
if (files === null) {
|
|
files = new Array();
|
|
} else {
|
|
files = JSON.parse(files);
|
|
}
|
|
$(files).each(function(index) {
|
|
if (files[index].real_short === short) {
|
|
files.splice(index, 1);
|
|
return false;
|
|
}
|
|
});
|
|
localStorage.setItem('images', JSON.stringify(files));
|
|
}
|
|
function updateItem(short, limit, del_at_view) {
|
|
var files = localStorage.getItem('images');
|
|
if (files === null) {
|
|
files = new Array();
|
|
} else {
|
|
files = JSON.parse(files);
|
|
}
|
|
$(files).each(function(index) {
|
|
if (files[index].real_short === short) {
|
|
files[index].del_at_view = del_at_view;;
|
|
files[index].limit = limit;
|
|
return false;
|
|
}
|
|
});
|
|
localStorage.setItem('images', JSON.stringify(files));
|
|
}
|
|
function evaluateCopyAll(e) {
|
|
if (e) {
|
|
e.preventDefault();
|
|
}
|
|
setTimeout(function() {
|
|
if ($('.view-link-input').length === 0) {
|
|
$('#copy-all').parent().remove();
|
|
}
|
|
}, 5);
|
|
}
|
|
window.onload = function() {
|
|
if (navigator.mozSetMessageHandler !== undefined) {
|
|
navigator.mozSetMessageHandler('activity', function handler(activityRequest) {
|
|
var activityName = activityRequest.source.name;
|
|
if (activityName == 'share') {
|
|
activity = activityRequest;
|
|
blob = activity.source.data.blobs[0];
|
|
fileUpload(blob);
|
|
}
|
|
});
|
|
}
|
|
};
|
|
$('document').ready(function() {
|
|
$('.jsonly').show();
|
|
$('.input-group-addon.jsonly').css('display', 'table-cell');
|
|
// Are we in a mozilla navigator? (well, are we in a navigator which can handle webapps?)
|
|
if (navigator.mozApps !== undefined) {
|
|
var installCheck = navigator.mozApps.checkInstalled(manifestUrl);
|
|
installCheck.onsuccess = function() {
|
|
if(installCheck.result === null) {
|
|
var button = $('#install-app');
|
|
// Show app install button when app is not installed
|
|
button.css('display','inline-block');
|
|
button.click(function() {
|
|
var request = window.navigator.mozApps.install(manifestUrl);
|
|
request.onsuccess = function () {
|
|
// Save the App object that is returned
|
|
var appRecord = this.result;
|
|
button.css('display','none');
|
|
};
|
|
request.onerror = function () {
|
|
// Display the error information from the DOMError object
|
|
alert('Install failed, error: ' + this.error.name);
|
|
};
|
|
});
|
|
}
|
|
}
|
|
}
|
|
if ($('#first-view').length !== 0) {
|
|
var firstview = ($('#first-view').prop('checked')) ? 1 : 0;
|
|
var deleteday = ($('#delete-day').prop('checked')) ? 1 : 0;
|
|
|
|
bindddz(firstview, deleteday);
|
|
initPaste();
|
|
|
|
$('#file-url-button').on('click', upload_url);
|
|
$('#lutim-file-url').keydown( function(e) {
|
|
var key = e.charCode ? e.charCode : e.keyCode ? e.keyCode : 0;
|
|
if(key == 13) {
|
|
e.preventDefault();
|
|
upload_url();
|
|
}
|
|
});
|
|
} else if ($('#myfiles').length !== 0) {
|
|
populateFilesTable();
|
|
$('#json-export').on('click', function() { exportStorage(); });
|
|
$('#json-import').on('click', function() { $('#import').click(); });
|
|
$('#import').on('change', function() { importStorage(this.files); })
|
|
$('#mod-delay').on('click', modifyDelay);
|
|
$('#check-all').on('click', checkAll)
|
|
$('#mass-delete').on('click', massDelete);
|
|
}
|
|
$('.copy-to-clipboard-link').on('click', clickOnCopyLink);
|
|
$('.copy-all-to-clipboard-link').on('click', copyAllToClipboard);
|
|
});
|