/* Copyright 2015, 2016 OpenMarket Ltd Copyright 2017 Vector Creations Ltd Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. */ 'use strict'; import Promise from 'bluebird'; import React from 'react'; import classNames from 'classnames'; import sdk from 'matrix-react-sdk'; import { _t } from 'matrix-react-sdk/lib/languageHandler'; import MatrixClientPeg from 'matrix-react-sdk/lib/MatrixClientPeg'; import dis from 'matrix-react-sdk/lib/dispatcher'; import DMRoomMap from 'matrix-react-sdk/lib/utils/DMRoomMap'; import * as Rooms from 'matrix-react-sdk/lib/Rooms'; import * as RoomNotifs from 'matrix-react-sdk/lib/RoomNotifs'; import Modal from 'matrix-react-sdk/lib/Modal'; module.exports = React.createClass({ displayName: 'RoomTileContextMenu', propTypes: { room: React.PropTypes.object.isRequired, /* callback called when the menu is dismissed */ onFinished: React.PropTypes.func, }, getInitialState() { const dmRoomMap = new DMRoomMap(MatrixClientPeg.get()); return { roomNotifState: RoomNotifs.getRoomNotifsState(this.props.room.roomId), isFavourite: this.props.room.tags.hasOwnProperty("m.favourite"), isLowPriority: this.props.room.tags.hasOwnProperty("m.lowpriority"), isDirectMessage: Boolean(dmRoomMap.getUserIdForRoomId(this.props.room.roomId)), } }, componentWillMount: function() { this._unmounted = false; }, componentWillUnmount: function() { this._unmounted = true; }, _toggleTag: function(tagNameOn, tagNameOff) { var self = this; const roomId = this.props.room.roomId; var cli = MatrixClientPeg.get(); if (!cli.isGuest()) { Promise.delay(500).then(function() { if (tagNameOff !== null && tagNameOff !== undefined) { cli.deleteRoomTag(roomId, tagNameOff).finally(function() { // Close the context menu if (self.props.onFinished) { self.props.onFinished(); }; }).catch(function(err) { var ErrorDialog = sdk.getComponent("dialogs.ErrorDialog"); Modal.createDialog(ErrorDialog, { title: _t('Failed to remove tag %(tagName)s from room', {tagName: tagNameOff}), description: ((err && err.message) ? err.message : _t('Operation failed')), }); }); } if (tagNameOn !== null && tagNameOn !== undefined) { // If the tag ordering meta data is required, it is added by // the RoomSubList when it sorts its rooms cli.setRoomTag(roomId, tagNameOn, {}).finally(function() { // Close the context menu if (self.props.onFinished) { self.props.onFinished(); }; }).catch(function(err) { var ErrorDialog = sdk.getComponent("dialogs.ErrorDialog"); Modal.createDialog(ErrorDialog, { title: _t('Failed to remove tag %(tagName)s from room', {tagName: tagNameOn}), description: ((err && err.message) ? err.message : _t('Operation failed')), }); }); } }); } }, _onClickFavourite: function() { // Tag room as 'Favourite' if (!this.state.isFavourite && this.state.isLowPriority) { this.setState({ isFavourite: true, isLowPriority: false, }); this._toggleTag("m.favourite", "m.lowpriority"); } else if (this.state.isFavourite) { this.setState({isFavourite: false}); this._toggleTag(null, "m.favourite"); } else if (!this.state.isFavourite) { this.setState({isFavourite: true}); this._toggleTag("m.favourite"); } }, _onClickLowPriority: function() { // Tag room as 'Low Priority' if (!this.state.isLowPriority && this.state.isFavourite) { this.setState({ isFavourite: false, isLowPriority: true, }); this._toggleTag("m.lowpriority", "m.favourite"); } else if (this.state.isLowPriority) { this.setState({isLowPriority: false}); this._toggleTag(null, "m.lowpriority"); } else if (!this.state.isLowPriority) { this.setState({isLowPriority: true}); this._toggleTag("m.lowpriority"); } }, _onClickDM: function() { const newIsDirectMessage = !this.state.isDirectMessage; this.setState({ isDirectMessage: newIsDirectMessage, }); if (MatrixClientPeg.get().isGuest()) return; Rooms.guessAndSetDMRoom( this.props.room, newIsDirectMessage ).delay(500).finally(() => { // Close the context menu if (this.props.onFinished) { this.props.onFinished(); }; }, (err) => { var ErrorDialog = sdk.getComponent("dialogs.ErrorDialog"); Modal.createDialog(ErrorDialog, { title: _t('Failed to set Direct Message status of room'), description: ((err && err.message) ? err.message : _t('Operation failed')), }); }); }, _onClickLeave: function() { // Leave room dis.dispatch({ action: 'leave_room', room_id: this.props.room.roomId, }); // Close the context menu if (this.props.onFinished) { this.props.onFinished(); }; }, _onClickReject: function() { dis.dispatch({ action: 'reject_invite', room_id: this.props.room.roomId, }); // Close the context menu if (this.props.onFinished) { this.props.onFinished(); }; }, _onClickForget: function() { // FIXME: duplicated with RoomSettings (and dead code in RoomView) MatrixClientPeg.get().forget(this.props.room.roomId).done(function() { dis.dispatch({ action: 'view_next_room' }); }, function(err) { var errCode = err.errcode || "unknown error code"; var ErrorDialog = sdk.getComponent("dialogs.ErrorDialog"); Modal.createDialog(ErrorDialog, { title: _t('Failed to forget room %(errCode)s', {errCode: errCode}), description: ((err && err.message) ? err.message : _t('Operation failed')), }); }); // Close the context menu if (this.props.onFinished) { this.props.onFinished(); }; }, _saveNotifState: function(newState) { const oldState = this.state.roomNotifState; const roomId = this.props.room.roomId; var cli = MatrixClientPeg.get(); if (cli.isGuest()) return; this.setState({ roomNotifState: newState, }); RoomNotifs.setRoomNotifsState(this.props.room.roomId, newState).done(() => { // delay slightly so that the user can see their state change // before closing the menu return Promise.delay(500).then(() => { if (this._unmounted) return; // Close the context menu if (this.props.onFinished) { this.props.onFinished(); }; }); }, (error) => { // TODO: some form of error notification to the user // to inform them that their state change failed. // For now we at least set the state back if (this._unmounted) return; this.setState({ roomNotifState: oldState, }); }); }, _onClickAlertMe: function() { this._saveNotifState(RoomNotifs.ALL_MESSAGES_LOUD); }, _onClickAllNotifs: function() { this._saveNotifState(RoomNotifs.ALL_MESSAGES); }, _onClickMentions: function() { this._saveNotifState(RoomNotifs.MENTIONS_ONLY); }, _onClickMute: function() { this._saveNotifState(RoomNotifs.MUTE); }, _renderNotifMenu: function() { var alertMeClasses = classNames({ 'mx_RoomTileContextMenu_notif_field': true, 'mx_RoomTileContextMenu_notif_fieldSet': this.state.roomNotifState == RoomNotifs.ALL_MESSAGES_LOUD, }); var allNotifsClasses = classNames({ 'mx_RoomTileContextMenu_notif_field': true, 'mx_RoomTileContextMenu_notif_fieldSet': this.state.roomNotifState == RoomNotifs.ALL_MESSAGES, }); var mentionsClasses = classNames({ 'mx_RoomTileContextMenu_notif_field': true, 'mx_RoomTileContextMenu_notif_fieldSet': this.state.roomNotifState == RoomNotifs.MENTIONS_ONLY, }); var muteNotifsClasses = classNames({ 'mx_RoomTileContextMenu_notif_field': true, 'mx_RoomTileContextMenu_notif_fieldSet': this.state.roomNotifState == RoomNotifs.MUTE, }); return (
{ _t('All messages (loud)') }
{ _t('All messages') }
{ _t('Mentions only') }
{ _t('Mute') }
); }, _renderLeaveMenu: function(membership) { if (!membership) { return null; } let leaveClickHandler = null; let leaveText = null; switch (membership) { case "join": leaveClickHandler = this._onClickLeave; leaveText = _t('Leave'); break; case "leave": case "ban": leaveClickHandler = this._onClickForget; leaveText = _t('Forget'); break; case "invite": leaveClickHandler = this._onClickReject; leaveText = _t('Reject'); break; } return (
{ leaveText }
); }, _renderRoomTagMenu: function() { const favouriteClasses = classNames({ 'mx_RoomTileContextMenu_tag_field': true, 'mx_RoomTileContextMenu_tag_fieldSet': this.state.isFavourite, 'mx_RoomTileContextMenu_tag_fieldDisabled': false, }); const lowPriorityClasses = classNames({ 'mx_RoomTileContextMenu_tag_field': true, 'mx_RoomTileContextMenu_tag_fieldSet': this.state.isLowPriority, 'mx_RoomTileContextMenu_tag_fieldDisabled': false, }); const dmClasses = classNames({ 'mx_RoomTileContextMenu_tag_field': true, 'mx_RoomTileContextMenu_tag_fieldSet': this.state.isDirectMessage, 'mx_RoomTileContextMenu_tag_fieldDisabled': false, }); return (
{ _t('Favourite') }
{ _t('Low Priority') }
{ _t('Direct Chat') }
); }, render: function() { const myMember = this.props.room.getMember( MatrixClientPeg.get().credentials.userId ); // Can't set notif level or tags on non-join rooms if (myMember.membership !== 'join') { return this._renderLeaveMenu(myMember.membership); } return (
{ this._renderNotifMenu() }
{ this._renderLeaveMenu(myMember.membership) }
{ this._renderRoomTagMenu() }
); } });