Skip to content

Commit

Permalink
Adds basic react app and injects into orp search template
Browse files Browse the repository at this point in the history
  • Loading branch information
gdbarnes committed Oct 23, 2024
1 parent 34ce4fe commit 1995f87
Show file tree
Hide file tree
Showing 12 changed files with 17,485 additions and 1,786 deletions.
1 change: 1 addition & 0 deletions orp/orp_search/templates/orp.html
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,7 @@ <h1 class="govuk-heading-xl govuk-!-margin-bottom-4">Find laws and regulations f
</div>
</div>

<div id="orp-react-app"></div>
<form method="get" class="search-form">
<div class="govuk-grid-row">
<div class="govuk-grid-column-one-third">
Expand Down
19,153 changes: 17,371 additions & 1,782 deletions package-lock.json

Large diffs are not rendered by default.

10 changes: 8 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,13 @@
"author": "Department of Business and Trade",
"private": true,
"dependencies": {
"babel-loader": "^9.1.3",
"css-loader": "^5.2.6",
"file-loader": "^6.2.0",
"govuk-frontend": "^5.4.0",
"mini-css-extract-plugin": "^1.6.0",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-scripts": "^5.0.1",
"sass": "^1.77.5",
"sass-loader": "^14.2.1",
"style-loader": "^4.0.0",
Expand All @@ -24,5 +26,9 @@
"version": "0.1.0",
"engines": {
"node": "20"
},
"devDependencies": {
"@babel/preset-react": "^7.25.9",
"babel-loader": "^9.2.1"
}
}
}
Binary file added react_front_end/public/favicon.ico
Binary file not shown.
43 changes: 43 additions & 0 deletions react_front_end/public/index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,43 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<link rel="icon" href="%PUBLIC_URL%/favicon.ico" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<meta name="theme-color" content="#000000" />
<meta
name="description"
content="Web site created using create-react-app"
/>
<link rel="apple-touch-icon" href="%PUBLIC_URL%/logo192.png" />
<!--
manifest.json provides metadata used when your web app is installed on a
user's mobile device or desktop. See https://developers.google.com/web/fundamentals/web-app-manifest/
-->
<link rel="manifest" href="%PUBLIC_URL%/manifest.json" />
<!--
Notice the use of %PUBLIC_URL% in the tags above.
It will be replaced with the URL of the `public` folder during the build.
Only files inside the `public` folder can be referenced from the HTML.
Unlike "/favicon.ico" or "favicon.ico", "%PUBLIC_URL%/favicon.ico" will
work correctly both with client-side routing and a non-root public URL.
Learn how to configure a non-root public URL by running `npm run build`.
-->
<title>React App</title>
</head>
<body>
<noscript>You need to enable JavaScript to run this app.</noscript>
<div id="root"></div>
<!--
This HTML file is a template.
If you open it directly in the browser, you will see an empty page.
You can add webfonts, meta tags, or analytics to this file.
The build step will place the bundled scripts into the <body> tag.
To begin the development, run `npm start` or `yarn start`.
To create a production bundle, use `npm run build` or `yarn build`.
-->
</body>
</html>
Binary file added react_front_end/public/logo192.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added react_front_end/public/logo512.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
25 changes: 25 additions & 0 deletions react_front_end/public/manifest.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
{
"short_name": "React App",
"name": "Create React App Sample",
"icons": [
{
"src": "favicon.ico",
"sizes": "64x64 32x32 24x24 16x16",
"type": "image/x-icon"
},
{
"src": "logo192.png",
"type": "image/png",
"sizes": "192x192"
},
{
"src": "logo512.png",
"type": "image/png",
"sizes": "512x512"
}
],
"start_url": ".",
"display": "standalone",
"theme_color": "#000000",
"background_color": "#ffffff"
}
3 changes: 3 additions & 0 deletions react_front_end/public/robots.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
# https://www.robotstxt.org/robotstxt.html
User-agent: *
Disallow:
7 changes: 7 additions & 0 deletions react_front_end/src/App.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
function App() {
return (
<h1>ORP React</h1>
);
}

export default App;
10 changes: 10 additions & 0 deletions react_front_end/src/index.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
import React from 'react';
import ReactDOM from 'react-dom/client';
import App from './App';

const root = ReactDOM.createRoot(document.getElementById('orp-react-app'));
root.render(
<React.StrictMode>
<App />
</React.StrictMode>
);
19 changes: 17 additions & 2 deletions webpack.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ module.exports = {
main: [
"./front_end/js/application.js",
"./front_end/stylesheets/application.scss",
"./react_front_end/src/index.js",
],
},
output: {
Expand All @@ -30,6 +31,20 @@ module.exports = {

module: {
rules: [
// Use Babel to transpile JS/JSX
{
test: /\.(js|jsx)$/,
exclude: /node_modules/,
use: {
loader: "babel-loader",
options: {
presets: [
"@babel/preset-env",
["@babel/preset-react", { runtime: "automatic" }],
],
},
},
},
// Use file-loader to handle image assets
{
test: /\.(png|jpe?g|gif|woff2?|svg|ico)$/i,
Expand All @@ -50,7 +65,7 @@ module.exports = {

// Extract compiled SCSS separately from JS
{
test: /\.s[ac]ss$/i,
test: /\.(s[ac]ss|css)$/i,
use: [
{
loader: MiniCssExtractPlugin.loader,
Expand All @@ -66,6 +81,6 @@ module.exports = {

resolve: {
modules: ["node_modules"],
extensions: [".js", ".scss"],
extensions: [".js", ".jsx", ".scss"],
},
};

0 comments on commit 1995f87

Please sign in to comment.