Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add mamoto tracking to frontend #1040

Merged
merged 5 commits into from
Dec 11, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 0 additions & 8 deletions src/frontend/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -2,17 +2,9 @@
<html lang="en">
<head>
<meta charset="UTF-8" />

<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="icon" href="favicon.ico" />
<link rel="manifest" href="/manifest.json" />
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/openlayers/7.4.0/ol.min.css"
integrity="sha512-InhY7dfdkf2+ZyIsz9AX9M1xDC3GjEy0zVnAIudX1fTUOEhBu13KooX9txjBoWkDAMI3fQ07VE/D0gMUvweerw=="
crossorigin="anonymous"
referrerpolicy="no-referrer"
/>
<link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet" />
<title>Field Mapping Tasking Manager</title>
</head>
Expand Down
72 changes: 64 additions & 8 deletions src/frontend/src/App.jsx
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
import React from 'react';
import React, { useEffect } from 'react';
import ReactDOM from 'react-dom';
import { RouterProvider } from 'react-router-dom';
import { store, persistor } from './store/Store';
import { Provider } from 'react-redux';
import routes from './routes';
import { PersistGate } from 'redux-persist/integration/react';
import './index.css';
import 'ol/ol.css';
import 'react-loading-skeleton/dist/skeleton.css';
import * as Sentry from '@sentry/react';
import environment from './environment';

// Added Fix of Console Error of MUI Issue
Expand All @@ -26,9 +26,16 @@ console.error = function filterWarnings(msg, ...args) {
}
};

{
import.meta.env.MODE !== 'development'
? Sentry.init({
const SentryInit = () => {
useEffect(() => {
if (import.meta.env.MODE === 'development') {
return;
}
console.log('Adding Sentry');

import('@sentry/react').then((Sentry) => {
// Init Sentry
Sentry.init({
dsn:
import.meta.env.BASE_URL === 'fmtm.hotosm.org'
? 'https://[email protected]/4505557311356928'
Expand All @@ -45,18 +52,67 @@ console.error = function filterWarnings(msg, ...args) {
// Session Replay
replaysSessionSampleRate: 0.1, // This sets the sample rate at 10%. You may want to change it to 100% while in development and then sample at a lower rate in production.
replaysOnErrorSampleRate: 1.0, // If you're not already sampling the entire session, change the sample rate to 100% when sampling sessions where errors occur.
})
: null;
}
});
});

return () => {};
}, []);

return null; // Renders nothing
};

// Matomo Tracking Component
const MatomoTrackingInit = () => {
useEffect(() => {
if (import.meta.env.MODE === 'development' || import.meta.env.BASE_URL !== 'fmtm.hotosm.org') {
return;
}
// Set matomo tracking id
window.site_id = environment.mamotoTrackingId;

// Create optout-form div for banner
const optoutDiv = document.createElement('div');
optoutDiv.id = 'optout-form'; // Set an ID if needed
document.body.appendChild(optoutDiv);

// Load CDN script
const script = document.createElement('script');
script.src = 'https://cdn.hotosm.org/tracking-v3.js';
document.body.appendChild(script);
// Manually trigger DOMContentLoaded, that script hooks
// https://github.com/hotosm/matomo-tracking/blob/9b95230cb5f0bf2a902f00379152f3af9204c641/tracking-v3.js#L125
script.onload = () => {
optoutDiv.dispatchEvent(
new Event('DOMContentLoaded', {
bubbles: true,
cancelable: true,
}),
);
};

// Cleanup on unmount
return () => {
document.body.removeChild(optoutDiv);
document.body.removeChild(script);
};
}, []);

return null; // Renders nothing
};

// The main App render
ReactDOM.render(
<Provider store={store}>
<PersistGate loading={null} persistor={persistor}>
<RouterProvider router={routes} />
<MatomoTrackingInit />
<SentryInit />
</PersistGate>
</Provider>,
document.getElementById('app'),
);

// Register service worker
if (import.meta.env.MODE === 'production') {
if ('serviceWorker' in navigator) {
window.addEventListener('load', () => {
Expand Down
1 change: 1 addition & 0 deletions src/frontend/src/environment.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ export default {
const desimaal = (dec >>> 0).toString(2);
return window.btoa(desimaal);
},
mamotoTrackingId: 28,
tasksStatus: [
{
label: 'READY',
Expand Down
1 change: 0 additions & 1 deletion src/frontend/src/views/NewProjectDetails.jsx
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
import React, { useEffect, useState } from 'react';
import '../../node_modules/ol/ol.css';
import '../styles/home.scss';
import WindowDimension from '../hooks/WindowDimension';
import MapDescriptionComponents from '../components/MapDescriptionComponents';
Expand Down
1 change: 0 additions & 1 deletion src/frontend/src/views/ProjectDetails.jsx
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
import React, { useEffect, useRef, useState } from 'react';
import '../../node_modules/ol/ol.css';
import '../styles/home.scss';
import WindowDimension from '../hooks/WindowDimension';
import MapDescriptionComponents from '../components/MapDescriptionComponents';
Expand Down
1 change: 0 additions & 1 deletion src/frontend/src/views/Submissions.tsx
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
import React, { useEffect } from 'react';
// import '../styles/home.css'
import '../../node_modules/ol/ol.css';
import CoreModules from '../shared/CoreModules';
// import { useLocation, useNavigate } from 'react-router-dom';
import Avatar from '../assets/images/avatar.png';
Expand Down
1 change: 0 additions & 1 deletion src/frontend/src/views/Tasks.tsx
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
import React, { useEffect, useState } from 'react';
// import '../styles/home.css'
import '../../node_modules/ol/ol.css';
import CoreModules from '../shared/CoreModules';
import AssetModules from '../shared/AssetModules';
// import { useLocation, useNavigate } from 'react-router-dom';
Expand Down