mirror of
https://github.com/piskelapp/piskel.git
synced 2023-08-10 21:12:52 +03:00
182 lines
5.7 KiB
JavaScript
182 lines
5.7 KiB
JavaScript
(function () {
|
|
var ns = $.namespace('pskl.controller.settings');
|
|
|
|
ns.SaveController = function (piskelController) {
|
|
this.piskelController = piskelController;
|
|
};
|
|
|
|
/**
|
|
* @public
|
|
*/
|
|
ns.SaveController.prototype.init = function () {
|
|
|
|
// Only available in app-engine mode ...
|
|
this.piskelName = document.querySelector('.piskel-name');
|
|
|
|
this.saveOnlineStatus = $('#save-online-status');
|
|
|
|
this.saveFileStatus = $('#save-file-status');
|
|
this.timestamp = new Date();
|
|
|
|
var descriptor = this.piskelController.getPiskel().getDescriptor();
|
|
this.descriptionInput = $('#save-description');
|
|
this.descriptionInput.val(descriptor.description);
|
|
|
|
this.isPublicCheckbox = $('input[name=save-public-checkbox]');
|
|
this.isPublicCheckbox.prop('checked', descriptor.isPublic);
|
|
|
|
this.saveFileButton = $('#save-file-button');
|
|
this.saveFileButton.click(this.saveFile_.bind(this));
|
|
|
|
this.saveLocalButton = $('#save-browser-button');
|
|
this.saveLocalButton.click(this.saveLocal_.bind(this));
|
|
|
|
this.saveOnlineButton = $('#save-online-button');
|
|
this.saveOnlineButton.click(this.saveOnline_.bind(this));
|
|
|
|
this.saveForm = $('form[name=save-form]');
|
|
this.saveForm.submit(this.onSaveFormSubmit_.bind(this));
|
|
|
|
this.nameInput = $('#save-name');
|
|
this.nameInput.val(descriptor.name);
|
|
this.nameInput.keyup(this.updateLocalStatusFilename_.bind(this));
|
|
|
|
if (!pskl.app.isLoggedIn()) {
|
|
this.saveOnlineButton.hide();
|
|
$('.save-public-section').hide();
|
|
this.saveOnlineStatus.html(pskl.utils.Template.get('save-please-login-partial'));
|
|
} else {
|
|
this.saveOnlineStatus.html(pskl.utils.Template.get('save-online-status-partial'));
|
|
}
|
|
|
|
this.updateLocalStatusFilename_();
|
|
};
|
|
|
|
ns.SaveController.prototype.updateLocalStatusFilename_ = function () {
|
|
this.saveFileStatus.html(pskl.utils.Template.getAndReplace('save-file-status-template', {
|
|
name : this.getLocalFilename_()
|
|
}));
|
|
};
|
|
|
|
ns.SaveController.prototype.getLocalFilename_ = function () {
|
|
var piskelName = this.getName();
|
|
var timestamp = pskl.utils.DateUtils.format(this.timestamp, "{{Y}}{{M}}{{D}}-{{H}}{{m}}{{s}}");
|
|
return piskelName + "-" + timestamp + ".piskel";
|
|
};
|
|
|
|
ns.SaveController.prototype.onSaveFormSubmit_ = function (evt) {
|
|
evt.preventDefault();
|
|
evt.stopPropagation();
|
|
|
|
if (pskl.app.isLoggedIn()) {
|
|
this.saveOnline_();
|
|
} else {
|
|
this.saveLocal_();
|
|
}
|
|
|
|
};
|
|
|
|
ns.SaveController.prototype.saveOnline_ = function () {
|
|
var name = this.getName();
|
|
|
|
if (!name) {
|
|
name = window.prompt('Please specify a name', 'New piskel');
|
|
}
|
|
|
|
if (name) {
|
|
var description = this.getDescription();
|
|
var isPublic = !!this.isPublicCheckbox.prop('checked');
|
|
|
|
var descriptor = new pskl.model.piskel.Descriptor(name, description, isPublic);
|
|
this.piskelController.getPiskel().setDescriptor(descriptor);
|
|
|
|
this.beforeSaving_();
|
|
|
|
this.saveOnlineButton.attr('disabled', true);
|
|
this.saveOnlineStatus.html('Saving ...');
|
|
|
|
pskl.app.storageService.store({
|
|
success : this.onSaveSuccess_.bind(this),
|
|
error : this.onSaveError_.bind(this),
|
|
after : this.afterOnlineSaving_.bind(this)
|
|
});
|
|
}
|
|
};
|
|
|
|
ns.SaveController.prototype.saveLocal_ = function () {
|
|
var localStorageService = pskl.app.localStorageService;
|
|
var isOk = true;
|
|
var name = this.getName();
|
|
var description = this.getDescription();
|
|
if (localStorageService.getPiskel(name)) {
|
|
isOk = window.confirm('There is already a piskel saved as ' + name + '. Override ?');
|
|
}
|
|
|
|
if (isOk) {
|
|
this.beforeSaving_();
|
|
localStorageService.save(name, description, pskl.app.piskelController.serialize());
|
|
window.setTimeout(function () {
|
|
this.onSaveSuccess_();
|
|
this.afterSaving_();
|
|
}.bind(this), 500);
|
|
}
|
|
};
|
|
|
|
ns.SaveController.prototype.saveFile_ = function () {
|
|
this.beforeSaving_();
|
|
pskl.utils.BlobUtils.stringToBlob(pskl.app.piskelController.serialize(), function(blob) {
|
|
pskl.utils.FileUtils.downloadAsFile(blob, this.getLocalFilename_());
|
|
this.onSaveSuccess_();
|
|
this.afterSaving_();
|
|
}.bind(this), "application/piskel+json");
|
|
};
|
|
|
|
ns.SaveController.prototype.getName = function () {
|
|
return this.nameInput.val();
|
|
};
|
|
|
|
ns.SaveController.prototype.getDescription = function () {
|
|
return this.descriptionInput.val();
|
|
};
|
|
|
|
ns.SaveController.prototype.beforeSaving_ = function () {
|
|
this.updatePiskelDescriptor_();
|
|
|
|
if (this.piskelName) {
|
|
this.piskelName.classList.add('piskel-name-saving');
|
|
}
|
|
};
|
|
|
|
ns.SaveController.prototype.updatePiskelDescriptor_ = function () {
|
|
var name = this.getName();
|
|
var description = this.getDescription();
|
|
var isPublic = !!this.isPublicCheckbox.prop('checked');
|
|
|
|
var descriptor = new pskl.model.piskel.Descriptor(name, description, isPublic);
|
|
this.piskelController.getPiskel().setDescriptor(descriptor);
|
|
};
|
|
|
|
ns.SaveController.prototype.onSaveSuccess_ = function () {
|
|
$.publish(Events.CLOSE_SETTINGS_DRAWER);
|
|
$.publish(Events.SHOW_NOTIFICATION, [{"content": "Successfully saved !"}]);
|
|
$.publish(Events.PISKEL_SAVED);
|
|
};
|
|
|
|
ns.SaveController.prototype.onSaveError_ = function (status) {
|
|
$.publish(Events.SHOW_NOTIFICATION, [{"content": "Saving failed ("+status+")"}]);
|
|
};
|
|
|
|
ns.SaveController.prototype.afterOnlineSaving_ = function () {
|
|
this.saveOnlineButton.attr('disabled', false);
|
|
this.saveOnlineStatus.html('');
|
|
this.afterSaving_();
|
|
};
|
|
|
|
ns.SaveController.prototype.afterSaving_ = function () {
|
|
if (this.piskelName) {
|
|
this.piskelName.classList.remove('piskel-name-saving');
|
|
}
|
|
|
|
window.setTimeout($.publish.bind($, Events.HIDE_NOTIFICATION), 5000);
|
|
};
|
|
})(); |