aboutsummaryrefslogtreecommitdiff
path: root/modern/src/SocketController.js
diff options
context:
space:
mode:
authorVictor Ferreira <victor.araujo.ferreira@gmail.com>2018-10-03 09:42:25 -0300
committerGitHub <noreply@github.com>2018-10-03 09:42:25 -0300
commit2c7dc9d42a44b5202b630a5db40e14147bf7c7f6 (patch)
tree513b517504a06e3a922d7929317f634efd3ba06f /modern/src/SocketController.js
parent396abfe03f85f294d911d8362b7afce5600620c6 (diff)
downloadetbsa-traccar-web-2c7dc9d42a44b5202b630a5db40e14147bf7c7f6.tar.gz
etbsa-traccar-web-2c7dc9d42a44b5202b630a5db40e14147bf7c7f6.tar.bz2
etbsa-traccar-web-2c7dc9d42a44b5202b630a5db40e14147bf7c7f6.zip
Rename SocketContoller.js to SockerController.js
fix filename
Diffstat (limited to 'modern/src/SocketController.js')
-rw-r--r--modern/src/SocketController.js54
1 files changed, 54 insertions, 0 deletions
diff --git a/modern/src/SocketController.js b/modern/src/SocketController.js
new file mode 100644
index 0000000..f65fc6c
--- /dev/null
+++ b/modern/src/SocketController.js
@@ -0,0 +1,54 @@
+import { Component } from 'react';
+import { connect } from 'react-redux';
+import { updateDevices, updatePositions } from './actions';
+
+const displayNotifications = events => {
+ if ("Notification" in window) {
+ if (Notification.permission === "granted") {
+ for (const event of events) {
+ const notification = new Notification(`Event: ${event.type}`);
+ setTimeout(notification.close.bind(notification), 4 * 1000);
+ }
+ } else if (Notification.permission !== "denied") {
+ Notification.requestPermission(permission => {
+ if (permission === "granted") {
+ displayNotifications(events);
+ }
+ });
+ }
+ }
+};
+
+class SocketController extends Component {
+ connectSocket() {
+ const protocol = window.location.protocol === 'https:' ? 'wss:' : 'ws:';
+ const socket = new WebSocket(protocol + '//' + window.location.host + '/api/socket');
+
+ socket.onclose = () => {
+ setTimeout(() => this.connectSocket(), 60 * 1000);
+ };
+
+ socket.onmessage = (event) => {
+ const data = JSON.parse(event.data);
+ if (data.devices) {
+ this.props.dispatch(updateDevices(data.devices));
+ }
+ if (data.positions) {
+ this.props.dispatch(updatePositions(data.positions));
+ }
+ if (data.events) {
+ displayNotifications(data.events);
+ }
+ }
+ }
+
+ componentDidMount() {
+ this.connectSocket();
+ }
+
+ render() {
+ return null;
+ }
+}
+
+export default connect()(SocketController);