mirror of
https://github.com/vector-im/element-web.git
synced 2024-11-17 14:05:04 +08:00
Move and merge LogoutPrompt
This commit is contained in:
parent
80a235adf9
commit
e008b5578d
@ -13,10 +13,11 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|||||||
See the License for the specific language governing permissions and
|
See the License for the specific language governing permissions and
|
||||||
limitations under the License.
|
limitations under the License.
|
||||||
*/
|
*/
|
||||||
|
var React = require('react');
|
||||||
|
var dis = require("../../../dispatcher");
|
||||||
|
|
||||||
var dis = require("../../dispatcher");
|
module.exports = React.createClass({
|
||||||
|
displayName: 'LogoutPrompt',
|
||||||
module.exports = {
|
|
||||||
logOut: function() {
|
logOut: function() {
|
||||||
dis.dispatch({action: 'logout'});
|
dis.dispatch({action: 'logout'});
|
||||||
if (this.props.onFinished) {
|
if (this.props.onFinished) {
|
||||||
@ -28,6 +29,20 @@ module.exports = {
|
|||||||
if (this.props.onFinished) {
|
if (this.props.onFinished) {
|
||||||
this.props.onFinished();
|
this.props.onFinished();
|
||||||
}
|
}
|
||||||
}
|
},
|
||||||
};
|
|
||||||
|
render: function() {
|
||||||
|
return (
|
||||||
|
<div>
|
||||||
|
<div className="mx_Dialog_content">
|
||||||
|
Sign out?
|
||||||
|
</div>
|
||||||
|
<div className="mx_Dialog_buttons">
|
||||||
|
<button onClick={this.logOut}>Sign Out</button>
|
||||||
|
<button onClick={this.cancelPrompt}>Cancel</button>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
);
|
||||||
|
}
|
||||||
|
});
|
||||||
|
|
Loading…
Reference in New Issue
Block a user