This repository has been archived by the owner on Sep 11, 2024. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 829
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #2666 from matrix-org/bwindels/userview
Bring back user view
- Loading branch information
Showing
11 changed files
with
137 additions
and
20 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
/* | ||
Copyright 2019 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. | ||
*/ | ||
|
||
.mx_MainSplit { | ||
display: flex; | ||
flex-direction: row; | ||
min-width: 0; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,82 @@ | ||
/* | ||
Copyright 2019 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 Matrix from "matrix-js-sdk"; | ||
import MatrixClientPeg from "../../MatrixClientPeg"; | ||
import sdk from "../../index"; | ||
import Modal from '../../Modal'; | ||
import { _t } from '../../languageHandler'; | ||
|
||
export default class UserView extends React.Component { | ||
static get propTypes() { | ||
return { | ||
userId: React.PropTypes.string, | ||
}; | ||
} | ||
|
||
constructor(props) { | ||
super(props); | ||
this.state = {}; | ||
} | ||
|
||
componentWillMount() { | ||
if (this.props.userId) { | ||
this._loadProfileInfo(); | ||
} | ||
} | ||
|
||
componentDidUpdate(prevProps) { | ||
if (prevProps.userId !== this.props.userId) { | ||
this._loadProfileInfo(); | ||
} | ||
} | ||
|
||
async _loadProfileInfo() { | ||
const cli = MatrixClientPeg.get(); | ||
this.setState({loading: true}); | ||
let profileInfo; | ||
try { | ||
profileInfo = await cli.getProfileInfo(this.props.userId); | ||
} catch (err) { | ||
const ErrorDialog = sdk.getComponent('dialogs.ErrorDialog'); | ||
Modal.createTrackedDialog(_t('Could not load user profile'), '', ErrorDialog, { | ||
title: _t('Could not load user profile'), | ||
description: ((err && err.message) ? err.message : _t("Operation failed")), | ||
}); | ||
this.setState({loading: false}); | ||
return; | ||
} | ||
const fakeEvent = new Matrix.MatrixEvent({type: "m.room.member", content: profileInfo}); | ||
const member = new Matrix.RoomMember(null, this.props.userId); | ||
member.setMembershipEvent(fakeEvent); | ||
this.setState({member, loading: false}); | ||
} | ||
|
||
render() { | ||
if (this.state.loading) { | ||
const Spinner = sdk.getComponent("elements.Spinner"); | ||
return <Spinner />; | ||
} else if (this.state.member) { | ||
const RightPanel = sdk.getComponent('structures.RightPanel'); | ||
const MainSplit = sdk.getComponent('structures.MainSplit'); | ||
const panel = <RightPanel user={this.state.member} />; | ||
return (<MainSplit panel={panel}><div style={{flex: "1"}} /></MainSplit>); | ||
} else { | ||
return (<div />); | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters