feat(routing): add routes and components for domain management

- Introduced new components: DomainForm, Domains, Home, Login, Offers, Register.
- Added axios setup for API calls in a separate api.js file.
- Set up environment variables in .env.local.dist for API base URL and port.
- Enhanced App.js to use a Routes component for routing.
- Replaced README.md content with empty template.
- Updated package dependencies to include axios, jwt-decode, and react-router-dom.
- Added a PrivateRoute component to guard private routes.
- Added .vscode/launch.json for easier debugging with VS Code.
- Added LICENSE file.

These changes enable user authentication, domain creation, listing, and offer viewing within the app. This sets up a scalable foundation for managing domain-related features and user access control.
This commit is contained in:
Kumi 2024-08-02 18:17:54 +02:00
parent d96e45e172
commit 32e362cde8
Signed by: kumi
GPG key ID: ECBCC9082395383F
17 changed files with 431 additions and 107 deletions

2
.env.local.dist Normal file
View file

@ -0,0 +1,2 @@
REACT_APP_API_BASE_URL=http://localhost:8000
PORT=8112

15
.vscode/launch.json vendored Normal file
View file

@ -0,0 +1,15 @@
{
// Use IntelliSense to learn about possible attributes.
// Hover to view descriptions of existing attributes.
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0",
"configurations": [
{
"command": "npm start",
"name": "Run npm start",
"request": "launch",
"type": "node-terminal",
"envFile": "${workspaceFolder}/.env.local"
}
]
}

19
LICENSE Normal file
View file

@ -0,0 +1,19 @@
Copyright (c) 2024 Kumi <caffeinateddomains@kumi.email>
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.

View file

@ -1,70 +0,0 @@
# Getting Started with Create React App
This project was bootstrapped with [Create React App](https://github.com/facebook/create-react-app).
## Available Scripts
In the project directory, you can run:
### `npm start`
Runs the app in the development mode.\
Open [http://localhost:3000](http://localhost:3000) to view it in your browser.
The page will reload when you make changes.\
You may also see any lint errors in the console.
### `npm test`
Launches the test runner in the interactive watch mode.\
See the section about [running tests](https://facebook.github.io/create-react-app/docs/running-tests) for more information.
### `npm run build`
Builds the app for production to the `build` folder.\
It correctly bundles React in production mode and optimizes the build for the best performance.
The build is minified and the filenames include the hashes.\
Your app is ready to be deployed!
See the section about [deployment](https://facebook.github.io/create-react-app/docs/deployment) for more information.
### `npm run eject`
**Note: this is a one-way operation. Once you `eject`, you can't go back!**
If you aren't satisfied with the build tool and configuration choices, you can `eject` at any time. This command will remove the single build dependency from your project.
Instead, it will copy all the configuration files and the transitive dependencies (webpack, Babel, ESLint, etc) right into your project so you have full control over them. All of the commands except `eject` will still work, but they will point to the copied scripts so you can tweak them. At this point you're on your own.
You don't have to ever use `eject`. The curated feature set is suitable for small and middle deployments, and you shouldn't feel obligated to use this feature. However we understand that this tool wouldn't be useful if you couldn't customize it when you are ready for it.
## Learn More
You can learn more in the [Create React App documentation](https://facebook.github.io/create-react-app/docs/getting-started).
To learn React, check out the [React documentation](https://reactjs.org/).
### Code Splitting
This section has moved here: [https://facebook.github.io/create-react-app/docs/code-splitting](https://facebook.github.io/create-react-app/docs/code-splitting)
### Analyzing the Bundle Size
This section has moved here: [https://facebook.github.io/create-react-app/docs/analyzing-the-bundle-size](https://facebook.github.io/create-react-app/docs/analyzing-the-bundle-size)
### Making a Progressive Web App
This section has moved here: [https://facebook.github.io/create-react-app/docs/making-a-progressive-web-app](https://facebook.github.io/create-react-app/docs/making-a-progressive-web-app)
### Advanced Configuration
This section has moved here: [https://facebook.github.io/create-react-app/docs/advanced-configuration](https://facebook.github.io/create-react-app/docs/advanced-configuration)
### Deployment
This section has moved here: [https://facebook.github.io/create-react-app/docs/deployment](https://facebook.github.io/create-react-app/docs/deployment)
### `npm run build` fails to minify
This section has moved here: [https://facebook.github.io/create-react-app/docs/troubleshooting#npm-run-build-fails-to-minify](https://facebook.github.io/create-react-app/docs/troubleshooting#npm-run-build-fails-to-minify)

84
package-lock.json generated
View file

@ -11,8 +11,11 @@
"@testing-library/jest-dom": "^5.17.0",
"@testing-library/react": "^13.4.0",
"@testing-library/user-event": "^13.5.0",
"axios": "^1.7.3",
"jwt-decode": "^4.0.0",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-router-dom": "^6.26.0",
"react-scripts": "5.0.1",
"web-vitals": "^2.1.4"
}
@ -3540,6 +3543,15 @@
}
}
},
"node_modules/@remix-run/router": {
"version": "1.19.0",
"resolved": "https://registry.npmjs.org/@remix-run/router/-/router-1.19.0.tgz",
"integrity": "sha512-zDICCLKEwbVYTS6TjYaWtHXxkdoUvD/QXvyVZjGCsWz5vyH7aFeONlPffPdW+Y/t6KT0MgXb2Mfjun9YpWN1dA==",
"license": "MIT",
"engines": {
"node": ">=14.0.0"
}
},
"node_modules/@rollup/plugin-babel": {
"version": "5.3.1",
"resolved": "https://registry.npmjs.org/@rollup/plugin-babel/-/plugin-babel-5.3.1.tgz",
@ -5815,6 +5827,31 @@
"node": ">=4"
}
},
"node_modules/axios": {
"version": "1.7.3",
"resolved": "https://registry.npmjs.org/axios/-/axios-1.7.3.tgz",
"integrity": "sha512-Ar7ND9pU99eJ9GpoGQKhKf58GpUOgnzuaB7ueNQ5BMi0p+LZ5oaEnfF999fAArcTIBwXTCHAmGcHOZJaWPq9Nw==",
"license": "MIT",
"dependencies": {
"follow-redirects": "^1.15.6",
"form-data": "^4.0.0",
"proxy-from-env": "^1.1.0"
}
},
"node_modules/axios/node_modules/form-data": {
"version": "4.0.0",
"resolved": "https://registry.npmjs.org/form-data/-/form-data-4.0.0.tgz",
"integrity": "sha512-ETEklSGi5t0QMZuiXoA/Q6vcnxcLQP5vdugSpuAyi6SVGi2clPPp+xgEhuMaHC+zGgn31Kd235W35f7Hykkaww==",
"license": "MIT",
"dependencies": {
"asynckit": "^0.4.0",
"combined-stream": "^1.0.8",
"mime-types": "^2.1.12"
},
"engines": {
"node": ">= 6"
}
},
"node_modules/axobject-query": {
"version": "3.1.1",
"resolved": "https://registry.npmjs.org/axobject-query/-/axobject-query-3.1.1.tgz",
@ -13258,6 +13295,15 @@
"node": ">=4.0"
}
},
"node_modules/jwt-decode": {
"version": "4.0.0",
"resolved": "https://registry.npmjs.org/jwt-decode/-/jwt-decode-4.0.0.tgz",
"integrity": "sha512-+KJGIyHgkGuIq3IEBNftfhW/LfWhXUIY6OmyVWjliu5KH1y0fw7VQ8YndE2O4qZdMSd9SqbnC8GOcZEy0Om7sA==",
"license": "MIT",
"engines": {
"node": ">=18"
}
},
"node_modules/keyv": {
"version": "4.5.4",
"resolved": "https://registry.npmjs.org/keyv/-/keyv-4.5.4.tgz",
@ -15826,6 +15872,12 @@
"node": ">= 0.10"
}
},
"node_modules/proxy-from-env": {
"version": "1.1.0",
"resolved": "https://registry.npmjs.org/proxy-from-env/-/proxy-from-env-1.1.0.tgz",
"integrity": "sha512-D+zkORCbA9f1tdWRK0RaCR3GPv50cMxcrz4X8k5LTSUD1Dkw47mKJEZQNunItRTkWwgtaUSo1RVFRIG9ZXiFYg==",
"license": "MIT"
},
"node_modules/psl": {
"version": "1.9.0",
"resolved": "https://registry.npmjs.org/psl/-/psl-1.9.0.tgz",
@ -16212,6 +16264,38 @@
"node": ">=0.10.0"
}
},
"node_modules/react-router": {
"version": "6.26.0",
"resolved": "https://registry.npmjs.org/react-router/-/react-router-6.26.0.tgz",
"integrity": "sha512-wVQq0/iFYd3iZ9H2l3N3k4PL8EEHcb0XlU2Na8nEwmiXgIUElEH6gaJDtUQxJ+JFzmIXaQjfdpcGWaM6IoQGxg==",
"license": "MIT",
"dependencies": {
"@remix-run/router": "1.19.0"
},
"engines": {
"node": ">=14.0.0"
},
"peerDependencies": {
"react": ">=16.8"
}
},
"node_modules/react-router-dom": {
"version": "6.26.0",
"resolved": "https://registry.npmjs.org/react-router-dom/-/react-router-dom-6.26.0.tgz",
"integrity": "sha512-RRGUIiDtLrkX3uYcFiCIxKFWMcWQGMojpYZfcstc63A1+sSnVgILGIm9gNUA6na3Fm1QuPGSBQH2EMbAZOnMsQ==",
"license": "MIT",
"dependencies": {
"@remix-run/router": "1.19.0",
"react-router": "6.26.0"
},
"engines": {
"node": ">=14.0.0"
},
"peerDependencies": {
"react": ">=16.8",
"react-dom": ">=16.8"
}
},
"node_modules/react-scripts": {
"version": "5.0.1",
"resolved": "https://registry.npmjs.org/react-scripts/-/react-scripts-5.0.1.tgz",

View file

@ -6,8 +6,11 @@
"@testing-library/jest-dom": "^5.17.0",
"@testing-library/react": "^13.4.0",
"@testing-library/user-event": "^13.5.0",
"axios": "^1.7.3",
"jwt-decode": "^4.0.0",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-router-dom": "^6.26.0",
"react-scripts": "5.0.1",
"web-vitals": "^2.1.4"
},

View file

@ -2,17 +2,6 @@
text-align: center;
}
.App-logo {
height: 40vmin;
pointer-events: none;
}
@media (prefers-reduced-motion: no-preference) {
.App-logo {
animation: App-logo-spin infinite 20s linear;
}
}
.App-header {
background-color: #282c34;
min-height: 100vh;
@ -24,15 +13,12 @@
color: white;
}
.App-link {
color: #61dafb;
input, button, textarea {
margin: 10px;
padding: 10px;
font-size: 1rem;
}
@keyframes App-logo-spin {
from {
transform: rotate(0deg);
}
to {
transform: rotate(360deg);
}
}
h2 {
margin: 20px 0;
}

View file

@ -1,25 +1,13 @@
import logo from './logo.svg';
import React from 'react';
import Routes from './routes/Routes';
import './App.css';
function App() {
return (
<div className="App">
<header className="App-header">
<img src={logo} className="App-logo" alt="logo" />
<p>
Edit <code>src/App.js</code> and save to reload.
</p>
<a
className="App-link"
href="https://reactjs.org"
target="_blank"
rel="noopener noreferrer"
>
Learn React
</a>
</header>
<Routes />
</div>
);
}
export default App;
export default App;

9
src/api.js Normal file
View file

@ -0,0 +1,9 @@
import axios from 'axios';
const API_BASE_URL = process.env.REACT_APP_API_BASE_URL;
const apiClient = axios.create({
baseURL: API_BASE_URL,
});
export default apiClient;

View file

@ -0,0 +1,79 @@
import React, { useState } from 'react';
import apiClient from '../api';
const DomainForm = ({ onSuccess }) => {
const [name, setName] = useState('');
const [price, setPrice] = useState('');
const [acceptOffers, setAcceptOffers] = useState(false);
const [buyNowPrice, setBuyNowPrice] = useState('');
const [additionalInfoRequest, setAdditionalInfoRequest] = useState('');
const handleSubmit = async (e) => {
e.preventDefault();
const token = localStorage.getItem('token');
try {
await apiClient.post(
'/domains/domains/',
{
name,
price,
accept_offers: acceptOffers,
buy_now_price: buyNowPrice,
additional_info_request: additionalInfoRequest,
},
{
headers: { Authorization: `Bearer ${token}` },
}
);
onSuccess();
} catch (error) {
console.error('Error creating domain:', error);
alert('Error creating domain.');
}
};
return (
<div>
<h2>Create Domain</h2>
<form onSubmit={handleSubmit}>
<input
type="text"
value={name}
onChange={(e) => setName(e.target.value)}
placeholder="Domain name"
required
/>
<input
type="number"
value={price}
onChange={(e) => setPrice(e.target.value)}
placeholder="Price"
/>
<label>
<input
type="checkbox"
checked={acceptOffers}
onChange={(e) => setAcceptOffers(e.target.checked)}
/>
Accept Offers
</label>
{acceptOffers && (
<input
type="number"
value={buyNowPrice}
onChange={(e) => setBuyNowPrice(e.target.value)}
placeholder="Buy Now Price"
/>
)}
<textarea
value={additionalInfoRequest}
onChange={(e) => setAdditionalInfoRequest(e.target.value)}
placeholder="Request additional information"
/>
<button type="submit">Create Domain</button>
</form>
</div>
);
};
export default DomainForm;

37
src/components/Domains.js Normal file
View file

@ -0,0 +1,37 @@
import React, { useState, useEffect } from 'react';
import apiClient from '../api';
import DomainForm from './DomainForm';
const Domains = () => {
const [domains, setDomains] = useState([]);
const fetchDomains = async () => {
const token = localStorage.getItem('token');
try {
const response = await apiClient.get('/domains/domains/', {
headers: { Authorization: `Bearer ${token}` },
});
setDomains(response.data);
} catch (error) {
console.error('Error fetching domains:', error);
}
};
useEffect(() => {
fetchDomains();
}, []);
return (
<div>
<h2>Domains</h2>
<DomainForm onSuccess={fetchDomains} />
<ul>
{domains.map((domain) => (
<li key={domain.id}>{domain.name}</li>
))}
</ul>
</div>
);
};
export default Domains;

9
src/components/Home.js Normal file
View file

@ -0,0 +1,9 @@
import React from 'react';
const Home = () => (
<div>
<h1>Welcome to CaffeinatedDomains</h1>
</div>
);
export default Home;

49
src/components/Login.js Normal file
View file

@ -0,0 +1,49 @@
import React, { useState, useEffect } from 'react';
import { useNavigate, useLocation } from 'react-router-dom';
import { jwtDecode } from 'jwt-decode';
import apiClient from '../api';
const Login = () => {
const [email, setEmail] = useState('');
const navigate = useNavigate();
const location = useLocation();
useEffect(() => {
const token = new URLSearchParams(location.search).get('token');
if (token) {
localStorage.setItem('token', token);
const decodedToken = jwtDecode(token);
alert(`Logged in as ${decodedToken.email}`);
navigate('/domains/domains/');
}
}, [location, navigate]);
const handleSubmit = async (e) => {
e.preventDefault();
try {
await apiClient.post('/accounts/request-login-link/', { email });
alert('Login link sent to your email.');
} catch (error) {
console.error('Error sending login link:', error);
alert('Error sending login link.');
}
};
return (
<div>
<h2>Login</h2>
<form onSubmit={handleSubmit}>
<input
type="email"
value={email}
onChange={(e) => setEmail(e.target.value)}
placeholder="Enter your email"
required
/>
<button type="submit">Send Login Link</button>
</form>
</div>
);
};
export default Login;

37
src/components/Offers.js Normal file
View file

@ -0,0 +1,37 @@
import React, { useState, useEffect } from 'react';
import apiClient from '../api';
const Offers = () => {
const [offers, setOffers] = useState([]);
const fetchOffers = async () => {
const token = localStorage.getItem('token');
try {
const response = await apiClient.get('/domains/offers/', {
headers: { Authorization: `Bearer ${token}` },
});
setOffers(response.data);
} catch (error) {
console.error('Error fetching offers:', error);
}
};
useEffect(() => {
fetchOffers();
}, []);
return (
<div>
<h2>Offers</h2>
<ul>
{offers.map((offer) => (
<li key={offer.id}>
Domain: {offer.domain.name} - Offered Price: {offer.offered_price}
</li>
))}
</ul>
</div>
);
};
export default Offers;

View file

@ -0,0 +1,46 @@
import React, { useState } from 'react';
import { useNavigate } from 'react-router-dom';
import apiClient from '../api';
const Register = () => {
const [email, setEmail] = useState('');
const [fullName, setFullName] = useState('');
const navigate = useNavigate();
const handleSubmit = async (e) => {
e.preventDefault();
try {
await apiClient.post('/accounts/register/', { email, full_name: fullName });
alert('Registration successful. Please check your email for the login link.');
navigate('/login');
} catch (error) {
console.error('Error registering:', error);
alert('Error registering.');
}
};
return (
<div>
<h2>Register</h2>
<form onSubmit={handleSubmit}>
<input
type="email"
value={email}
onChange={(e) => setEmail(e.target.value)}
placeholder="Enter your email"
required
/>
<input
type="text"
value={fullName}
onChange={(e) => setFullName(e.target.value)}
placeholder="Enter your full name"
required
/>
<button type="submit">Register</button>
</form>
</div>
);
};
export default Register;

View file

@ -0,0 +1,9 @@
import React from 'react';
import { Navigate } from 'react-router-dom';
const PrivateRoute = ({ element: Component }) => {
const isAuthenticated = !!localStorage.getItem('token');
return isAuthenticated ? <Component /> : <Navigate to="/login" />;
};
export default PrivateRoute;

22
src/routes/Routes.js Normal file
View file

@ -0,0 +1,22 @@
import React from 'react';
import { BrowserRouter as Router, Route, Routes } from 'react-router-dom';
import Home from '../components/Home';
import Login from '../components/Login';
import Register from '../components/Register';
import Domains from '../components/Domains';
import Offers from '../components/Offers';
import PrivateRoute from './PrivateRoute';
const AppRoutes = () => (
<Router>
<Routes>
<Route path="/" element={<Home />} />
<Route path="/login" element={<Login />} />
<Route path="/register" element={<Register />} />
<Route path="/domains" element={<PrivateRoute element={Domains} />} />
<Route path="/offers" element={<PrivateRoute element={Offers} />} />
</Routes>
</Router>
);
export default AppRoutes;