2016-06-06 18:40:38 +03:00
|
|
|
/**
|
|
|
|
* @author Björn Schießle <bjoern@schiessle.org>
|
|
|
|
*
|
|
|
|
* @copyright Copyright (c) 2016, Bjoern Schiessle
|
|
|
|
* @license AGPL-3.0
|
|
|
|
*
|
|
|
|
* This code is free software: you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU Affero General Public License as
|
2016-06-22 14:44:33 +03:00
|
|
|
* published by the Free Software Foundation, either version 3 of the
|
2016-06-06 18:40:38 +03:00
|
|
|
* License, or (at your opinion) any later version.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU Affero General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Affero General Public License
|
|
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>
|
|
|
|
*
|
|
|
|
*/
|
2016-06-09 22:46:30 +03:00
|
|
|
|
2017-04-28 19:23:15 +03:00
|
|
|
function startLoading() {
|
2016-06-16 18:30:18 +03:00
|
|
|
OC.msg.startSaving('#theming_settings_msg');
|
2017-04-28 18:55:59 +03:00
|
|
|
$('#theming_settings_loading').show();
|
2017-04-28 19:23:15 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
function setThemingValue(setting, value) {
|
|
|
|
startLoading();
|
2016-06-09 22:46:30 +03:00
|
|
|
$.post(
|
|
|
|
OC.generateUrl('/apps/theming/ajax/updateStylesheet'), {'setting' : setting, 'value' : value}
|
2016-06-16 18:30:18 +03:00
|
|
|
).done(function(response) {
|
2016-08-29 18:42:43 +03:00
|
|
|
hideUndoButton(setting, value);
|
2017-08-04 15:41:44 +03:00
|
|
|
preview(setting, value, response.data.serverCssUrl);
|
2016-06-16 18:30:18 +03:00
|
|
|
}).fail(function(response) {
|
|
|
|
OC.msg.finishedSaving('#theming_settings_msg', response);
|
2017-04-28 18:55:59 +03:00
|
|
|
$('#theming_settings_loading').hide();
|
2016-06-16 18:30:18 +03:00
|
|
|
});
|
2016-10-12 17:45:07 +03:00
|
|
|
|
2016-06-09 22:46:30 +03:00
|
|
|
}
|
|
|
|
|
2017-08-04 15:41:44 +03:00
|
|
|
function preview(setting, value, serverCssUrl) {
|
2017-04-28 19:23:15 +03:00
|
|
|
OC.msg.startAction('#theming_settings_msg', t('theming', 'Loading preview…'));
|
2017-08-04 15:41:44 +03:00
|
|
|
var stylesheetsLoaded = 1;
|
2017-04-28 18:55:59 +03:00
|
|
|
var reloadStylesheets = function(cssFile) {
|
|
|
|
var queryString = '?reload=' + new Date().getTime();
|
2017-08-04 15:27:37 +03:00
|
|
|
var url = cssFile + queryString;
|
2017-04-28 18:55:59 +03:00
|
|
|
var old = $('link[href*="' + cssFile.replace("/","\/") + '"]');
|
|
|
|
var stylesheet = $("<link/>", {
|
|
|
|
rel: "stylesheet",
|
|
|
|
type: "text/css",
|
|
|
|
href: url
|
|
|
|
});
|
|
|
|
stylesheet.load(function () {
|
|
|
|
$(old).remove();
|
|
|
|
stylesheetsLoaded--;
|
|
|
|
if(stylesheetsLoaded === 0) {
|
|
|
|
$('#theming_settings_loading').hide();
|
|
|
|
var response = { status: 'success', data: {message: t('theming', 'Saved')}};
|
|
|
|
OC.msg.finishedSaving('#theming_settings_msg', response);
|
|
|
|
}
|
|
|
|
});
|
|
|
|
stylesheet.appendTo("head");
|
|
|
|
};
|
2016-07-12 15:59:28 +03:00
|
|
|
|
2017-08-04 15:41:44 +03:00
|
|
|
if (serverCssUrl !== undefined) {
|
|
|
|
stylesheetsLoaded++;
|
|
|
|
|
|
|
|
reloadStylesheets(serverCssUrl);
|
|
|
|
}
|
2017-08-04 15:27:37 +03:00
|
|
|
reloadStylesheets(OC.generateUrl('/apps/theming/styles'));
|
2016-08-24 12:33:54 +03:00
|
|
|
|
2017-04-28 19:23:15 +03:00
|
|
|
// Preview images
|
2016-08-24 12:33:54 +03:00
|
|
|
var timestamp = new Date().getTime();
|
2016-06-21 22:21:46 +03:00
|
|
|
if (setting === 'logoMime') {
|
2016-08-24 12:33:54 +03:00
|
|
|
var previewImageLogo = document.getElementById('theming-preview-logo');
|
2016-07-15 15:45:05 +03:00
|
|
|
if (value !== '') {
|
2016-08-24 12:33:54 +03:00
|
|
|
previewImageLogo.src = OC.generateUrl('/apps/theming/logo') + "?v" + timestamp;
|
2016-06-21 22:21:46 +03:00
|
|
|
} else {
|
2017-06-07 17:06:19 +03:00
|
|
|
previewImageLogo.src = OC.getRootPath() + '/core/img/logo.svg?v' + timestamp;
|
2016-08-24 12:33:54 +03:00
|
|
|
}
|
|
|
|
}
|
2017-04-28 19:23:15 +03:00
|
|
|
|
2016-08-26 19:21:05 +03:00
|
|
|
if (setting === 'name') {
|
|
|
|
window.document.title = t('core', 'Admin') + " - " + value;
|
|
|
|
}
|
2016-10-12 17:45:07 +03:00
|
|
|
|
|
|
|
hideUndoButton(setting, value);
|
|
|
|
|
2016-08-24 12:34:45 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
function hideUndoButton(setting, value) {
|
|
|
|
var themingDefaults = {
|
|
|
|
name: 'Nextcloud',
|
|
|
|
slogan: t('lib', 'a safe home for all your data'),
|
|
|
|
url: 'https://nextcloud.com',
|
|
|
|
color: '#0082c9',
|
|
|
|
logoMime: '',
|
|
|
|
backgroundMime: ''
|
|
|
|
};
|
|
|
|
|
|
|
|
if (value === themingDefaults[setting] || value === '') {
|
|
|
|
$('.theme-undo[data-setting=' + setting + ']').hide();
|
|
|
|
} else {
|
|
|
|
$('.theme-undo[data-setting=' + setting + ']').show();
|
2016-06-09 22:46:30 +03:00
|
|
|
}
|
2016-10-12 17:45:07 +03:00
|
|
|
|
|
|
|
if(setting === 'backgroundMime' && value !== 'backgroundColor') {
|
|
|
|
$('.theme-remove-bg').show();
|
|
|
|
}
|
|
|
|
if(setting === 'backgroundMime' && value === 'backgroundColor') {
|
|
|
|
$('.theme-remove-bg').hide();
|
|
|
|
$('.theme-undo[data-setting=backgroundMime]').show();
|
|
|
|
}
|
2016-06-09 22:46:30 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
$(document).ready(function () {
|
2016-06-27 21:36:23 +03:00
|
|
|
$('#theming [data-toggle="tooltip"]').tooltip();
|
2016-06-09 22:46:30 +03:00
|
|
|
|
2016-08-24 12:34:45 +03:00
|
|
|
$('#theming .theme-undo').each(function() {
|
|
|
|
var setting = $(this).data('setting');
|
|
|
|
var value = $('#theming-'+setting).val();
|
|
|
|
if(setting === 'logoMime' || setting === 'backgroundMime') {
|
|
|
|
var value = $('#current-'+setting).val();
|
|
|
|
}
|
|
|
|
hideUndoButton(setting, value);
|
|
|
|
});
|
2016-10-12 17:45:07 +03:00
|
|
|
|
2016-06-21 22:21:46 +03:00
|
|
|
var uploadParamsLogo = {
|
|
|
|
pasteZone: null,
|
2016-06-21 22:46:27 +03:00
|
|
|
dropZone: null,
|
2016-06-21 22:21:46 +03:00
|
|
|
done: function (e, response) {
|
|
|
|
preview('logoMime', response.result.data.name);
|
|
|
|
OC.msg.finishedSaving('#theming_settings_msg', response.result);
|
2016-08-29 18:42:43 +03:00
|
|
|
$('label#uploadlogo').addClass('icon-upload').removeClass('icon-loading-small');
|
|
|
|
$('.theme-undo[data-setting=logoMime]').show();
|
2016-06-21 22:21:46 +03:00
|
|
|
},
|
|
|
|
submit: function(e, response) {
|
2017-04-28 19:23:15 +03:00
|
|
|
startLoading();
|
2016-08-29 18:42:43 +03:00
|
|
|
$('label#uploadlogo').removeClass('icon-upload').addClass('icon-loading-small');
|
2016-06-21 22:21:46 +03:00
|
|
|
},
|
2016-08-27 13:38:15 +03:00
|
|
|
fail: function (e, response){
|
|
|
|
OC.msg.finishedError('#theming_settings_msg', response._response.jqXHR.responseJSON.data.message);
|
2016-08-29 18:42:43 +03:00
|
|
|
$('label#uploadlogo').addClass('icon-upload').removeClass('icon-loading-small');
|
2017-09-21 12:35:40 +03:00
|
|
|
$('#theming_settings_loading').hide();
|
2016-06-21 22:21:46 +03:00
|
|
|
}
|
|
|
|
};
|
|
|
|
var uploadParamsLogin = {
|
2016-06-09 22:46:30 +03:00
|
|
|
pasteZone: null,
|
2016-06-21 22:46:27 +03:00
|
|
|
dropZone: null,
|
2016-06-16 18:30:18 +03:00
|
|
|
done: function (e, response) {
|
2016-06-21 22:21:46 +03:00
|
|
|
preview('backgroundMime', response.result.data.name);
|
2016-06-16 18:30:18 +03:00
|
|
|
OC.msg.finishedSaving('#theming_settings_msg', response.result);
|
2016-08-29 18:42:43 +03:00
|
|
|
$('label#upload-login-background').addClass('icon-upload').removeClass('icon-loading-small');
|
|
|
|
$('.theme-undo[data-setting=backgroundMime]').show();
|
2016-06-09 22:46:30 +03:00
|
|
|
},
|
2016-06-16 18:30:18 +03:00
|
|
|
submit: function(e, response) {
|
2017-04-28 19:23:15 +03:00
|
|
|
startLoading();
|
2016-08-29 18:42:43 +03:00
|
|
|
$('label#upload-login-background').removeClass('icon-upload').addClass('icon-loading-small');
|
2016-06-09 22:46:30 +03:00
|
|
|
},
|
2016-08-27 13:38:15 +03:00
|
|
|
fail: function (e, response){
|
2016-08-29 18:42:43 +03:00
|
|
|
$('label#upload-login-background').removeClass('icon-loading-small').addClass('icon-upload');
|
2016-08-27 13:38:15 +03:00
|
|
|
OC.msg.finishedError('#theming_settings_msg', response._response.jqXHR.responseJSON.data.message);
|
2017-09-21 12:35:40 +03:00
|
|
|
$('#theming_settings_loading').hide();
|
2016-06-09 22:46:30 +03:00
|
|
|
}
|
|
|
|
};
|
2016-06-22 14:44:33 +03:00
|
|
|
|
2016-06-21 22:21:46 +03:00
|
|
|
$('#uploadlogo').fileupload(uploadParamsLogo);
|
|
|
|
$('#upload-login-background').fileupload(uploadParamsLogin);
|
2017-05-12 03:49:32 +03:00
|
|
|
// clicking preview should also trigger file upload dialog
|
2017-05-12 10:48:51 +03:00
|
|
|
$('#theming-preview-logo').on('click', function(e) {
|
|
|
|
e.stopPropagation();
|
2017-05-12 03:49:32 +03:00
|
|
|
$('#uploadlogo').click();
|
|
|
|
});
|
|
|
|
$('#theming-preview').on('click', function() {
|
|
|
|
$('#upload-login-background').click();
|
|
|
|
});
|
2016-06-09 22:46:30 +03:00
|
|
|
|
2016-06-27 21:46:12 +03:00
|
|
|
$('#theming-name').change(function(e) {
|
|
|
|
var el = $(this);
|
|
|
|
$.when(el.focusout()).then(function() {
|
|
|
|
setThemingValue('name', $(this).val());
|
|
|
|
});
|
2016-06-09 22:46:30 +03:00
|
|
|
if (e.keyCode == 13) {
|
|
|
|
setThemingValue('name', $(this).val());
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
2016-06-27 21:46:12 +03:00
|
|
|
$('#theming-url').change(function(e) {
|
|
|
|
var el = $(this);
|
|
|
|
$.when(el.focusout()).then(function() {
|
|
|
|
setThemingValue('url', $(this).val());
|
|
|
|
});
|
2016-06-09 22:46:30 +03:00
|
|
|
if (e.keyCode == 13) {
|
|
|
|
setThemingValue('url', $(this).val());
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
2016-06-27 21:46:12 +03:00
|
|
|
$('#theming-slogan').change(function(e) {
|
|
|
|
var el = $(this);
|
|
|
|
$.when(el.focusout()).then(function() {
|
|
|
|
setThemingValue('slogan', $(this).val());
|
|
|
|
});
|
2016-06-09 22:46:30 +03:00
|
|
|
if (e.keyCode == 13) {
|
|
|
|
setThemingValue('slogan', $(this).val());
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
|
|
|
$('#theming-color').change(function (e) {
|
2017-12-03 15:56:54 +03:00
|
|
|
var color = $(this).val();
|
|
|
|
if (color.indexOf('#') !== 0) {
|
|
|
|
color = '#' + color;
|
|
|
|
}
|
|
|
|
setThemingValue('color', color);
|
2016-06-09 22:46:30 +03:00
|
|
|
});
|
2016-06-22 14:44:33 +03:00
|
|
|
|
2016-06-09 22:46:30 +03:00
|
|
|
$('.theme-undo').click(function (e) {
|
|
|
|
var setting = $(this).data('setting');
|
2017-04-28 19:23:15 +03:00
|
|
|
startLoading();
|
2016-08-29 18:42:43 +03:00
|
|
|
$('.theme-undo[data-setting=' + setting + ']').hide();
|
2016-06-09 22:46:30 +03:00
|
|
|
$.post(
|
|
|
|
OC.generateUrl('/apps/theming/ajax/undoChanges'), {'setting' : setting}
|
2016-06-16 18:30:18 +03:00
|
|
|
).done(function(response) {
|
2016-06-09 22:46:30 +03:00
|
|
|
if (setting === 'color') {
|
|
|
|
var colorPicker = document.getElementById('theming-color');
|
2016-06-16 18:30:18 +03:00
|
|
|
colorPicker.style.backgroundColor = response.data.value;
|
2016-08-24 12:34:45 +03:00
|
|
|
colorPicker.value = response.data.value.slice(1).toUpperCase();
|
2016-06-21 22:21:46 +03:00
|
|
|
} else if (setting !== 'logoMime' && setting !== 'backgroundMime') {
|
2016-06-09 22:46:30 +03:00
|
|
|
var input = document.getElementById('theming-'+setting);
|
2016-06-16 18:30:18 +03:00
|
|
|
input.value = response.data.value;
|
2016-06-09 22:46:30 +03:00
|
|
|
}
|
2017-08-04 15:41:44 +03:00
|
|
|
preview(setting, response.data.value, response.data.serverCssUrl);
|
2016-06-09 22:46:30 +03:00
|
|
|
});
|
|
|
|
});
|
2016-10-12 17:45:07 +03:00
|
|
|
|
|
|
|
$('.theme-remove-bg').click(function() {
|
|
|
|
startLoading();
|
|
|
|
$.post(
|
|
|
|
OC.generateUrl('/apps/theming/ajax/updateLogo'), {'backgroundColor' : true}
|
|
|
|
).done(function(response) {
|
|
|
|
preview('backgroundMime', 'backgroundColor');
|
|
|
|
}).fail(function(response) {
|
|
|
|
OC.msg.finishedSaving('#theming_settings_msg', response);
|
|
|
|
});
|
|
|
|
});
|
2017-06-07 17:06:19 +03:00
|
|
|
|
2016-06-09 22:46:30 +03:00
|
|
|
});
|