94 lines
3.3 KiB
JavaScript
94 lines
3.3 KiB
JavaScript
/*
|
|
|
|
Copyright 2008-2013 Clipperz Srl
|
|
|
|
This file is part of Clipperz, the online password manager.
|
|
For further information about its features and functionalities please
|
|
refer to http://www.clipperz.com.
|
|
|
|
* Clipperz is free software: you can redistribute it and/or modify it
|
|
under the terms of the GNU Affero General Public License as published
|
|
by the Free Software Foundation, either version 3 of the License, or
|
|
(at your option) any later version.
|
|
|
|
* Clipperz 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 Clipperz. If not, see http://www.gnu.org/licenses/.
|
|
|
|
*/
|
|
|
|
Clipperz.Base.module('Clipperz.PM.UI.Components');
|
|
|
|
Clipperz.PM.UI.Components.DialogBox = React.createClass({
|
|
|
|
propTypes: {
|
|
'info': React.PropTypes.object.isRequired,
|
|
'deferred': React.PropTypes.object.isRequired
|
|
},
|
|
/*
|
|
ask: function (someInfo) {
|
|
var deferredResult;
|
|
|
|
deferredResult = new Clipperz.Async.Deferred('DialogBox.ask', {trace:false});
|
|
deferredResult.addCallback(someInfo['possibleAnswers']['cancel']['answer']);
|
|
deferredResult.callback();
|
|
// deferredResult.cancel();
|
|
|
|
return deferredResult;
|
|
},
|
|
*/
|
|
|
|
//-------------------------------------------------------------------------
|
|
|
|
handleKeyDown: function (anEvent) {
|
|
console.log("DIALOG BOX - key DOWN", anEvent);
|
|
},
|
|
|
|
handleKeyPress: function (anEvent) {
|
|
console.log("DIALOG BOX - key PRESS", anEvent);
|
|
},
|
|
|
|
handleKeyUp: function (anEvent) {
|
|
console.log("DIALOG BOX - key UP", anEvent);
|
|
},
|
|
|
|
//-------------------------------------------------------------------------
|
|
|
|
handleAnswerButton: function (anEvent) {
|
|
//console.log("HANDLE ANSWER BUTTON", anEvent.currentTarget.dataset['answerKey']);
|
|
//console.log("ANSWER INFO", this.props['info']['possibleAnswers'][anEvent.currentTarget.dataset['answerKey']]);
|
|
//console.log("<-- DEFERRED", this.props['deferred']);
|
|
this.props['info']['possibleAnswers'][anEvent.currentTarget.dataset['answerKey']]['answer'](this.props['deferred']);
|
|
},
|
|
|
|
renderAnswerButton: function (anAnswerInfoKey) {
|
|
var answerInfo = this.props['info']['possibleAnswers'][anAnswerInfoKey];
|
|
var classes = {
|
|
'button': true,
|
|
'isDefault': answerInfo['isDefault']
|
|
};
|
|
|
|
return React.DOM.div({'className':React.addons.classSet(classes), 'onClick':this.handleAnswerButton, 'data-answer-key':anAnswerInfoKey}, answerInfo['label'])
|
|
},
|
|
|
|
//=========================================================================
|
|
|
|
render: function () {
|
|
//console.log("DIALOG BOX", this.props);
|
|
//console.log("--> DEFERRED", this.props['deferred']);
|
|
return React.DOM.div({'className':'dialogBox', 'onKeyDown':this.handleKeyDown, 'onKeyPress':this.handleKeyPress, 'onKeyUp':this.handleKeyUp}, [
|
|
React.DOM.div({'className':'mask'}),
|
|
React.DOM.div({'className':'dialog'}, [
|
|
React.DOM.h3({'className': 'message'}, this.props['info']['question']),
|
|
React.DOM.div({'className': 'answers'}, MochiKit.Base.map(this.renderAnswerButton, MochiKit.Base.keys(this.props['info']['possibleAnswers'])))
|
|
])
|
|
]);
|
|
}
|
|
|
|
//=========================================================================
|
|
});
|