Put back event array on React side
All checks were successful
continuous-integration/drone Build is passing
All checks were successful
continuous-integration/drone Build is passing
This commit is contained in:
parent
b90ae0c18d
commit
4c77fb127d
@ -2,7 +2,7 @@ const { MongoClient } = require("mongodb");
|
|||||||
const express = require('express');
|
const express = require('express');
|
||||||
const minio = require('minio');
|
const minio = require('minio');
|
||||||
|
|
||||||
/*============== VARIABLE DECLARATION ==============*/
|
/*============== VARIABLE DECLARATION ==============*/
|
||||||
// Mongo set-up variables
|
// Mongo set-up variables
|
||||||
const mongoCollection = process.env.MONGO_COLLECTION || 'eventlog';
|
const mongoCollection = process.env.MONGO_COLLECTION || 'eventlog';
|
||||||
const mongoUri = process.env.MONGO_URI || 'mongodb://127.0.0.1:27017/default?replicaSet=rs0';
|
const mongoUri = process.env.MONGO_URI || 'mongodb://127.0.0.1:27017/default?replicaSet=rs0';
|
||||||
@ -10,6 +10,7 @@ const mongoUri = process.env.MONGO_URI || 'mongodb://127.0.0.1:27017/default?rep
|
|||||||
// Minio set-up variables
|
// Minio set-up variables
|
||||||
const minioURI = new URL(process.env.MINIO_URI || 'http://kspace-mugshot:2mSI6HdbJ8@127.0.0.1:9000/kspace-mugshot');
|
const minioURI = new URL(process.env.MINIO_URI || 'http://kspace-mugshot:2mSI6HdbJ8@127.0.0.1:9000/kspace-mugshot');
|
||||||
const minioBucket = minioURI.pathname.substring(1);
|
const minioBucket = minioURI.pathname.substring(1);
|
||||||
|
const historyNumber = process.env.HISTORY_AMOUNT || 10;
|
||||||
|
|
||||||
// Stream set-up variables
|
// Stream set-up variables
|
||||||
let changeStream;
|
let changeStream;
|
||||||
@ -31,13 +32,13 @@ async function run() {
|
|||||||
await mongoClient.connect();
|
await mongoClient.connect();
|
||||||
const collection = mongoClient.db().collection(mongoCollection);
|
const collection = mongoClient.db().collection(mongoCollection);
|
||||||
|
|
||||||
|
let eventArray = [];
|
||||||
|
|
||||||
// Opening event listener on the database
|
// Opening event listener on the database
|
||||||
changeStream = collection.watch(pipeline, options);
|
changeStream = collection.watch(pipeline, options);
|
||||||
console.log("Started watching changes in database");
|
console.log("Started watching changes in database");
|
||||||
|
|
||||||
app.get('/events', async function (request, response) {
|
app.get('/events', async function (request, response) {
|
||||||
let eventArray = [];
|
|
||||||
|
|
||||||
let minioClient = new minio.Client({
|
let minioClient = new minio.Client({
|
||||||
endPoint: minioURI.hostname,
|
endPoint: minioURI.hostname,
|
||||||
port: parseInt(minioURI.port) || (minioURI.protocol == 'https' ? 443 : 80),
|
port: parseInt(minioURI.port) || (minioURI.protocol == 'https' ? 443 : 80),
|
||||||
@ -46,9 +47,6 @@ async function run() {
|
|||||||
secretKey: minioURI.password
|
secretKey: minioURI.password
|
||||||
});
|
});
|
||||||
|
|
||||||
// notifies GET requests
|
|
||||||
console.log('/events was requested');
|
|
||||||
|
|
||||||
// Setting the header to event-stream for Server Sent Events (Eventsource)
|
// Setting the header to event-stream for Server Sent Events (Eventsource)
|
||||||
const header = { 'Content-Type': 'text/event-stream', 'Connection': 'keep-alive' };
|
const header = { 'Content-Type': 'text/event-stream', 'Connection': 'keep-alive' };
|
||||||
response.writeHead(200, "OK", header);
|
response.writeHead(200, "OK", header);
|
||||||
@ -59,15 +57,19 @@ async function run() {
|
|||||||
|
|
||||||
// Retrieves modified document on the db and stores it
|
// Retrieves modified document on the db and stores it
|
||||||
let document = JSON.stringify(data.fullDocument);
|
let document = JSON.stringify(data.fullDocument);
|
||||||
eventArray = [document, ...eventArray];
|
eventArray = [document];
|
||||||
|
|
||||||
// Fetch screenshot if there is one
|
// Fetch screenshot if there is one
|
||||||
if (data.fullDocument.screenshot_count) {
|
if (data.fullDocument.screenshot_count) {
|
||||||
minioClient.presignedUrl('GET', minioBucket, `${data.fullDocument.camera}/${data.fullDocument._id}/1.jpg`, 60 * 60, (err, presignedUrl) => {
|
|
||||||
if (err) { return console.log(err) };
|
for (let i = 1; i <= data.fullDocument.screenshot_count ; i++) {
|
||||||
const realURL = JSON.stringify({ picUrl: presignedUrl });
|
minioClient.presignedUrl('GET', minioBucket, `${data.fullDocument.camera}/${data.fullDocument._id}/${i}.jpg`, 60 * 60, (err, presignedUrl) => {
|
||||||
eventArray = [realURL, ...eventArray];
|
if (err) { return console.log(err) };
|
||||||
})
|
const realURL = JSON.stringify({ picUrl: presignedUrl });
|
||||||
|
eventArray = [realURL, ...eventArray];
|
||||||
|
})
|
||||||
|
}
|
||||||
|
|
||||||
};
|
};
|
||||||
|
|
||||||
// sends updated array
|
// sends updated array
|
||||||
|
@ -1,29 +1,26 @@
|
|||||||
import React, { useState, useEffect } from 'react';
|
import React, { useState } from 'react';
|
||||||
import './App.css';
|
import './App.css';
|
||||||
import EventList from '../eventList/EventList.js';
|
import EventList from '../eventList/EventList.js';
|
||||||
|
|
||||||
function App(props) {
|
function App(props) {
|
||||||
const [events, setEvents] = useState(['EventLog']); // initialises Event state
|
const [events, setEvents] = useState(['EventLog']); // initialises Event state
|
||||||
const [sse, setSse] = useState(new EventSource('/events', { withCredentials: true})) // creates eventSource listener in state
|
const [sse, setSse] = useState(new EventSource('/events', { withCredentials: true })) // creates eventSource listener in state
|
||||||
|
|
||||||
useEffect(() => {
|
sse.onerror = (e) => {
|
||||||
|
console.error();
|
||||||
|
sse.close();
|
||||||
|
}
|
||||||
|
|
||||||
sse.onerror = (e) => {
|
sse.onmessage = (e) => {
|
||||||
console.error();
|
// parses received data from string to JSON
|
||||||
sse.close();
|
const message = JSON.parse(e.data);
|
||||||
}
|
|
||||||
|
|
||||||
sse.onmessage = (e) => {
|
// initialises a new array with updated server-side event array
|
||||||
// parses received data from string to JSON
|
const newEvents = [...message, ...events];
|
||||||
const message = JSON.parse(e.data);
|
|
||||||
|
|
||||||
// initialises a new array with updated server-side event array
|
// sets the updated event array as state
|
||||||
const newEvents = [...message];
|
setEvents(newEvents);
|
||||||
|
};
|
||||||
// sets the updated event array as state
|
|
||||||
setEvents(newEvents);
|
|
||||||
};
|
|
||||||
});
|
|
||||||
|
|
||||||
return <EventList data={events} />
|
return <EventList data={events} />
|
||||||
|
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
.eventListUl {
|
.eventListUl {
|
||||||
background-color: #c1f1ec;
|
background-color: #c1f1ec;
|
||||||
max-width: 50%;
|
max-width: 75%;
|
||||||
padding: 5px;
|
padding: 5px;
|
||||||
border: 5px solid #26A69A;
|
border: 5px solid #26A69A;
|
||||||
border-radius: 5px;
|
border-radius: 5px;
|
||||||
|
Loading…
Reference in New Issue
Block a user