mirror of
https://github.com/element-hq/element-web.git
synced 2024-12-15 22:51:55 +03:00
b243004a6c
Signed-off-by: Michael Telatynski <7t3chguy@gmail.com>
75 lines
2.1 KiB
JavaScript
75 lines
2.1 KiB
JavaScript
/*
|
|
Copyright 2015, 2016 OpenMarket 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 createReactClass from 'create-react-class';
|
|
import Notifier from "../../../Notifier";
|
|
import dis from "../../../dispatcher";
|
|
import { _t } from '../../../languageHandler';
|
|
|
|
module.exports = createReactClass({
|
|
displayName: 'EnableNotificationsButton',
|
|
|
|
componentDidMount: function() {
|
|
this.dispatcherRef = dis.register(this.onAction);
|
|
},
|
|
|
|
componentWillUnmount: function() {
|
|
dis.unregister(this.dispatcherRef);
|
|
},
|
|
|
|
onAction: function(payload) {
|
|
if (payload.action !== "notifier_enabled") {
|
|
return;
|
|
}
|
|
this.forceUpdate();
|
|
},
|
|
|
|
enabled: function() {
|
|
return Notifier.isEnabled();
|
|
},
|
|
|
|
onClick: function() {
|
|
const self = this;
|
|
if (!Notifier.supportsDesktopNotifications()) {
|
|
return;
|
|
}
|
|
if (!Notifier.isEnabled()) {
|
|
Notifier.setEnabled(true, function() {
|
|
self.forceUpdate();
|
|
});
|
|
} else {
|
|
Notifier.setEnabled(false);
|
|
}
|
|
this.forceUpdate();
|
|
},
|
|
|
|
render: function() {
|
|
if (this.enabled()) {
|
|
return (
|
|
<button className="mx_EnableNotificationsButton" onClick={this.onClick}>
|
|
{ _t("Disable Notifications") }
|
|
</button>
|
|
);
|
|
} else {
|
|
return (
|
|
<button className="mx_EnableNotificationsButton" onClick={this.onClick}>
|
|
{ _t("Enable Notifications") }
|
|
</button>
|
|
);
|
|
}
|
|
},
|
|
});
|