mirror of
https://github.com/element-hq/element-web.git
synced 2024-12-17 03:31:45 +03:00
92 lines
2.9 KiB
JavaScript
92 lines
2.9 KiB
JavaScript
|
/*
|
||
|
Copyright 2017 New Vector 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.
|
||
|
*/
|
||
|
|
||
|
import React from 'react';
|
||
|
import PropTypes from 'prop-types';
|
||
|
import { MatrixClient } from 'matrix-js-sdk';
|
||
|
import sdk from '../../../index';
|
||
|
import GroupStoreCache from '../../../stores/GroupStoreCache';
|
||
|
import GroupStore from '../../../stores/GroupStore';
|
||
|
import { _t } from '../../../languageHandler.js';
|
||
|
|
||
|
export default React.createClass({
|
||
|
displayName: 'GroupPublicityToggle',
|
||
|
|
||
|
propTypes: {
|
||
|
groupId: PropTypes.string.isRequired,
|
||
|
},
|
||
|
|
||
|
contextTypes: {
|
||
|
matrixClient: PropTypes.instanceOf(MatrixClient),
|
||
|
},
|
||
|
|
||
|
getInitialState() {
|
||
|
return {
|
||
|
busy: false,
|
||
|
ready: false,
|
||
|
isGroupPublicised: null,
|
||
|
};
|
||
|
},
|
||
|
|
||
|
componentWillMount: function() {
|
||
|
this._initGroupStore(this.props.groupId);
|
||
|
},
|
||
|
|
||
|
_initGroupStore: function(groupId) {
|
||
|
this._groupStore = GroupStoreCache.getGroupStore(this.context.matrixClient, groupId);
|
||
|
this._groupStore.registerListener(() => {
|
||
|
this.setState({
|
||
|
isGroupPublicised: this._groupStore.getGroupPublicity(),
|
||
|
ready: this._groupStore.isStateReady(GroupStore.STATE_KEY.Summary),
|
||
|
});
|
||
|
});
|
||
|
},
|
||
|
|
||
|
_onPublicityToggle: function(e) {
|
||
|
e.stopPropagation();
|
||
|
this.setState({
|
||
|
busy: true,
|
||
|
// Optimistic early update
|
||
|
isGroupPublicised: !this.state.isGroupPublicised,
|
||
|
});
|
||
|
this._groupStore.setGroupPublicity(!this.state.isGroupPublicised).then(() => {
|
||
|
this.setState({
|
||
|
busy: false,
|
||
|
});
|
||
|
});
|
||
|
},
|
||
|
|
||
|
render() {
|
||
|
const GroupTile = sdk.getComponent('groups.GroupTile');
|
||
|
const input = <input type="checkbox"
|
||
|
onClick={this._onPublicityToggle}
|
||
|
checked={this.state.isGroupPublicised}
|
||
|
/>;
|
||
|
const labelText = !this.state.ready ? _t("Loading...") :
|
||
|
(this.state.isGroupPublicised ?
|
||
|
_t("Flair will appear if enabled in room settings") :
|
||
|
_t("Flair will not appear")
|
||
|
);
|
||
|
return <div className="mx_GroupPublicity_toggle">
|
||
|
<GroupTile groupId={this.props.groupId} showDescription={false} avatarHeight={40} />
|
||
|
<label onClick={this._onPublicityToggle}>
|
||
|
{ input }
|
||
|
{ labelText }
|
||
|
</label>
|
||
|
</div>;
|
||
|
},
|
||
|
});
|