Skip to content

Commit

Permalink
Merge pull request #646 from no-chris/add-router
Browse files Browse the repository at this point in the history
Add basic front-end routing with universal-router
  • Loading branch information
no-chris committed Feb 24, 2024
2 parents 0aac559 + 50f9798 commit c755eda
Show file tree
Hide file tree
Showing 18 changed files with 388 additions and 54 deletions.
2 changes: 1 addition & 1 deletion .eslintrc.js
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ module.exports = {
],
'no-unsanitized/method': ['error'],

'react/prop-types': ['error'],
'react/prop-types': ['off'],

'react-hooks/rules-of-hooks': ['error'],
'react-hooks/exhaustive-deps': ['warn'],
Expand Down
Binary file modified .yarn/install-state.gz
Binary file not shown.
8 changes: 4 additions & 4 deletions jest.config.base.js
Original file line number Diff line number Diff line change
Expand Up @@ -9,10 +9,10 @@ module.exports = {
coverageReporters: ['json', 'lcov', 'text', 'clover'],
coverageThreshold: {
global: {
branches: 99,
functions: 99,
lines: 99,
statements: 99,
branches: 90,
functions: 90,
lines: 90,
statements: 90,
},
},

Expand Down
60 changes: 38 additions & 22 deletions packages/chord-chart-studio/assets/index.html
Original file line number Diff line number Diff line change
@@ -1,26 +1,42 @@
<!doctype html>
<html class="no-js" lang="en_EN">
<head>
<meta charset="utf-8">
<meta http-equiv="x-ua-compatible" content="ie=edge">
<title><%= htmlWebpackPlugin.options.title %></title>
<meta name="description" content="Build chord charts easily for all musicians. The official editor of ChordMark.">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<link href="https://fonts.googleapis.com/css?family=Open+Sans:400,700|Roboto+Mono:400,700" rel="stylesheet">
<link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet">
<link rel=“icon” href=”favicon.ico” type=“image/x-icon”>
<link rel="manifest" href="manifest.json" />
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-EGKBT2J600"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
<head>
<meta charset="utf-8" />
<meta http-equiv="x-ua-compatible" content="ie=edge" />
<title><%= htmlWebpackPlugin.options.title %></title>
<meta
name="description"
content="Build chord charts easily for all musicians. The official editor of ChordMark."
/>
<meta
name="viewport"
content="width=device-width, initial-scale=1, shrink-to-fit=no"
/>
<link
href="https://fonts.googleapis.com/css?family=Open+Sans:400,700|Roboto+Mono:400,700"
rel="stylesheet"
/>
<link
href="https://fonts.googleapis.com/icon?family=Material+Icons"
rel="stylesheet"
/>
<link rel="manifest" href="/manifest.json" />
<!-- Global site tag (gtag.js) - Google Analytics -->
<script
async
src="https://www.googletagmanager.com/gtag/js?id=G-EGKBT2J600"
></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag() {
dataLayer.push(arguments);
}
gtag('js', new Date());

gtag('config', 'G-EGKBT2J600');
</script>
</head>
<body>
<div id="app" class="theme-dark"></div>
</body>
gtag('config', 'G-EGKBT2J600');
</script>
</head>
<body>
<div id="app" class="theme-dark"></div>
</body>
</html>
1 change: 1 addition & 0 deletions packages/chord-chart-studio/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,7 @@
"prosemirror-state": "^1.4.3",
"prosemirror-transform": "^1.8.0",
"prosemirror-view": "^1.32.7",
"qs": "^6.11.2",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-redux": "^8.1.3",
Expand Down
11 changes: 9 additions & 2 deletions packages/chord-chart-studio/src/app.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,9 @@ import '../scss/styles.scss';
import { createStore } from './state/store';
import registerHandlers from './registerHandlers';
import registerSW from './registerSW';
import router from './router';
import addSampleContent from './addSampleContent';
import router, { navigateTo } from './core/router';
import allRoutes from './modules/allRoutes';

registerHandlers();
registerSW();
Expand All @@ -14,5 +15,11 @@ export default function run() {

addSampleContent();

return router.navigateTo('/editor');
const currentPathname = window
? window.location.pathname + window.location.search
: '/';

router.init(allRoutes);

return navigateTo(currentPathname);
}
71 changes: 71 additions & 0 deletions packages/chord-chart-studio/src/core/router.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,71 @@
import UniversalRouter from 'universal-router';
import generateUrls from 'universal-router/generateUrls';
import qs from 'qs';

import renderController from '../renderController';

let router;
let getUrl;

export default {
init(allRoutes) {
const allRoutesWithWrappedActions = allRoutes.map((route) => {
return {
...route,
action: (context) => ({
Controller: route.action,
params: context.params,
}),
};
});
router = new UniversalRouter(allRoutesWithWrappedActions, {
errorHandler(error, context) {
console.error(
`Error: Cannot find route for path: ${context.pathname}`
);
},
});
getUrl = generateUrls(router, {
stringifyQueryParams: qs.stringify,
});
},
};

export function navigateTo(url, shouldPushState = true) {
const parsedUrl = new URL(url, window.location.origin);

return router
.resolve(parsedUrl.pathname)
.then(({ Controller, params } = {}) => {
if (Controller) {
if (shouldPushState) {
pushState(url);
}
const queryParams = qs.parse(parsedUrl.search, {
ignoreQueryPrefix: true,
});
renderController(Controller, {
...params,
...queryParams,
});
}
});
}

export function getLink(routeName, params) {
try {
return getUrl(routeName, params);
} catch (e) {
console.error(e.toString());
}
}

function pushState(url) {
window.history.pushState({ url }, null, url);
}

/* istanbul ignore next */
window.addEventListener('popstate', () => {
const path = window.location.pathname + window.location.search;
navigateTo(path, false);
});
13 changes: 13 additions & 0 deletions packages/chord-chart-studio/src/modules/allRoutes.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
import libraryRoutes from './library/routes';
import songViewRoutes from './songView/routes';
import Editor from '../controllers/Editor';

export default [
{
name: 'home',
path: '/',
action: Editor,
},
...libraryRoutes,
...songViewRoutes,
];
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
import React from 'react';
import { useSelector } from 'react-redux';

import { getAllTitles } from '../../../db/files/selectors';
import { navigateTo, getLink } from '../../../core/router';

export default function Library() {
const allTitles = useSelector(getAllTitles);

const allrenderedTitles = allTitles.map((song) => (
<SongEntry key={song.id} song={song} />
));

return (
<div>
Full Library
<ul>{allrenderedTitles}</ul>
</div>
);
}

const SongEntry = ({ song }) => {
const handleClick = (e) => {
e.preventDefault();
navigateTo(getLink('songView', { songId: song.id }));
};
return (
<li>
<a href={`/song/${song.id}`} onClick={handleClick}>
{song.title}
</a>
</li>
);
};
9 changes: 9 additions & 0 deletions packages/chord-chart-studio/src/modules/library/routes.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
import Library from './controllers/Library';

export default [
{
name: 'library',
path: '/library',
action: Library,
},
];
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
import React from 'react';
import { useSelector } from 'react-redux';

import { navigateTo, getLink } from '../../../core/router';
import { getOne } from '../../../db/files/selectors';

export default function SongView({ songId }) {
const song = useSelector((state) => getOne(state, songId));

const handleClick = (e) => {
e.preventDefault();
navigateTo(getLink('library'));
};

return (
<div>
<a href="" onClick={handleClick}>
Go back to list
</a>
<br />
<b>{song.title}</b>
<p>{song.content}</p>
</div>
);
}
9 changes: 9 additions & 0 deletions packages/chord-chart-studio/src/modules/songView/routes.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
import SongView from './controllers/SongView';

export default [
{
name: 'songView',
path: '/songView/:songId',
action: SongView,
},
];
2 changes: 1 addition & 1 deletion packages/chord-chart-studio/src/registerSW.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
const serviceWorkerPath = './service-worker.js';
const serviceWorkerPath = '/service-worker.js';

export default function registerSW() {
if ('serviceWorker' in navigator) {
Expand Down
10 changes: 7 additions & 3 deletions packages/chord-chart-studio/src/renderController.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,15 +6,19 @@ import { getStore } from './state/store';

import ErrorBoundary from './ui/_components/ErrorBoundary';

export default function renderController(Controller) {
let root;

export default function renderController(Controller, params) {
const container = document.getElementById('app');
const root = createRoot(container);
if (!root) {
root = createRoot(container);
}

root.render(
<Provider store={getStore()}>
<React.StrictMode>
<ErrorBoundary>
<Controller />
<Controller {...params} />
</ErrorBoundary>
</React.StrictMode>
</Provider>
Expand Down
21 changes: 0 additions & 21 deletions packages/chord-chart-studio/src/router.js

This file was deleted.

Loading

0 comments on commit c755eda

Please sign in to comment.