transmission/web/javascript/dialog.js

114 lines
2.8 KiB
JavaScript
Raw Normal View History

/**
* Copyright © Dave Perrett and Malcolm Jarvis
2010-09-05 03:02:02 +00:00
*
* This file is licensed under the GPLv2.
* http://www.gnu.org/licenses/old-licenses/gpl-2.0.html
2010-09-05 03:02:02 +00:00
*/
function Dialog(){
this.initialize();
2010-09-05 03:02:02 +00:00
}
Dialog.prototype = {
/*
* Constructor
*/
initialize: function() {
2010-09-05 03:02:02 +00:00
/*
* Private Interface Variables
*/
this._container = $('#dialog_container');
this._heading = $('#dialog_heading');
this._message = $('#dialog_message');
this._cancel_button = $('#dialog_cancel_button');
this._confirm_button = $('#dialog_confirm_button');
this._callback = null;
2010-09-05 03:02:02 +00:00
// Observe the buttons
this._cancel_button.bind('click', {dialog: this}, this.onCancelClicked);
this._confirm_button.bind('click', {dialog: this}, this.onConfirmClicked);
2010-09-05 03:02:02 +00:00
},
/*--------------------------------------------
*
* E V E N T F U N C T I O N S
*
*--------------------------------------------*/
2010-09-05 03:02:02 +00:00
hideDialog: function()
2010-09-05 03:02:02 +00:00
{
$('body.dialog_showing').removeClass('dialog_showing');
this._container.hide();
transmission.hideMobileAddressbar();
2010-09-05 03:02:02 +00:00
transmission.updateButtonStates();
},
onCancelClicked: function(event)
2010-09-05 03:02:02 +00:00
{
event.data.dialog.hideDialog();
2010-09-05 03:02:02 +00:00
},
onConfirmClicked: function(event)
2010-09-05 03:02:02 +00:00
{
var dialog = event.data.dialog;
dialog._callback();
dialog.hideDialog();
2010-09-05 03:02:02 +00:00
},
/*--------------------------------------------
*
* I N T E R F A C E F U N C T I O N S
*
*--------------------------------------------*/
2010-09-05 03:02:02 +00:00
/*
* Display a confirm dialog
*/
confirm: function(dialog_heading, dialog_message, confirm_button_label,
callback, cancel_button_label)
{
if (!isMobileDevice)
2010-09-05 03:02:02 +00:00
$('.dialog_container').hide();
setTextContent(this._heading[0], dialog_heading);
setTextContent(this._message[0], dialog_message);
setTextContent(this._cancel_button[0], cancel_button_label || 'Cancel');
setTextContent(this._confirm_button[0], confirm_button_label);
2010-09-05 03:02:02 +00:00
this._confirm_button.show();
this._callback = callback;
2010-09-05 03:02:02 +00:00
$('body').addClass('dialog_showing');
this._container.show();
transmission.updateButtonStates();
if (isMobileDevice)
transmission.hideMobileAddressbar();
2010-09-05 03:02:02 +00:00
},
/*
* Display an alert dialog
*/
alert: function(dialog_heading, dialog_message, cancel_button_label) {
if (!isMobileDevice)
2010-09-05 03:02:02 +00:00
$('.dialog_container').hide();
setTextContent(this._heading[0], dialog_heading);
setTextContent(this._message[0], dialog_message);
2010-09-05 03:02:02 +00:00
// jquery::hide() doesn't work here in Safari for some odd reason
this._confirm_button.css('display', 'none');
setTextContent(this._cancel_button[0], cancel_button_label);
2010-09-05 03:02:02 +00:00
// Just in case
$('#upload_container').hide();
$('#move_container').hide();
2010-09-05 03:02:02 +00:00
$('body').addClass('dialog_showing');
transmission.updateButtonStates();
if (isMobileDevice)
transmission.hideMobileAddressbar();
this._container.show();
2010-09-05 03:02:02 +00:00
}
2010-09-05 03:02:02 +00:00
}