chore: frontend fsd
This commit is contained in:
parent
d4d1838821
commit
500c51305a
File diff suppressed because it is too large
Load Diff
|
@ -10,9 +10,13 @@
|
||||||
"license": "ISC",
|
"license": "ISC",
|
||||||
"description": "",
|
"description": "",
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
|
"@emotion/react": "^11.14.0",
|
||||||
|
"@emotion/styled": "^11.14.0",
|
||||||
|
"@mui/material": "^6.4.1",
|
||||||
"keycloak-js": "^26.1.0",
|
"keycloak-js": "^26.1.0",
|
||||||
"react": "^19.0.0",
|
"react": "^19.0.0",
|
||||||
"react-dom": "^19.0.0"
|
"react-dom": "^19.0.0",
|
||||||
|
"react-router-dom": "^7.1.3"
|
||||||
},
|
},
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"@types/react": "^19.0.7",
|
"@types/react": "^19.0.7",
|
||||||
|
@ -20,10 +24,13 @@
|
||||||
"css-loader": "^7.1.2",
|
"css-loader": "^7.1.2",
|
||||||
"dotenv": "^16.4.7",
|
"dotenv": "^16.4.7",
|
||||||
"html-webpack-plugin": "^5.6.3",
|
"html-webpack-plugin": "^5.6.3",
|
||||||
|
"sass": "^1.83.4",
|
||||||
|
"sass-loader": "^16.0.4",
|
||||||
|
"style-loader": "^4.0.0",
|
||||||
"ts-loader": "^9.5.2",
|
"ts-loader": "^9.5.2",
|
||||||
"typescript": "^5.7.3",
|
"typescript": "^5.7.3",
|
||||||
"webpack": "^5.97.1",
|
"webpack": "^5.97.1",
|
||||||
"webpack-cli": "^6.0.1",
|
"webpack-cli": "^6.0.1",
|
||||||
"webpack-dev-server": "^5.2.0"
|
"webpack-dev-server": "^5.2.0"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,14 +0,0 @@
|
||||||
import React, { useEffect } from 'react';
|
|
||||||
import keycloak from './keycloak';
|
|
||||||
|
|
||||||
const App: React.FC = () => {
|
|
||||||
return (
|
|
||||||
<div>
|
|
||||||
<button onClick={() => keycloak.login()}>Login</button>
|
|
||||||
<button onClick={() => alert(keycloak.token)}>Token</button>
|
|
||||||
<button onClick={() => keycloak.logout()}>Logout</button>
|
|
||||||
</div>
|
|
||||||
);
|
|
||||||
};
|
|
||||||
|
|
||||||
export default App;
|
|
|
@ -0,0 +1,15 @@
|
||||||
|
import React from 'react';
|
||||||
|
import { BrowserRouter, Route, Routes } from 'react-router-dom';
|
||||||
|
import { Root } from '../pages/root';
|
||||||
|
import { Search } from '../pages/search';
|
||||||
|
|
||||||
|
export const App: React.FC = () => {
|
||||||
|
return (
|
||||||
|
<BrowserRouter>
|
||||||
|
<Routes>
|
||||||
|
<Route path='/search' element={<Search />} />
|
||||||
|
<Route path='/' element={<Root />} />
|
||||||
|
</Routes>
|
||||||
|
</BrowserRouter>
|
||||||
|
);
|
||||||
|
};
|
|
@ -0,0 +1 @@
|
||||||
|
export * from './app'
|
|
@ -0,0 +1,8 @@
|
||||||
|
export type DBRecord = {
|
||||||
|
id: number,
|
||||||
|
date: Date,
|
||||||
|
description: string,
|
||||||
|
weight: number,
|
||||||
|
calories: number,
|
||||||
|
calspergram: number
|
||||||
|
};
|
|
@ -0,0 +1,8 @@
|
||||||
|
import React from 'react'
|
||||||
|
import { TextareaAutosize } from '@mui/material'
|
||||||
|
|
||||||
|
export const CreateRecord: React.FC = () => {
|
||||||
|
return (
|
||||||
|
<TextareaAutosize />
|
||||||
|
)
|
||||||
|
}
|
|
@ -0,0 +1 @@
|
||||||
|
export * from './createRecord';
|
|
@ -1,6 +1,6 @@
|
||||||
import { createRoot } from 'react-dom/client';
|
import { createRoot } from 'react-dom/client';
|
||||||
|
|
||||||
import App from './App';
|
import { App } from './app';
|
||||||
|
|
||||||
const container = document.getElementById('root');
|
const container = document.getElementById('root');
|
||||||
|
|
||||||
|
|
|
@ -0,0 +1,10 @@
|
||||||
|
import React from 'react';
|
||||||
|
import { CreateRecord } from '../features/createRecord';
|
||||||
|
|
||||||
|
export const Root: React.FC = () => {
|
||||||
|
return (
|
||||||
|
<div>
|
||||||
|
<CreateRecord />
|
||||||
|
</div>
|
||||||
|
)
|
||||||
|
}
|
|
@ -0,0 +1,9 @@
|
||||||
|
import React from 'react';
|
||||||
|
|
||||||
|
export const Search: React.FC = () => {
|
||||||
|
return (
|
||||||
|
<div>
|
||||||
|
Search
|
||||||
|
</div>
|
||||||
|
)
|
||||||
|
}
|
|
@ -1,6 +1,6 @@
|
||||||
import Keycloak from 'keycloak-js';
|
import Keycloak from 'keycloak-js';
|
||||||
|
|
||||||
let kc = new Keycloak({
|
const kc = new Keycloak({
|
||||||
url: process.env.KEYCLOAK_URL as string,
|
url: process.env.KEYCLOAK_URL as string,
|
||||||
realm: process.env.KEYCLOAK_REALM as string,
|
realm: process.env.KEYCLOAK_REALM as string,
|
||||||
clientId: process.env.KEYCLOAK_CLIENT as string,
|
clientId: process.env.KEYCLOAK_CLIENT as string,
|
||||||
|
@ -17,5 +17,4 @@ kc.init({
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
|
|
||||||
|
|
||||||
export default kc;
|
export default kc;
|
|
@ -15,6 +15,20 @@ module.exports = {
|
||||||
use: 'ts-loader',
|
use: 'ts-loader',
|
||||||
exclude: /node_modules/,
|
exclude: /node_modules/,
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
test: /\.scss$/,
|
||||||
|
use: [
|
||||||
|
'style-loader',
|
||||||
|
{
|
||||||
|
loader: 'css-loader',
|
||||||
|
options: { sourceMap: true }
|
||||||
|
},
|
||||||
|
{
|
||||||
|
loader: 'sass-loader',
|
||||||
|
options: { sourceMap: true }
|
||||||
|
}
|
||||||
|
]
|
||||||
|
},
|
||||||
],
|
],
|
||||||
},
|
},
|
||||||
resolve: {
|
resolve: {
|
||||||
|
@ -26,11 +40,12 @@ module.exports = {
|
||||||
},
|
},
|
||||||
plugins: [
|
plugins: [
|
||||||
new HtmlWebpackPlugin({
|
new HtmlWebpackPlugin({
|
||||||
template: './src/index.html',
|
template: './index.html',
|
||||||
}),
|
}),
|
||||||
new HtmlWebpackPlugin({
|
new HtmlWebpackPlugin({
|
||||||
filename: 'silent-check-sso.html',
|
filename: 'silent-check-sso.html',
|
||||||
template: './silent-check-sso.html',
|
template: './silent-check-sso.html',
|
||||||
|
inject: false,
|
||||||
}),
|
}),
|
||||||
new webpack.DefinePlugin({
|
new webpack.DefinePlugin({
|
||||||
'process.env': {
|
'process.env': {
|
||||||
|
|
Loading…
Reference in New Issue