/* 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/. */ var loop = loop || {}; loop.roomViews = (function(mozL10n) { "use strict"; var ROOM_STATES = loop.store.ROOM_STATES; var SCREEN_SHARE_STATES = loop.shared.utils.SCREEN_SHARE_STATES; var sharedActions = loop.shared.actions; var sharedMixins = loop.shared.mixins; var sharedUtils = loop.shared.utils; var sharedViews = loop.shared.views; /** * ActiveRoomStore mixin. * @type {Object} */ var ActiveRoomStoreMixin = { mixins: [Backbone.Events], propTypes: { roomStore: React.PropTypes.instanceOf(loop.store.RoomStore).isRequired }, componentWillMount: function() { this.listenTo(this.props.roomStore, "change:activeRoom", this._onActiveRoomStateChanged); this.listenTo(this.props.roomStore, "change:error", this._onRoomError); this.listenTo(this.props.roomStore, "change:savingContext", this._onRoomSavingContext); }, componentWillUnmount: function() { this.stopListening(this.props.roomStore); }, _onActiveRoomStateChanged: function() { // Only update the state if we're mounted, to avoid the problem where // stopListening doesn't nuke the active listeners during a event // processing. if (this.isMounted()) { this.setState(this.props.roomStore.getStoreState("activeRoom")); } }, _onRoomError: function() { // Only update the state if we're mounted, to avoid the problem where // stopListening doesn't nuke the active listeners during a event // processing. if (this.isMounted()) { this.setState({error: this.props.roomStore.getStoreState("error")}); } }, _onRoomSavingContext: function() { // Only update the state if we're mounted, to avoid the problem where // stopListening doesn't nuke the active listeners during a event // processing. if (this.isMounted()) { this.setState({savingContext: this.props.roomStore.getStoreState("savingContext")}); } }, getInitialState: function() { var storeState = this.props.roomStore.getStoreState("activeRoom"); return _.extend({ // Used by the UI showcase. roomState: this.props.roomState || storeState.roomState, savingContext: false }, storeState); } }; var SocialShareDropdown = React.createClass({displayName: "SocialShareDropdown", propTypes: { dispatcher: React.PropTypes.instanceOf(loop.Dispatcher).isRequired, roomUrl: React.PropTypes.string, show: React.PropTypes.bool.isRequired, socialShareProviders: React.PropTypes.array }, handleAddServiceClick: function(event) { event.preventDefault(); this.props.dispatcher.dispatch(new sharedActions.AddSocialShareProvider()); }, handleProviderClick: function(event) { event.preventDefault(); var origin = event.currentTarget.dataset.provider; var provider = this.props.socialShareProviders .filter(function(socialProvider) { return socialProvider.origin == origin; })[0]; this.props.dispatcher.dispatch(new sharedActions.ShareRoomUrl({ provider: provider, roomUrl: this.props.roomUrl, previews: [] })); }, render: function() { // Don't render a thing when no data has been fetched yet. if (!this.props.socialShareProviders) { return null; } var cx = React.addons.classSet; var shareDropdown = cx({ "share-service-dropdown": true, "dropdown-menu": true, "visually-hidden": true, "hide": !this.props.show }); return ( React.createElement("ul", {className: shareDropdown}, React.createElement("li", {className: "dropdown-menu-item", onClick: this.handleAddServiceClick}, React.createElement("i", {className: "icon icon-add-share-service"}), React.createElement("span", null, mozL10n.get("share_add_service_button")) ), this.props.socialShareProviders.length ? React.createElement("li", {className: "dropdown-menu-separator"}) : null, this.props.socialShareProviders.map(function(provider, idx) { return ( React.createElement("li", {className: "dropdown-menu-item", "data-provider": provider.origin, key: "provider-" + idx, onClick: this.handleProviderClick}, React.createElement("img", {className: "icon", src: provider.iconURL}), React.createElement("span", null, provider.name) ) ); }.bind(this)) ) ); } }); /** * Desktop room invitation view (overlay). */ var DesktopRoomInvitationView = React.createClass({displayName: "DesktopRoomInvitationView", mixins: [sharedMixins.DropdownMenuMixin(".room-invitation-overlay")], propTypes: { dispatcher: React.PropTypes.instanceOf(loop.Dispatcher).isRequired, error: React.PropTypes.object, mozLoop: React.PropTypes.object.isRequired, // This data is supplied by the activeRoomStore. roomData: React.PropTypes.object.isRequired, savingContext: React.PropTypes.bool, show: React.PropTypes.bool.isRequired, showContext: React.PropTypes.bool.isRequired, socialShareProviders: React.PropTypes.array }, getInitialState: function() { return { copiedUrl: false, editMode: false, newRoomName: "" }; }, handleEmailButtonClick: function(event) { event.preventDefault(); var roomData = this.props.roomData; var contextURL = roomData.roomContextUrls && roomData.roomContextUrls[0]; this.props.dispatcher.dispatch( new sharedActions.EmailRoomUrl({ roomUrl: roomData.roomUrl, roomDescription: contextURL && contextURL.description })); }, handleCopyButtonClick: function(event) { event.preventDefault(); this.props.dispatcher.dispatch( new sharedActions.CopyRoomUrl({roomUrl: this.props.roomData.roomUrl})); this.setState({copiedUrl: true}); }, handleShareButtonClick: function(event) { event.preventDefault(); var providers = this.props.socialShareProviders; // If there are no providers available currently, save a click by dispatching // the 'AddSocialShareProvider' right away. if (!providers || !providers.length) { this.props.dispatcher.dispatch(new sharedActions.AddSocialShareProvider()); return; } this.toggleDropdownMenu(); }, handleAddContextClick: function(event) { event.preventDefault(); this.handleEditModeChange(true); }, handleEditModeChange: function(newEditMode) { this.setState({ editMode: newEditMode }); }, render: function() { if (!this.props.show) { return null; } var canAddContext = this.props.mozLoop.getLoopPref("contextInConversations.enabled") && !this.props.showContext && !this.state.editMode; var cx = React.addons.classSet; return ( React.createElement("div", {className: "room-invitation-overlay"}, React.createElement("div", {className: "room-invitation-content"}, React.createElement("p", {className: cx({hide: this.state.editMode})}, mozL10n.get("invite_header_text") ), React.createElement("a", {className: cx({hide: !canAddContext, "room-invitation-addcontext": true}), onClick: this.handleAddContextClick}, mozL10n.get("context_add_some_label") ) ), React.createElement("div", {className: cx({ "btn-group": true, "call-action-group": true, hide: this.state.editMode })}, React.createElement("button", {className: "btn btn-info btn-email", onClick: this.handleEmailButtonClick}, mozL10n.get("email_link_button") ), React.createElement("button", {className: "btn btn-info btn-copy", onClick: this.handleCopyButtonClick}, this.state.copiedUrl ? mozL10n.get("copied_url_button") : mozL10n.get("copy_url_button2") ), React.createElement("button", {className: "btn btn-info btn-share", onClick: this.handleShareButtonClick, ref: "anchor"}, mozL10n.get("share_button3") ) ), React.createElement(SocialShareDropdown, { dispatcher: this.props.dispatcher, ref: "menu", roomUrl: this.props.roomData.roomUrl, show: this.state.showMenu, socialShareProviders: this.props.socialShareProviders}), React.createElement(DesktopRoomContextView, { dispatcher: this.props.dispatcher, editMode: this.state.editMode, error: this.props.error, mozLoop: this.props.mozLoop, onEditModeChange: this.handleEditModeChange, roomData: this.props.roomData, savingContext: this.props.savingContext, show: this.props.showContext || this.state.editMode}) ) ); } }); var DesktopRoomContextView = React.createClass({displayName: "DesktopRoomContextView", mixins: [React.addons.LinkedStateMixin], propTypes: { dispatcher: React.PropTypes.instanceOf(loop.Dispatcher).isRequired, editMode: React.PropTypes.bool, error: React.PropTypes.object, mozLoop: React.PropTypes.object.isRequired, onEditModeChange: React.PropTypes.func, // This data is supplied by the activeRoomStore. roomData: React.PropTypes.object.isRequired, savingContext: React.PropTypes.bool.isRequired, show: React.PropTypes.bool.isRequired }, componentWillReceiveProps: function(nextProps) { var newState = {}; // When the 'show' prop is changed from outside this component, we do need // to update the state. if (("show" in nextProps) && nextProps.show !== this.props.show) { newState.show = nextProps.show; } if (("editMode" in nextProps && nextProps.editMode !== this.props.editMode)) { newState.editMode = nextProps.editMode; // If we're switching to edit mode, fetch the metadata of the current tab. // But _only_ if there's no context currently attached to the room; the // checkbox will be disabled in that case. if (nextProps.editMode) { this.props.mozLoop.getSelectedTabMetadata(function(metadata) { var previewImage = metadata.favicon || ""; var description = metadata.title || metadata.description; var metaUrl = metadata.url; this.setState({ availableContext: { previewImage: previewImage, description: description, url: metaUrl } }); }.bind(this)); } } // When we receive an update for the `roomData` property, make sure that // the current form fields reflect reality. This is necessary, because the // form state is maintained in the components' state. if (nextProps.roomData) { // Right now it's only necessary to update the form input states when // they contain no text yet. if (!this.state.newRoomName && nextProps.roomData.roomName) { newState.newRoomName = nextProps.roomData.roomName; } var url = this._getURL(nextProps.roomData); if (url) { if (!this.state.newRoomURL && url.location) { newState.newRoomURL = url.location; } if (!this.state.newRoomDescription && url.description) { newState.newRoomDescription = url.description; } if (!this.state.newRoomThumbnail && url.thumbnail) { newState.newRoomThumbnail = url.thumbnail; } } } // Make sure we do not show the edit-mode when we just successfully saved // context. if (this.props.savingContext && nextProps.savingContext !== this.props.savingContext && !nextProps.error && this.state.editMode) { newState.editMode = false; } if (Object.getOwnPropertyNames(newState).length) { this.setState(newState); } }, getDefaultProps: function() { return { editMode: false }; }, getInitialState: function() { var url = this._getURL(); return { // `availableContext` prop only used in tests. availableContext: this.props.availableContext, editMode: this.props.editMode, show: this.props.show, newRoomName: this.props.roomData.roomName || "", newRoomURL: url && url.location || "", newRoomDescription: url && url.description || "", newRoomThumbnail: url && url.thumbnail || "" }; }, handleCloseClick: function(event) { event.preventDefault(); if (this.state.editMode) { this.setState({ editMode: false }); if (this.props.onEditModeChange) { this.props.onEditModeChange(false); } return; } this.setState({ show: false }); }, handleContextClick: function(event) { event.stopPropagation(); event.preventDefault(); var url = this._getURL(); if (!url || !url.location) { return; } this.props.mozLoop.openURL(url.location); }, handleEditClick: function(event) { event.preventDefault(); this.setState({ editMode: true }); if (this.props.onEditModeChange) { this.props.onEditModeChange(true); } }, handleCheckboxChange: function(state) { if (state.checked) { // The checkbox was checked, prefill the fields with the values available // in `availableContext`. var context = this.state.availableContext; this.setState({ newRoomURL: context.url, newRoomDescription: context.description, newRoomThumbnail: context.previewImage }); } else { this.setState({ newRoomURL: "", newRoomDescription: "", newRoomThumbnail: "" }); } }, handleFormSubmit: function(event) { event && event.preventDefault(); this.props.dispatcher.dispatch(new sharedActions.UpdateRoomContext({ roomToken: this.props.roomData.roomToken, newRoomName: this.state.newRoomName, newRoomURL: this.state.newRoomURL, newRoomDescription: this.state.newRoomDescription, newRoomThumbnail: this.state.newRoomThumbnail })); }, handleTextareaKeyDown: function(event) { // Submit the form as soon as the user press Enter in that field // Note: We're using a textarea instead of a simple text input to display // placeholder and entered text on two lines, to circumvent l10n // rendering/UX issues for some locales. if (event.which === 13) { this.handleFormSubmit(event); } }, /** * Utility function to extract URL context data from the `roomData` property * that can also be supplied as an argument. * * @param {Object} roomData Optional room data object to use, equivalent to * the activeRoomStore state. * @return {Object} The first context URL found on the `roomData` object. */ _getURL: function(roomData) { roomData = roomData || this.props.roomData; return this.props.roomData.roomContextUrls && this.props.roomData.roomContextUrls[0]; }, /** * Truncate a string if it exceeds the length as defined in `maxLen`, which * is defined as '72' characters by default. If the string needs trimming, * it'll be suffixed with the unicode ellipsis char, \u2026. * * @param {String} str The string to truncate, if needed. * @param {Number} maxLen Maximum number of characters that the string is * allowed to contain. Optional, defaults to 72. * @return {String} Truncated version of `str`. */ _truncate: function(str, maxLen) { if (!maxLen) { maxLen = 72; } return (str.length > maxLen) ? str.substr(0, maxLen) + "…" : str; }, render: function() { if (!this.state.show && !this.state.editMode) { return null; } var url = this._getURL(); var thumbnail = url && url.thumbnail || "loop/shared/img/icons-16x16.svg#globe"; var urlDescription = url && url.description || ""; var location = url && url.location || ""; var locationData = null; if (location) { locationData = checkboxLabel = sharedUtils.formatURL(location); } if (!checkboxLabel) { try { checkboxLabel = sharedUtils.formatURL((this.state.availableContext ? this.state.availableContext.url : "")); } catch (ex) {} } var cx = React.addons.classSet; if (this.state.editMode) { var availableContext = this.state.availableContext; // The checkbox shows as checked when there's already context data // attached to this room. var checked = !!urlDescription; var checkboxLabel = urlDescription || (availableContext && availableContext.url ? availableContext.description : ""); return ( React.createElement("div", {className: "room-context editMode"}, React.createElement("p", {className: cx({"error": !!this.props.error, "error-display-area": true})}, mozL10n.get("rooms_change_failed_label") ), React.createElement("div", {className: "room-context-label"}, mozL10n.get("context_inroom_label")), React.createElement(sharedViews.Checkbox, { additionalClass: cx({ hide: !checkboxLabel }), checked: checked, disabled: checked, label: checkboxLabel, onChange: this.handleCheckboxChange, value: location}), React.createElement("form", {onSubmit: this.handleFormSubmit}, React.createElement("input", {className: "room-context-name", onKeyDown: this.handleTextareaKeyDown, placeholder: mozL10n.get("context_edit_name_placeholder"), type: "text", valueLink: this.linkState("newRoomName")}), React.createElement("input", {className: "room-context-url", disabled: availableContext && availableContext.url === this.state.newRoomURL, onKeyDown: this.handleTextareaKeyDown, placeholder: "https://", type: "text", valueLink: this.linkState("newRoomURL")}), React.createElement("textarea", {className: "room-context-comments", onKeyDown: this.handleTextareaKeyDown, placeholder: mozL10n.get("context_edit_comments_placeholder"), rows: "3", type: "text", valueLink: this.linkState("newRoomDescription")}) ), React.createElement("button", {className: "btn btn-info", disabled: this.props.savingContext, onClick: this.handleFormSubmit}, mozL10n.get("context_save_label2") ), React.createElement("button", {className: "room-context-btn-close", onClick: this.handleCloseClick, title: mozL10n.get("cancel_button")}) ) ); } if (!locationData) { return null; } return ( React.createElement("div", {className: "room-context"}, React.createElement("div", {className: "room-context-label"}, mozL10n.get("context_inroom_label")), React.createElement("div", {className: "room-context-content", onClick: this.handleContextClick}, React.createElement("img", {className: "room-context-thumbnail", src: thumbnail}), React.createElement("div", {className: "room-context-description", title: urlDescription}, this._truncate(urlDescription), React.createElement("a", {className: "room-context-url", title: locationData.location}, locationData.hostname) ) ), React.createElement("button", {className: "room-context-btn-close", onClick: this.handleCloseClick, title: mozL10n.get("context_hide_tooltip")}), React.createElement("button", {className: "room-context-btn-edit", onClick: this.handleEditClick, title: mozL10n.get("context_edit_tooltip")}) ) ); } }); /** * Desktop room conversation view. */ var DesktopRoomConversationView = React.createClass({displayName: "DesktopRoomConversationView", mixins: [ ActiveRoomStoreMixin, sharedMixins.DocumentTitleMixin, sharedMixins.MediaSetupMixin, sharedMixins.RoomsAudioMixin, sharedMixins.WindowCloseMixin ], propTypes: { dispatcher: React.PropTypes.instanceOf(loop.Dispatcher).isRequired, // The poster URLs are for UI-showcase testing and development. localPosterUrl: React.PropTypes.string, mozLoop: React.PropTypes.object.isRequired, remotePosterUrl: React.PropTypes.string }, componentWillUpdate: function(nextProps, nextState) { // The SDK needs to know about the configuration and the elements to use // for display. So the best way seems to pass the information here - ideally // the sdk wouldn't need to know this, but we can't change that. if (this.state.roomState !== ROOM_STATES.MEDIA_WAIT && nextState.roomState === ROOM_STATES.MEDIA_WAIT) { this.props.dispatcher.dispatch(new sharedActions.SetupStreamElements({ publisherConfig: this.getDefaultPublisherConfig({ publishVideo: !this.state.videoMuted }) })); } }, /** * User clicked on the "Leave" button. */ leaveRoom: function() { if (this.state.used) { this.props.dispatcher.dispatch(new sharedActions.LeaveRoom()); } else { this.closeWindow(); } }, /** * Used to control publishing a stream - i.e. to mute a stream * * @param {String} type The type of stream, e.g. "audio" or "video". * @param {Boolean} enabled True to enable the stream, false otherwise. */ publishStream: function(type, enabled) { this.props.dispatcher.dispatch( new sharedActions.SetMute({ type: type, enabled: enabled })); }, _shouldRenderInvitationOverlay: function() { return (this.state.roomState !== ROOM_STATES.HAS_PARTICIPANTS); }, _shouldRenderContextView: function() { return !!( this.props.mozLoop.getLoopPref("contextInConversations.enabled") && (this.state.roomContextUrls || this.state.roomDescription) ); }, /** * Works out if remote video should be rended or not, depending on the * room state and other flags. * * @return {Boolean} True if remote video should be rended. * * XXX Refactor shouldRenderRemoteVideo & shouldRenderLoading into one fn * that returns an enum */ shouldRenderRemoteVideo: function() { switch(this.state.roomState) { case ROOM_STATES.HAS_PARTICIPANTS: if (this.state.remoteVideoEnabled) { return true; } if (this.state.mediaConnected) { // since the remoteVideo hasn't yet been enabled, if the // media is connected, then we should be displaying an avatar. return false; } return true; case ROOM_STATES.READY: case ROOM_STATES.INIT: case ROOM_STATES.JOINING: case ROOM_STATES.SESSION_CONNECTED: case ROOM_STATES.JOINED: case ROOM_STATES.MEDIA_WAIT: // this case is so that we don't show an avatar while waiting for // the other party to connect return true; case ROOM_STATES.CLOSING: return true; default: console.warn("DesktopRoomConversationView.shouldRenderRemoteVideo:" + " unexpected roomState: ", this.state.roomState); return true; } }, /** * Should we render a visual cue to the user (e.g. a spinner) that a local * stream is on its way from the camera? * * @returns {boolean} * @private */ _shouldRenderLocalLoading: function () { return this.state.roomState === ROOM_STATES.MEDIA_WAIT && !this.state.localSrcVideoObject; }, /** * Should we render a visual cue to the user (e.g. a spinner) that a remote * stream is on its way from the other user? * * @returns {boolean} * @private */ _shouldRenderRemoteLoading: function() { return this.state.roomState === ROOM_STATES.HAS_PARTICIPANTS && !this.state.remoteSrcVideoObject && !this.state.mediaConnected; }, render: function() { if (this.state.roomName) { this.setTitle(this.state.roomName); } var localStreamClasses = React.addons.classSet({ local: true, "local-stream": true, "local-stream-audio": this.state.videoMuted, "room-preview": this.state.roomState !== ROOM_STATES.HAS_PARTICIPANTS }); var screenShareData = { state: this.state.screenSharingState, visible: true }; var shouldRenderInvitationOverlay = this._shouldRenderInvitationOverlay(); var shouldRenderContextView = this._shouldRenderContextView(); var roomData = this.props.roomStore.getStoreState("activeRoom"); switch(this.state.roomState) { case ROOM_STATES.FAILED: case ROOM_STATES.FULL: { // Note: While rooms are set to hold a maximum of 2 participants, the // FULL case should never happen on desktop. return ( React.createElement(loop.conversationViews.GenericFailureView, { cancelCall: this.closeWindow, failureReason: this.state.failureReason}) ); } case ROOM_STATES.ENDED: { return ( React.createElement(sharedViews.FeedbackView, { onAfterFeedbackReceived: this.closeWindow}) ); } default: { return ( React.createElement("div", {className: "room-conversation-wrapper"}, React.createElement(DesktopRoomInvitationView, { dispatcher: this.props.dispatcher, error: this.state.error, mozLoop: this.props.mozLoop, roomData: roomData, savingContext: this.state.savingContext, show: shouldRenderInvitationOverlay, showContext: shouldRenderContextView, socialShareProviders: this.state.socialShareProviders}), React.createElement("div", {className: "video-layout-wrapper"}, React.createElement("div", {className: "conversation room-conversation"}, React.createElement("div", {className: "media nested"}, React.createElement("div", {className: "video_wrapper remote_wrapper"}, React.createElement("div", {className: "video_inner remote focus-stream"}, React.createElement(sharedViews.MediaView, {displayAvatar: !this.shouldRenderRemoteVideo(), isLoading: this._shouldRenderRemoteLoading(), mediaType: "remote", posterUrl: this.props.remotePosterUrl, srcVideoObject: this.state.remoteSrcVideoObject}) ) ), React.createElement("div", {className: localStreamClasses}, React.createElement(sharedViews.MediaView, {displayAvatar: this.state.videoMuted, isLoading: this._shouldRenderLocalLoading(), mediaType: "local", posterUrl: this.props.localPosterUrl, srcVideoObject: this.state.localSrcVideoObject}) ) ), React.createElement(sharedViews.ConversationToolbar, { audio: {enabled: !this.state.audioMuted, visible: true}, dispatcher: this.props.dispatcher, hangup: this.leaveRoom, publishStream: this.publishStream, screenShare: screenShareData, video: {enabled: !this.state.videoMuted, visible: true}}) ) ), React.createElement(DesktopRoomContextView, { dispatcher: this.props.dispatcher, error: this.state.error, mozLoop: this.props.mozLoop, roomData: roomData, savingContext: this.state.savingContext, show: !shouldRenderInvitationOverlay && shouldRenderContextView}), React.createElement(sharedViews.TextChatView, { dispatcher: this.props.dispatcher, showAlways: false, showRoomName: false}) ) ); } } } }); return { ActiveRoomStoreMixin: ActiveRoomStoreMixin, SocialShareDropdown: SocialShareDropdown, DesktopRoomContextView: DesktopRoomContextView, DesktopRoomConversationView: DesktopRoomConversationView, DesktopRoomInvitationView: DesktopRoomInvitationView }; })(document.mozL10n || navigator.mozL10n);