diff --git a/src/website/lib/dotenv.js b/src/website/lib/dotenv.js
index 57f74689c..2358f7f90 100644
--- a/src/website/lib/dotenv.js
+++ b/src/website/lib/dotenv.js
@@ -17,4 +17,4 @@ module.exports = () => {
};
};
-export {}
+export {};
diff --git a/src/website/lib/redux/middleware.ts b/src/website/lib/redux/middleware.ts
index bd2d0d5f6..4e287d242 100644
--- a/src/website/lib/redux/middleware.ts
+++ b/src/website/lib/redux/middleware.ts
@@ -15,6 +15,6 @@ const middleware: Redux.Middleware[] = [
},
predicate: () => typeof window !== 'undefined',
}),
-]
+];
export { middleware };
diff --git a/src/website/pages/index.tsx b/src/website/pages/index.tsx
index c3ccd1133..2726aecaa 100644
--- a/src/website/pages/index.tsx
+++ b/src/website/pages/index.tsx
@@ -4,7 +4,7 @@ import { CircularProgress, Modal } from '@mui/material';
import Header from '@/views/components/Header/Header';
import styles from './style.module.css';
import PolarisContainer from '@/views/components/Polaris/PolarisContainer';
-import { clearLogsPeriodically } from '@/lib/redux/logUtils'
+import { clearLogsPeriodically } from '@/lib/redux/logUtils';
const MapsContainer = dynamic(() => import('@/views/MapsContainer'), {
loading: () => ,
diff --git a/src/website/tsconfig.json b/src/website/tsconfig.json
index 13ecff5be..8f3cbc0f6 100644
--- a/src/website/tsconfig.json
+++ b/src/website/tsconfig.json
@@ -28,7 +28,10 @@
"**/*.ts",
"**/*.tsx",
".next/types/**/*.ts",
- "hooks/useSessionState.js"
-, "lib/dotenv.js", "models/helper/parser.js", "utils/DownloadData.js" ],
+ "hooks/useSessionState.js",
+ "lib/dotenv.js",
+ "models/helper/parser.js",
+ "utils/DownloadData.js"
+ ],
"exclude": ["node_modules"]
}
diff --git a/src/website/views/DashboardContainer.tsx b/src/website/views/DashboardContainer.tsx
index efc3fac44..1d254ca68 100644
--- a/src/website/views/DashboardContainer.tsx
+++ b/src/website/views/DashboardContainer.tsx
@@ -3,7 +3,11 @@ import { connect } from 'react-redux';
import UPlotLineChartComponent from './components/LineChart/UPlotLineChart';
import { GPS, GPSState } from '@/stores/GPS/GPSTypes';
import { Batteries, BatteriesState } from '@/stores/Batteries/BatteriesTypes';
-import { WindSensor, WindSensors, WindSensorsState } from '@/stores/WindSensors/WindSensorsTypes';
+import {
+ WindSensor,
+ WindSensors,
+ WindSensorsState,
+} from '@/stores/WindSensors/WindSensorsTypes';
import { DataFilterState } from '@/stores/DataFilter/DataFilterTypes';
import UPlotMultiLineChartComponent from './components/LineChart/UPlotMultiLineChart';
@@ -219,10 +223,10 @@ class DashboardContainer extends React.PureComponent {
if (
timestampISO >=
- // @ts-ignore
+ // @ts-ignore
this._parseISOString(this.props.dataFilter.timestamps.startDate) &&
timestampISO <=
- // @ts-ignore
+ // @ts-ignore
this._parseISOString(this.props.dataFilter.timestamps.endDate)
) {
return true;
diff --git a/src/website/views/MapsContainer.tsx b/src/website/views/MapsContainer.tsx
index 8c9fbed18..fd71bd140 100644
--- a/src/website/views/MapsContainer.tsx
+++ b/src/website/views/MapsContainer.tsx
@@ -68,10 +68,10 @@ class MapsContainer extends React.PureComponent {
if (
timestampISO >=
- // @ts-ignore
+ // @ts-ignore
this._parseISOString(this.props.dataFilter.timestamps.startDate) &&
timestampISO <=
- // @ts-ignore
+ // @ts-ignore
this._parseISOString(this.props.dataFilter.timestamps.endDate)
) {
return true;
@@ -125,7 +125,7 @@ class MapsContainer extends React.PureComponent {
longitude: 999,
speed: 999,
heading: 999,
- timestamp: new Date().toISOString()
+ timestamp: new Date().toISOString(),
};
}
return gpsdata.at(-1);
diff --git a/src/website/views/components/DropDown/DropdownMenu.tsx b/src/website/views/components/DropDown/DropdownMenu.tsx
index 508a0afdf..9768f3179 100644
--- a/src/website/views/components/DropDown/DropdownMenu.tsx
+++ b/src/website/views/components/DropDown/DropdownMenu.tsx
@@ -28,7 +28,12 @@ interface SortableGraphProps {
setOrder: any;
}
-const SortableGraph = ({ id, children, order, setOrder }: SortableGraphProps) => {
+const SortableGraph = ({
+ id,
+ children,
+ order,
+ setOrder,
+}: SortableGraphProps) => {
const { attributes, listeners, setNodeRef, transform, transition } =
useSortable({
id,
diff --git a/src/website/views/components/LineChart/UPlotLineChart.tsx b/src/website/views/components/LineChart/UPlotLineChart.tsx
index 7d3a412c2..7ade7b8e5 100644
--- a/src/website/views/components/LineChart/UPlotLineChart.tsx
+++ b/src/website/views/components/LineChart/UPlotLineChart.tsx
@@ -36,7 +36,12 @@ export default class UPlotLineChartComponent extends React.Component<
show: true,
spanGaps: false,
label: 'Time',
- value: (self: any, rawValue: any, xValuesIndex: any, currentVal: any) => {
+ value: (
+ self: any,
+ rawValue: any,
+ xValuesIndex: any,
+ currentVal: any,
+ ) => {
if (currentVal == null) {
let xValues = self.data[xValuesIndex];
let xValue = fmtDate(tzDate(xValues[xValues.length - 1]));
@@ -52,7 +57,12 @@ export default class UPlotLineChartComponent extends React.Component<
show: true,
spanGaps: false,
label: this.props.label,
- value: (self: any, rawValue: any, yValuesIndex: any, currentVal: any) => {
+ value: (
+ self: any,
+ rawValue: any,
+ yValuesIndex: any,
+ currentVal: any,
+ ) => {
if (currentVal == null) {
let yValues = self.data[yValuesIndex];
let yValue = yValues[yValues.length - 1]?.toFixed(2);
diff --git a/src/website/views/components/LineChart/UPlotMultiLineChart.tsx b/src/website/views/components/LineChart/UPlotMultiLineChart.tsx
index c21f1c1ad..0c62fc440 100644
--- a/src/website/views/components/LineChart/UPlotMultiLineChart.tsx
+++ b/src/website/views/components/LineChart/UPlotMultiLineChart.tsx
@@ -37,7 +37,12 @@ export default class UPlotMultiLineChartComponent extends React.Component<
show: true,
spanGaps: false,
label: 'Time',
- value: (self: any, rawValue: any, xValuesIndex: any, currentVal: any) => {
+ value: (
+ self: any,
+ rawValue: any,
+ xValuesIndex: any,
+ currentVal: any,
+ ) => {
if (currentVal == null) {
let xValues = self.data[xValuesIndex];
let xValue = fmtDate(tzDate(xValues[xValues.length - 1]));
@@ -53,7 +58,12 @@ export default class UPlotMultiLineChartComponent extends React.Component<
show: true,
spanGaps: false,
label: this.props.labelOne,
- value: (self: any, rawValue: any, yValuesIndex: any, currentVal: any) => {
+ value: (
+ self: any,
+ rawValue: any,
+ yValuesIndex: any,
+ currentVal: any,
+ ) => {
if (currentVal == null) {
let yValues = self.data[yValuesIndex];
let yValue = yValues[yValues.length - 1]?.toFixed(2);
@@ -69,7 +79,12 @@ export default class UPlotMultiLineChartComponent extends React.Component<
show: true,
spanGaps: false,
label: this.props.labelTwo,
- value: (self: any, rawValue: any, yValuesIndex: any, currentVal: any) => {
+ value: (
+ self: any,
+ rawValue: any,
+ yValuesIndex: any,
+ currentVal: any,
+ ) => {
if (currentVal == null) {
let yValues = self.data[yValuesIndex];
let yValue = yValues[yValues.length - 1]?.toFixed(2);
diff --git a/src/website/views/components/TimestampFilter/TimestampBtn.tsx b/src/website/views/components/TimestampFilter/TimestampBtn.tsx
index 567aa5805..cc0da55e9 100644
--- a/src/website/views/components/TimestampFilter/TimestampBtn.tsx
+++ b/src/website/views/components/TimestampFilter/TimestampBtn.tsx
@@ -36,8 +36,8 @@ const TimestampBtn = ({ gps, dataFilter }: TimestampFilterBtnProps) => {
} to ${
dataFilter.timestamps.endDate
? fmtDate(tzDate(parseISOString(dataFilter.timestamps.endDate)))
- // @ts-ignore
- : fmtDate(tzDate(parseISOString(gps.data.at(-1).timestamp)))
+ : // @ts-ignore
+ fmtDate(tzDate(parseISOString(gps.data.at(-1).timestamp)))
}`}