🚀 Deploy react frontend
Co-authored-by: Øydis Kind Refsum <oydis.kind.refsum@nav.no> Co-authored-by: Christian Bulow Skovborg <christian.bulow.skovborg@nav.no> Co-authored-by: Amalie Mansåker <amalie.erdal.mansaker@nav.no> Co-authored-by: Sindre Kjelsrud <sindre.kjelsrud@nav.no>
This commit is contained in:
parent
1805256e3c
commit
21504eed5c
7 changed files with 148 additions and 151 deletions
|
@ -1,42 +0,0 @@
|
||||||
#root {
|
|
||||||
max-width: 1280px;
|
|
||||||
margin: 0 auto;
|
|
||||||
padding: 2rem;
|
|
||||||
text-align: center;
|
|
||||||
}
|
|
||||||
|
|
||||||
.logo {
|
|
||||||
height: 6em;
|
|
||||||
padding: 1.5em;
|
|
||||||
will-change: filter;
|
|
||||||
transition: filter 300ms;
|
|
||||||
}
|
|
||||||
.logo:hover {
|
|
||||||
filter: drop-shadow(0 0 2em #646cffaa);
|
|
||||||
}
|
|
||||||
.logo.react:hover {
|
|
||||||
filter: drop-shadow(0 0 2em #61dafbaa);
|
|
||||||
}
|
|
||||||
|
|
||||||
@keyframes logo-spin {
|
|
||||||
from {
|
|
||||||
transform: rotate(0deg);
|
|
||||||
}
|
|
||||||
to {
|
|
||||||
transform: rotate(360deg);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
@media (prefers-reduced-motion: no-preference) {
|
|
||||||
a:nth-of-type(2) .logo {
|
|
||||||
animation: logo-spin infinite 20s linear;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
.card {
|
|
||||||
padding: 2em;
|
|
||||||
}
|
|
||||||
|
|
||||||
.read-the-docs {
|
|
||||||
color: #888;
|
|
||||||
}
|
|
|
@ -1,35 +0,0 @@
|
||||||
import { useState } from 'react'
|
|
||||||
import reactLogo from './assets/react.svg'
|
|
||||||
import viteLogo from '/vite.svg'
|
|
||||||
import './App.css'
|
|
||||||
|
|
||||||
function App() {
|
|
||||||
const [count, setCount] = useState(0)
|
|
||||||
|
|
||||||
return (
|
|
||||||
<>
|
|
||||||
<div>
|
|
||||||
<a href="https://vitejs.dev" target="_blank">
|
|
||||||
<img src={viteLogo} className="logo" alt="Vite logo" />
|
|
||||||
</a>
|
|
||||||
<a href="https://react.dev" target="_blank">
|
|
||||||
<img src={reactLogo} className="logo react" alt="React logo" />
|
|
||||||
</a>
|
|
||||||
</div>
|
|
||||||
<h1>Vite + React</h1>
|
|
||||||
<div className="card">
|
|
||||||
<button onClick={() => setCount((count) => count + 1)}>
|
|
||||||
count is {count}
|
|
||||||
</button>
|
|
||||||
<p>
|
|
||||||
Edit <code>src/App.tsx</code> and save to test HMR
|
|
||||||
</p>
|
|
||||||
</div>
|
|
||||||
<p className="read-the-docs">
|
|
||||||
Click on the Vite and React logos to learn more
|
|
||||||
</p>
|
|
||||||
</>
|
|
||||||
)
|
|
||||||
}
|
|
||||||
|
|
||||||
export default App
|
|
|
@ -1,69 +1,3 @@
|
||||||
:root {
|
@tailwind base;
|
||||||
font-family: Inter, system-ui, Avenir, Helvetica, Arial, sans-serif;
|
@tailwind components;
|
||||||
line-height: 1.5;
|
@tailwind utilities;
|
||||||
font-weight: 400;
|
|
||||||
|
|
||||||
color-scheme: light dark;
|
|
||||||
color: rgba(255, 255, 255, 0.87);
|
|
||||||
background-color: #242424;
|
|
||||||
|
|
||||||
font-synthesis: none;
|
|
||||||
text-rendering: optimizeLegibility;
|
|
||||||
-webkit-font-smoothing: antialiased;
|
|
||||||
-moz-osx-font-smoothing: grayscale;
|
|
||||||
-webkit-text-size-adjust: 100%;
|
|
||||||
}
|
|
||||||
|
|
||||||
a {
|
|
||||||
font-weight: 500;
|
|
||||||
color: #646cff;
|
|
||||||
text-decoration: inherit;
|
|
||||||
}
|
|
||||||
a:hover {
|
|
||||||
color: #535bf2;
|
|
||||||
}
|
|
||||||
|
|
||||||
body {
|
|
||||||
margin: 0;
|
|
||||||
display: flex;
|
|
||||||
place-items: center;
|
|
||||||
min-width: 320px;
|
|
||||||
min-height: 100vh;
|
|
||||||
}
|
|
||||||
|
|
||||||
h1 {
|
|
||||||
font-size: 3.2em;
|
|
||||||
line-height: 1.1;
|
|
||||||
}
|
|
||||||
|
|
||||||
button {
|
|
||||||
border-radius: 8px;
|
|
||||||
border: 1px solid transparent;
|
|
||||||
padding: 0.6em 1.2em;
|
|
||||||
font-size: 1em;
|
|
||||||
font-weight: 500;
|
|
||||||
font-family: inherit;
|
|
||||||
background-color: #1a1a1a;
|
|
||||||
cursor: pointer;
|
|
||||||
transition: border-color 0.25s;
|
|
||||||
}
|
|
||||||
button:hover {
|
|
||||||
border-color: #646cff;
|
|
||||||
}
|
|
||||||
button:focus,
|
|
||||||
button:focus-visible {
|
|
||||||
outline: 4px auto -webkit-focus-ring-color;
|
|
||||||
}
|
|
||||||
|
|
||||||
@media (prefers-color-scheme: light) {
|
|
||||||
:root {
|
|
||||||
color: #213547;
|
|
||||||
background-color: #ffffff;
|
|
||||||
}
|
|
||||||
a:hover {
|
|
||||||
color: #747bff;
|
|
||||||
}
|
|
||||||
button {
|
|
||||||
background-color: #f9f9f9;
|
|
||||||
}
|
|
||||||
}
|
|
53
frontend/src/index.tsx
Normal file
53
frontend/src/index.tsx
Normal file
|
@ -0,0 +1,53 @@
|
||||||
|
import CardsContainer from "./components/CardsContainer";
|
||||||
|
import "@navikt/ds-css";
|
||||||
|
import { Button, Heading, Search } from "@navikt/ds-react";
|
||||||
|
import Header from "./components/Header";
|
||||||
|
|
||||||
|
|
||||||
|
export default function Home() {
|
||||||
|
// const handleFeil = () => {
|
||||||
|
// router.push('/feil')
|
||||||
|
// }
|
||||||
|
|
||||||
|
return (
|
||||||
|
<main className="flex flex-col h-screen">
|
||||||
|
<Header/>
|
||||||
|
<div className="flex justify-center grow">
|
||||||
|
<div className="bg-bg-subtle w-1/6 p-8 flex flex-col justify-end">
|
||||||
|
<div className="flex flex-col gap-4 text-center bottom-0">
|
||||||
|
<Button
|
||||||
|
variant="primary"
|
||||||
|
// onClick={handleFeil}
|
||||||
|
>
|
||||||
|
Meld inn feil
|
||||||
|
</Button>
|
||||||
|
<Button
|
||||||
|
variant="secondary"
|
||||||
|
>
|
||||||
|
Meld inn funksjonalitetsønsker
|
||||||
|
</Button>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div className="p-8 grow flex gap-8 flex-col">
|
||||||
|
<Search
|
||||||
|
label="Søk gjennom innmeldte feil (nøkkelord, tags, status)"
|
||||||
|
variant="primary"
|
||||||
|
hideLabel={false}
|
||||||
|
/>
|
||||||
|
<Heading
|
||||||
|
level="1"
|
||||||
|
size="medium"
|
||||||
|
>
|
||||||
|
Innmeldte feil (saker, feilmeldinger poster, feil)
|
||||||
|
</Heading>
|
||||||
|
<CardsContainer/>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div className="bg-bg-subtle w-1/6 p-8">
|
||||||
|
<h1>Filter to be</h1>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</main>
|
||||||
|
)
|
||||||
|
}
|
|
@ -1,10 +1,10 @@
|
||||||
import React from 'react'
|
import React from 'react'
|
||||||
import ReactDOM from 'react-dom/client'
|
import ReactDOM from 'react-dom/client'
|
||||||
import App from './App.tsx'
|
|
||||||
import './index.css'
|
import './index.css'
|
||||||
|
import Home from './index.tsx'
|
||||||
|
|
||||||
ReactDOM.createRoot(document.getElementById('root')!).render(
|
ReactDOM.createRoot(document.getElementById('root')!).render(
|
||||||
<React.StrictMode>
|
<React.StrictMode>
|
||||||
<App />
|
<Home />
|
||||||
</React.StrictMode>,
|
</React.StrictMode>,
|
||||||
)
|
)
|
||||||
|
|
88
frontend/src/pages/feil.tsx
Normal file
88
frontend/src/pages/feil.tsx
Normal file
|
@ -0,0 +1,88 @@
|
||||||
|
import "@navikt/ds-css";
|
||||||
|
|
||||||
|
import { ArrowLeftIcon, BugIcon } from "@navikt/aksel-icons";
|
||||||
|
import { Button, Heading, TextField, Textarea } from "@navikt/ds-react";
|
||||||
|
import axios from "axios";
|
||||||
|
import { useState } from "react";
|
||||||
|
import BildeOpplastning from "../components/BildeOpplastning";
|
||||||
|
import Header from "../components/Header";
|
||||||
|
|
||||||
|
export default function Feil() {
|
||||||
|
const [tittel, setTittel] = useState("");
|
||||||
|
const [beskrivelse, setBeskrivelse] = useState("");
|
||||||
|
|
||||||
|
const handleSubmit = () => {
|
||||||
|
axios.post("https://helse-sprik.intern.dev.nav.no/nyFeil",
|
||||||
|
{
|
||||||
|
"data": {
|
||||||
|
tittel: tittel,
|
||||||
|
beskrivelse: beskrivelse,
|
||||||
|
dato: new Date()
|
||||||
|
}
|
||||||
|
}, {
|
||||||
|
headers: {
|
||||||
|
'Content-Type': 'application/json'
|
||||||
|
}
|
||||||
|
}).then((response) => {
|
||||||
|
console.log(response)
|
||||||
|
}).catch((error) => {
|
||||||
|
console.log(error);
|
||||||
|
})
|
||||||
|
}
|
||||||
|
|
||||||
|
// TODO: clear data fra felter
|
||||||
|
|
||||||
|
|
||||||
|
return (
|
||||||
|
<main className="flex flex-col h-screen">
|
||||||
|
<Header/>
|
||||||
|
<div className="flex grow">
|
||||||
|
<div className="w-1/4 bg-bg-subtle"></div>
|
||||||
|
<div className="flex flex-col justify-center gap-16 p-8 px-16 grow">
|
||||||
|
<div className=" flex flex-col gap-2 justify-center">
|
||||||
|
<BugIcon
|
||||||
|
title="Insekts ikon"
|
||||||
|
fontSize="3rem"
|
||||||
|
/>
|
||||||
|
<Heading
|
||||||
|
level="1"
|
||||||
|
size="xlarge"
|
||||||
|
>
|
||||||
|
Innmelding av feil i speil
|
||||||
|
</Heading>
|
||||||
|
</div>
|
||||||
|
<div className="w-1/2 flex flex-col gap-4 justify-center">
|
||||||
|
<TextField
|
||||||
|
label="Tittel"
|
||||||
|
onChange={e => setTittel(e.target.value)}
|
||||||
|
/>
|
||||||
|
<Textarea
|
||||||
|
label="Beskrivelse"
|
||||||
|
description="Detaljert beskrivelse av problemet"
|
||||||
|
onChange={e => setBeskrivelse(e.target.value)}
|
||||||
|
/>
|
||||||
|
<BildeOpplastning/>
|
||||||
|
</div>
|
||||||
|
<div className="w-1/2 flex flex-col gap-2 justify-center">
|
||||||
|
<Button
|
||||||
|
onClick={handleSubmit}
|
||||||
|
variant="primary"
|
||||||
|
>
|
||||||
|
Meld inn feil
|
||||||
|
</Button>
|
||||||
|
<Button
|
||||||
|
variant="tertiary"
|
||||||
|
icon={<ArrowLeftIcon />}
|
||||||
|
// onClick={() => {
|
||||||
|
// router.push('/')
|
||||||
|
// }}
|
||||||
|
>
|
||||||
|
Gå tilbake til hovedmenyen
|
||||||
|
</Button>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div className="w-1/4 bg-bg-subtle"></div>
|
||||||
|
</div>
|
||||||
|
</main>
|
||||||
|
)
|
||||||
|
}
|
|
@ -2,9 +2,8 @@
|
||||||
module.exports = {
|
module.exports = {
|
||||||
presets: [require("@navikt/ds-tailwind")],
|
presets: [require("@navikt/ds-tailwind")],
|
||||||
content: [
|
content: [
|
||||||
'./pages/**/*.{js,ts,jsx,tsx,mdx}',
|
'./src/**/*.{js,ts,jsx,tsx,mdx}',
|
||||||
'./components/**/*.{js,ts,jsx,tsx,mdx}',
|
'./index.html',
|
||||||
'./app/**/*.{js,ts,jsx,tsx,mdx}',
|
|
||||||
],
|
],
|
||||||
"theme": {
|
"theme": {
|
||||||
"colors": {
|
"colors": {
|
||||||
|
|
Reference in a new issue