First commit of os-league-tools-master
85
os-league-tools-master/src/App.js
Normal file
@@ -0,0 +1,85 @@
|
||||
import React, { useEffect } from 'react';
|
||||
import { BrowserRouter, Route, Routes } from 'react-router-dom';
|
||||
import { createBrowserHistory } from 'history';
|
||||
import ReactGA from 'react-ga4';
|
||||
import { Auth0Provider } from '@auth0/auth0-react';
|
||||
import './styles/compiled.css';
|
||||
import { Provider } from 'react-redux';
|
||||
import { ErrorBoundary } from 'react-error-boundary';
|
||||
import Homepage from './pages/Homepage';
|
||||
import Tracker from './pages/Tracker';
|
||||
import About from './pages/About';
|
||||
import Settings from './pages/Settings';
|
||||
import store from './store';
|
||||
import ThemeProvider from './components/ThemeProvider';
|
||||
import Statistics from './pages/Statistics';
|
||||
import Calculators from './pages/Calculators';
|
||||
import Faq from './pages/Faq';
|
||||
import ViewCharacter from './pages/ViewCharacter';
|
||||
import { submitRenderError } from './client/feedback-client';
|
||||
import { ErrorPage } from './components/common/util/ErrorBoundary';
|
||||
|
||||
const history = createBrowserHistory();
|
||||
const trackingId = process.env.REACT_APP_GA_MID;
|
||||
|
||||
if (trackingId) {
|
||||
ReactGA.initialize(trackingId, {
|
||||
gaOptions: {
|
||||
siteSpeedSampleRate: 100,
|
||||
},
|
||||
});
|
||||
}
|
||||
history.listen(() => {
|
||||
if (trackingId) {
|
||||
ReactGA.send({
|
||||
hitType: 'pageview',
|
||||
page: window.location.pathname + window.location.search,
|
||||
title: window.location.pathname + window.location.search,
|
||||
});
|
||||
}
|
||||
});
|
||||
|
||||
export default function App() {
|
||||
useEffect(() => {
|
||||
if (trackingId) {
|
||||
ReactGA.send({
|
||||
hitType: 'pageview',
|
||||
page: window.location.pathname + window.location.search,
|
||||
title: window.location.pathname + window.location.search,
|
||||
});
|
||||
}
|
||||
}, []);
|
||||
|
||||
return (
|
||||
<Provider store={store}>
|
||||
<ThemeProvider>
|
||||
<div className='App'>
|
||||
<BrowserRouter basename='/'>
|
||||
<Auth0Provider
|
||||
domain='login.osleague.tools'
|
||||
clientId='yfqwKEhQO8FL7MlxWmWo7ekuGgzSrfmh'
|
||||
redirectUri={window.location.origin}
|
||||
audience='https://dev-u4mby-kt.us.auth0.com/api/v2/'
|
||||
>
|
||||
<ErrorBoundary FallbackComponent={ErrorPage} onError={submitRenderError}>
|
||||
<Routes>
|
||||
<Route path='/' element={<Homepage />} />
|
||||
<Route path='stats' element={<Statistics />} />
|
||||
<Route path='news' element={<Homepage />} />
|
||||
<Route path='tracker' element={<Tracker />} />
|
||||
<Route path='tracker/:character' element={<ViewCharacter />} />
|
||||
<Route path='calculators' element={<Calculators />}>
|
||||
<Route path=':skill' element={<Calculators />} />
|
||||
</Route>
|
||||
<Route path='about' element={<About />} />
|
||||
<Route path='settings' element={<Settings />} />
|
||||
<Route path='faq' element={<Faq />} />
|
||||
</Routes>
|
||||
</ErrorBoundary>
|
||||
</Auth0Provider>
|
||||
</BrowserRouter>
|
||||
</div>
|
||||
</ThemeProvider>
|
||||
</Provider>
|
||||
);
|
||||
}
|
||||
11
os-league-tools-master/src/assets/images.js
Normal file
@@ -0,0 +1,11 @@
|
||||
const importAllImagesFromFolder = folderPath => {
|
||||
const images = {};
|
||||
folderPath.keys().forEach(item => {
|
||||
images[item.replace('./', '')] = folderPath(item);
|
||||
});
|
||||
return images;
|
||||
};
|
||||
|
||||
const images = importAllImagesFromFolder(require.context('./img', false, /\.(png|gif|svg|jpeg)$/));
|
||||
|
||||
export default images;
|
||||
BIN
os-league-tools-master/src/assets/img/abyssal-sire.png
Normal file
|
After Width: | Height: | Size: 618 B |
BIN
os-league-tools-master/src/assets/img/agility.gif
Normal file
|
After Width: | Height: | Size: 101 B |
BIN
os-league-tools-master/src/assets/img/alchemical-hydra.png
Normal file
|
After Width: | Height: | Size: 338 B |
BIN
os-league-tools-master/src/assets/img/amoxliatl.png
Normal file
|
After Width: | Height: | Size: 569 B |
BIN
os-league-tools-master/src/assets/img/araxxor.png
Normal file
|
After Width: | Height: | Size: 799 B |
BIN
os-league-tools-master/src/assets/img/artio.png
Normal file
|
After Width: | Height: | Size: 624 B |
BIN
os-league-tools-master/src/assets/img/attack.gif
Normal file
|
After Width: | Height: | Size: 145 B |
BIN
os-league-tools-master/src/assets/img/barrows.png
Normal file
|
After Width: | Height: | Size: 240 B |
BIN
os-league-tools-master/src/assets/img/bryophyta.png
Normal file
|
After Width: | Height: | Size: 444 B |
BIN
os-league-tools-master/src/assets/img/callisto.png
Normal file
|
After Width: | Height: | Size: 289 B |
BIN
os-league-tools-master/src/assets/img/calvarion.png
Normal file
|
After Width: | Height: | Size: 773 B |
BIN
os-league-tools-master/src/assets/img/cerberus.png
Normal file
|
After Width: | Height: | Size: 259 B |
|
After Width: | Height: | Size: 324 B |
BIN
os-league-tools-master/src/assets/img/chambers-of-xeric.png
Normal file
|
After Width: | Height: | Size: 357 B |
BIN
os-league-tools-master/src/assets/img/chaos-elemental.png
Normal file
|
After Width: | Height: | Size: 308 B |
BIN
os-league-tools-master/src/assets/img/chaos-fanatic.png
Normal file
|
After Width: | Height: | Size: 339 B |
BIN
os-league-tools-master/src/assets/img/chest.png
Normal file
|
After Width: | Height: | Size: 172 B |
BIN
os-league-tools-master/src/assets/img/clue-all.png
Normal file
|
After Width: | Height: | Size: 497 B |
BIN
os-league-tools-master/src/assets/img/clue-beginner.png
Normal file
|
After Width: | Height: | Size: 473 B |
BIN
os-league-tools-master/src/assets/img/clue-easy.png
Normal file
|
After Width: | Height: | Size: 477 B |
BIN
os-league-tools-master/src/assets/img/clue-elite.png
Normal file
|
After Width: | Height: | Size: 600 B |
BIN
os-league-tools-master/src/assets/img/clue-hard.png
Normal file
|
After Width: | Height: | Size: 554 B |
BIN
os-league-tools-master/src/assets/img/clue-master.png
Normal file
|
After Width: | Height: | Size: 614 B |
BIN
os-league-tools-master/src/assets/img/clue-medium.png
Normal file
|
After Width: | Height: | Size: 481 B |
BIN
os-league-tools-master/src/assets/img/clue.png
Normal file
|
After Width: | Height: | Size: 497 B |
BIN
os-league-tools-master/src/assets/img/colosseum-glory.png
Normal file
|
After Width: | Height: | Size: 671 B |
BIN
os-league-tools-master/src/assets/img/combat.png
Normal file
|
After Width: | Height: | Size: 351 B |
BIN
os-league-tools-master/src/assets/img/commander-zilyana.png
Normal file
|
After Width: | Height: | Size: 444 B |
BIN
os-league-tools-master/src/assets/img/construction.gif
Normal file
|
After Width: | Height: | Size: 146 B |
BIN
os-league-tools-master/src/assets/img/cooking.gif
Normal file
|
After Width: | Height: | Size: 126 B |
BIN
os-league-tools-master/src/assets/img/corporeal-beast.png
Normal file
|
After Width: | Height: | Size: 515 B |
BIN
os-league-tools-master/src/assets/img/crafting.gif
Normal file
|
After Width: | Height: | Size: 122 B |
BIN
os-league-tools-master/src/assets/img/crazy-archaeologist.png
Normal file
|
After Width: | Height: | Size: 482 B |
BIN
os-league-tools-master/src/assets/img/dagannoth-prime.png
Normal file
|
After Width: | Height: | Size: 302 B |
BIN
os-league-tools-master/src/assets/img/dagannoth-rex.png
Normal file
|
After Width: | Height: | Size: 304 B |
BIN
os-league-tools-master/src/assets/img/dagannoth-supreme.png
Normal file
|
After Width: | Height: | Size: 280 B |
BIN
os-league-tools-master/src/assets/img/defence.gif
Normal file
|
After Width: | Height: | Size: 124 B |
BIN
os-league-tools-master/src/assets/img/deranged-archaeologist.png
Normal file
|
After Width: | Height: | Size: 293 B |
BIN
os-league-tools-master/src/assets/img/duke.png
Normal file
|
After Width: | Height: | Size: 257 B |
BIN
os-league-tools-master/src/assets/img/farming.gif
Normal file
|
After Width: | Height: | Size: 362 B |
BIN
os-league-tools-master/src/assets/img/firemaking.gif
Normal file
|
After Width: | Height: | Size: 139 B |
BIN
os-league-tools-master/src/assets/img/fishing.gif
Normal file
|
After Width: | Height: | Size: 140 B |
BIN
os-league-tools-master/src/assets/img/fletching.gif
Normal file
|
After Width: | Height: | Size: 118 B |
BIN
os-league-tools-master/src/assets/img/fragment-alchemaniac.png
Normal file
|
After Width: | Height: | Size: 320 B |
|
After Width: | Height: | Size: 310 B |
|
After Width: | Height: | Size: 299 B |
|
After Width: | Height: | Size: 303 B |
|
After Width: | Height: | Size: 286 B |
|
After Width: | Height: | Size: 298 B |
|
After Width: | Height: | Size: 289 B |
|
After Width: | Height: | Size: 291 B |
BIN
os-league-tools-master/src/assets/img/fragment-chef's-catch.png
Normal file
|
After Width: | Height: | Size: 292 B |
BIN
os-league-tools-master/src/assets/img/fragment-chinchonkers.png
Normal file
|
After Width: | Height: | Size: 298 B |
BIN
os-league-tools-master/src/assets/img/fragment-clued-in.png
Normal file
|
After Width: | Height: | Size: 282 B |
|
After Width: | Height: | Size: 261 B |
BIN
os-league-tools-master/src/assets/img/fragment-dine-&-dash.png
Normal file
|
After Width: | Height: | Size: 241 B |
|
After Width: | Height: | Size: 313 B |
|
After Width: | Height: | Size: 292 B |
|
After Width: | Height: | Size: 313 B |
|
After Width: | Height: | Size: 276 B |
BIN
os-league-tools-master/src/assets/img/fragment-grave-robber.png
Normal file
|
After Width: | Height: | Size: 273 B |
BIN
os-league-tools-master/src/assets/img/fragment-homewrecker.png
Normal file
|
After Width: | Height: | Size: 288 B |
|
After Width: | Height: | Size: 256 B |
|
After Width: | Height: | Size: 274 B |
BIN
os-league-tools-master/src/assets/img/fragment-just-druid.png
Normal file
|
After Width: | Height: | Size: 257 B |
|
After Width: | Height: | Size: 312 B |
|
After Width: | Height: | Size: 313 B |
|
After Width: | Height: | Size: 287 B |
BIN
os-league-tools-master/src/assets/img/fragment-mixologist.png
Normal file
|
After Width: | Height: | Size: 313 B |
BIN
os-league-tools-master/src/assets/img/fragment-molten-miner.png
Normal file
|
After Width: | Height: | Size: 291 B |
|
After Width: | Height: | Size: 271 B |
|
After Width: | Height: | Size: 282 B |
|
After Width: | Height: | Size: 309 B |
BIN
os-league-tools-master/src/assets/img/fragment-pro-tips.png
Normal file
|
After Width: | Height: | Size: 252 B |
|
After Width: | Height: | Size: 263 B |
BIN
os-league-tools-master/src/assets/img/fragment-rock-solid.png
Normal file
|
After Width: | Height: | Size: 296 B |
|
After Width: | Height: | Size: 283 B |
|
After Width: | Height: | Size: 248 B |
|
After Width: | Height: | Size: 314 B |
BIN
os-league-tools-master/src/assets/img/fragment-rune-escape.png
Normal file
|
After Width: | Height: | Size: 281 B |
|
After Width: | Height: | Size: 309 B |
|
After Width: | Height: | Size: 292 B |
BIN
os-league-tools-master/src/assets/img/fragment-slash-&-burn.png
Normal file
|
After Width: | Height: | Size: 274 B |
BIN
os-league-tools-master/src/assets/img/fragment-slay-'n'-pay.png
Normal file
|
After Width: | Height: | Size: 305 B |
BIN
os-league-tools-master/src/assets/img/fragment-slay-all-day.png
Normal file
|
After Width: | Height: | Size: 309 B |
|
After Width: | Height: | Size: 311 B |
|
After Width: | Height: | Size: 288 B |
|
After Width: | Height: | Size: 312 B |
|
After Width: | Height: | Size: 300 B |
|
After Width: | Height: | Size: 310 B |
BIN
os-league-tools-master/src/assets/img/fragment-thrall-damage.png
Normal file
|
After Width: | Height: | Size: 304 B |
BIN
os-league-tools-master/src/assets/img/fragment-unholy-ranger.png
Normal file
|
After Width: | Height: | Size: 313 B |
|
After Width: | Height: | Size: 304 B |
BIN
os-league-tools-master/src/assets/img/fragment-unholy-wizard.png
Normal file
|
After Width: | Height: | Size: 316 B |
BIN
os-league-tools-master/src/assets/img/fragment-venomaster.png
Normal file
|
After Width: | Height: | Size: 247 B |
|
After Width: | Height: | Size: 311 B |
BIN
os-league-tools-master/src/assets/img/general-graardor.png
Normal file
|
After Width: | Height: | Size: 395 B |
BIN
os-league-tools-master/src/assets/img/giant-mole.png
Normal file
|
After Width: | Height: | Size: 335 B |