mirror of
https://github.com/mozilla/gecko-dev.git
synced 2025-04-05 14:12:46 +00:00
127 lines
3.5 KiB
JavaScript
127 lines
3.5 KiB
JavaScript
/** @jsx React.DOM */
|
|
|
|
/* This Source Code Form is subject to the terms of the Mozilla Public
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this file,
|
|
* You can obtain one at http://mozilla.org/MPL/2.0/. */
|
|
|
|
/* global loop:true, React */
|
|
|
|
var loop = loop || {};
|
|
loop.conversationViews = (function(mozL10n) {
|
|
|
|
var CALL_STATES = loop.store.CALL_STATES;
|
|
|
|
/**
|
|
* Displays details of the incoming/outgoing conversation
|
|
* (name, link, audio/video type etc).
|
|
*
|
|
* Allows the view to be extended with different buttons and progress
|
|
* via children properties.
|
|
*/
|
|
var ConversationDetailView = React.createClass({displayName: 'ConversationDetailView',
|
|
propTypes: {
|
|
calleeId: React.PropTypes.string,
|
|
},
|
|
|
|
render: function() {
|
|
document.title = this.props.calleeId;
|
|
|
|
return (
|
|
React.DOM.div({className: "call-window"},
|
|
React.DOM.h2(null, this.props.calleeId),
|
|
React.DOM.div(null, this.props.children)
|
|
)
|
|
);
|
|
}
|
|
});
|
|
|
|
/**
|
|
* View for pending conversations. Displays a cancel button and appropriate
|
|
* pending/ringing strings.
|
|
*/
|
|
var PendingConversationView = React.createClass({displayName: 'PendingConversationView',
|
|
propTypes: {
|
|
callState: React.PropTypes.string,
|
|
calleeId: React.PropTypes.string,
|
|
},
|
|
|
|
render: function() {
|
|
var pendingStateString;
|
|
if (this.props.callState === CALL_STATES.ALERTING) {
|
|
pendingStateString = mozL10n.get("call_progress_ringing_description");
|
|
} else {
|
|
pendingStateString = mozL10n.get("call_progress_connecting_description");
|
|
}
|
|
|
|
return (
|
|
ConversationDetailView({calleeId: this.props.calleeId},
|
|
|
|
React.DOM.p({className: "btn-label"}, pendingStateString),
|
|
|
|
React.DOM.div({className: "btn-group call-action-group"},
|
|
React.DOM.div({className: "fx-embedded-call-button-spacer"}),
|
|
React.DOM.button({className: "btn btn-cancel"},
|
|
mozL10n.get("initiate_call_cancel_button")
|
|
),
|
|
React.DOM.div({className: "fx-embedded-call-button-spacer"})
|
|
)
|
|
|
|
)
|
|
);
|
|
}
|
|
});
|
|
|
|
/**
|
|
* Call failed view. Displayed when a call fails.
|
|
*/
|
|
var CallFailedView = React.createClass({displayName: 'CallFailedView',
|
|
render: function() {
|
|
return (
|
|
React.DOM.div({className: "call-window"},
|
|
React.DOM.h2(null, mozL10n.get("generic_failure_title"))
|
|
)
|
|
);
|
|
}
|
|
});
|
|
|
|
/**
|
|
* Master View Controller for outgoing calls. This manages
|
|
* the different views that need displaying.
|
|
*/
|
|
var OutgoingConversationView = React.createClass({displayName: 'OutgoingConversationView',
|
|
propTypes: {
|
|
store: React.PropTypes.instanceOf(
|
|
loop.store.ConversationStore).isRequired
|
|
},
|
|
|
|
getInitialState: function() {
|
|
return this.props.store.attributes;
|
|
},
|
|
|
|
componentWillMount: function() {
|
|
this.props.store.on("change", function() {
|
|
this.setState(this.props.store.attributes);
|
|
}, this);
|
|
},
|
|
|
|
render: function() {
|
|
if (this.state.callState === CALL_STATES.TERMINATED) {
|
|
return (CallFailedView(null));
|
|
}
|
|
|
|
return (PendingConversationView({
|
|
callState: this.state.callState,
|
|
calleeId: this.state.calleeId}
|
|
))
|
|
}
|
|
});
|
|
|
|
return {
|
|
PendingConversationView: PendingConversationView,
|
|
ConversationDetailView: ConversationDetailView,
|
|
CallFailedView: CallFailedView,
|
|
OutgoingConversationView: OutgoingConversationView
|
|
};
|
|
|
|
})(document.mozL10n || navigator.mozL10n);
|