mirror of
https://github.com/pgadmin-org/pgadmin4.git
synced 2025-01-24 15:26:46 -06:00
71 lines
2.1 KiB
JavaScript
71 lines
2.1 KiB
JavaScript
/////////////////////////////////////////////////////////////
|
|
//
|
|
// pgAdmin 4 - PostgreSQL Tools
|
|
//
|
|
// Copyright (C) 2013 - 2022, The pgAdmin Development Team
|
|
// This software is released under the PostgreSQL Licence
|
|
//
|
|
//////////////////////////////////////////////////////////////
|
|
|
|
import Notify from '../../../static/js/helpers/Notifier';
|
|
|
|
define('pgadmin.settings', [
|
|
'jquery', 'sources/pgadmin',
|
|
'sources/gettext', 'sources/url_for', 'pgadmin.backform',
|
|
], function($, pgAdmin, gettext, url_for) {
|
|
|
|
// This defines the Preference/Options Dialog for pgAdmin IV.
|
|
pgAdmin = pgAdmin || window.pgAdmin || {};
|
|
|
|
/*
|
|
* Hmm... this module is already been initialized, we can refer to the old
|
|
* object from here.
|
|
*/
|
|
if (pgAdmin.Settings)
|
|
return pgAdmin.Settings;
|
|
|
|
pgAdmin.Settings = {
|
|
init: function() {
|
|
if (this.initialized)
|
|
return;
|
|
|
|
this.initialized = true;
|
|
},
|
|
// We will force unload method to not to save current layout
|
|
// and reload the window
|
|
show: function() {
|
|
Notify.confirm(gettext('Reset layout'),
|
|
gettext('Are you sure you want to reset the current layout? This will cause the application to reload and any un-saved data will be lost.'),
|
|
function() {
|
|
let reloadingIndicator = $('<div id="reloading-indicator"></div>');
|
|
$('body').append(reloadingIndicator);
|
|
// Delete the record from database as well, then only reload page
|
|
$.ajax({
|
|
url: url_for('settings.reset_layout'),
|
|
type: 'DELETE',
|
|
async: false,
|
|
})
|
|
.done(function() {
|
|
// Prevent saving layout on server for next page reload.
|
|
$(window).off('unload');
|
|
window.onbeforeunload = null;
|
|
// Now reload page
|
|
location.reload(true);
|
|
})
|
|
.fail(function() {
|
|
console.warn(
|
|
'Something went wrong on server while resetting layout.'
|
|
);
|
|
});
|
|
|
|
},
|
|
function() {
|
|
// Do nothing as user canceled the operation.
|
|
}
|
|
);
|
|
},
|
|
};
|
|
|
|
return pgAdmin.Settings;
|
|
});
|