Design idea
This commit is contained in:
@@ -6,10 +6,10 @@ export const arrowRight = `<svg xmlns="http://www.w3.org/2000/svg" fill="white"
|
||||
<path fill-rule="evenodd" d="M1 8a.5.5 0 0 1 .5-.5h11.793l-3.147-3.146a.5.5 0 0 1 .708-.708l4 4a.5.5 0 0 1 0 .708l-4 4a.5.5 0 0 1-.708-.708L13.293 8.5H1.5A.5.5 0 0 1 1 8z"/>
|
||||
</svg>`
|
||||
|
||||
export const deleteItem = `<svg xmlns="http://www.w3.org/2000/svg" fill="currentColor" class="bi bi-trash-fill" viewBox="0 0 16 16">
|
||||
export const deleteItem = `<svg xmlns="http://www.w3.org/2000/svg" fill="black" class="bi bi-trash-fill" viewBox="0 0 16 16">
|
||||
<path d="M2.5 1a1 1 0 0 0-1 1v1a1 1 0 0 0 1 1H3v9a2 2 0 0 0 2 2h6a2 2 0 0 0 2-2V4h.5a1 1 0 0 0 1-1V2a1 1 0 0 0-1-1H10a1 1 0 0 0-1-1H7a1 1 0 0 0-1 1H2.5zm3 4a.5.5 0 0 1 .5.5v7a.5.5 0 0 1-1 0v-7a.5.5 0 0 1 .5-.5zM8 5a.5.5 0 0 1 .5.5v7a.5.5 0 0 1-1 0v-7A.5.5 0 0 1 8 5zm3 .5v7a.5.5 0 0 1-1 0v-7a.5.5 0 0 1 1 0z"/>
|
||||
</svg>`
|
||||
|
||||
export const editItem = `<svg xmlns="http://www.w3.org/2000/svg" fill="currentColor" class="bi bi-pencil-fill" viewBox="0 0 16 16">
|
||||
export const editItem = `<svg xmlns="http://www.w3.org/2000/svg" fill="black" class="bi bi-pencil-fill" viewBox="0 0 16 16">
|
||||
<path d="M12.854.146a.5.5 0 0 0-.707 0L10.5 1.793 14.207 5.5l1.647-1.646a.5.5 0 0 0 0-.708l-3-3zm.646 6.061L9.793 2.5 3.293 9H3.5a.5.5 0 0 1 .5.5v.5h.5a.5.5 0 0 1 .5.5v.5h.5a.5.5 0 0 1 .5.5v.5h.5a.5.5 0 0 1 .5.5v.207l6.5-6.5zm-7.468 7.468A.5.5 0 0 1 6 13.5V13h-.5a.5.5 0 0 1-.5-.5V12h-.5a.5.5 0 0 1-.5-.5V11h-.5a.5.5 0 0 1-.5-.5V10h-.5a.499.499 0 0 1-.175-.032l-.179.178a.5.5 0 0 0-.11.168l-2 5a.5.5 0 0 0 .65.65l5-2a.5.5 0 0 0 .168-.11l.178-.178z"/>
|
||||
</svg>`
|
||||
@@ -36,28 +36,28 @@ export default function Login() {
|
||||
const router = useRouter()
|
||||
|
||||
return (
|
||||
<div className="border">
|
||||
<login className={"login-container"}>
|
||||
// <div className="border">
|
||||
<login className={"login-container box-shadow"}>
|
||||
<p className={"font-big-fat placement"}>Login</p>
|
||||
<div className={"placement"}>
|
||||
<br/>
|
||||
<p className={"font-kinda-big"}>Username</p>
|
||||
<input type="text" value={inputUserName} onChange={e => setInputUserName(e.target.value)}
|
||||
placeholder={hint} className="input input-bordered input-sm w-full max-w-xs"
|
||||
placeholder={hint} className="input input-bordered input-sm w-full max-w-xs box-shadow"
|
||||
style={{
|
||||
backgroundColor: backgroundColor
|
||||
}}/>
|
||||
<br/>
|
||||
<p className={"font-kinda-big"}>Password</p>
|
||||
<input type="password" value={inputPassword} onChange={e => setInputPassword(e.target.value)}
|
||||
placeholder={hint} className="input input-bordered input-sm w-full max-w-xs"
|
||||
placeholder={hint} className="input input-bordered input-sm w-full max-w-xs box-shadow"
|
||||
style={{
|
||||
backgroundColor: backgroundColor
|
||||
}}/>
|
||||
</div>
|
||||
<Button text={"Login"} color={"#e2001a"} width={"25px"} onClick={() => on_login_click()}/>
|
||||
|
||||
<Button text={"Login"} color={"#77932b"} width={100} height={40} onClick={() => on_login_click()}/>
|
||||
</login>
|
||||
</div>
|
||||
// </div>
|
||||
);
|
||||
}
|
||||
@@ -11,7 +11,7 @@ export default function SemesterTile(p)
|
||||
})
|
||||
|
||||
return (
|
||||
<div onClick={(e) => p.onClick(e)} className={"semester-tile"}>
|
||||
<div onClick={(e) => p.onClick(e)} className={"semester-tile box-shadow"}>
|
||||
<p>{p.text}</p>
|
||||
<StatusBar progress={0}/>
|
||||
<div style={{
|
||||
@@ -21,8 +21,8 @@ export default function SemesterTile(p)
|
||||
alignItems: "center",
|
||||
gap: 5
|
||||
}}>
|
||||
<Button icon={deleteItem} width={30} height={30} onClick={p.onButtonDeleteClick}/>
|
||||
<Button icon={editItem} width={30} height={30} onClick={p.onButtonEditClick}/>
|
||||
<Button icon={deleteItem} width={30} height={30} color={"rgba(0, 0, 0, 0)"} onClick={p.onButtonDeleteClick}/>
|
||||
<Button icon={editItem} width={30} height={30} color={"rgba(0, 0, 0, 0)"} onClick={p.onButtonEditClick}/>
|
||||
</div>
|
||||
</div>
|
||||
)
|
||||
|
||||
@@ -11,19 +11,44 @@ import InputForm from "@/components/InputForm";
|
||||
import Login from "@/components/Login";
|
||||
import Test from "@/components/Test";
|
||||
import BasicDateCalendar from "@/components/CalendarSideBar";
|
||||
|
||||
import {randomInt} from "next/dist/shared/lib/bloom-filter/utils";
|
||||
|
||||
|
||||
const inter = Inter({subsets: ['latin']})
|
||||
|
||||
export default function Home(p) {
|
||||
|
||||
|
||||
return (
|
||||
|
||||
|
||||
<div className={"normal-centered"}>
|
||||
<div style={{
|
||||
position: "absolute",
|
||||
width: "100%",
|
||||
height: "100%",
|
||||
overflow: "clip",
|
||||
pointerEvents: "none"
|
||||
}}>
|
||||
<div style={{
|
||||
position: "absolute",
|
||||
transform: "skew(20deg)",
|
||||
width: "100%",
|
||||
height: "100%",
|
||||
zIndex: -10,
|
||||
backgroundColor: "#f2f2f2",
|
||||
borderTopLeftRadius: 400,
|
||||
borderBottomRightRadius: 800,
|
||||
|
||||
}}></div>
|
||||
<div style={{
|
||||
position: "absolute",
|
||||
width: "100%",
|
||||
height: "100%",
|
||||
zIndex: -11,
|
||||
backgroundColor: "#346991",
|
||||
}}></div>
|
||||
</div>
|
||||
<Login/>
|
||||
</div>
|
||||
|
||||
)
|
||||
}
|
||||
@@ -1,5 +1,5 @@
|
||||
import Button from "@/components/Button";
|
||||
import {useEffect, useState} from "react";
|
||||
import React, {useEffect, useState} from "react";
|
||||
import SemesterTile from "@/components/SemesterTile";
|
||||
import InputForm from "@/components/InputForm";
|
||||
import {useRouter} from "next/router";
|
||||
@@ -91,6 +91,32 @@ export default function SemesterOverview(p)
|
||||
|
||||
return (
|
||||
<div className={"semester-overview"}>
|
||||
<div style={{
|
||||
position: "absolute",
|
||||
width: "100%",
|
||||
height: "100%",
|
||||
overflow: "clip",
|
||||
pointerEvents: "none"
|
||||
}}>
|
||||
<div style={{
|
||||
position: "absolute",
|
||||
transform: "skew(20deg)",
|
||||
width: "100%",
|
||||
height: "100%",
|
||||
zIndex: -10,
|
||||
backgroundColor: "#f2f2f2",
|
||||
borderTopLeftRadius: 400,
|
||||
borderBottomRightRadius: 800,
|
||||
|
||||
}}></div>
|
||||
<div style={{
|
||||
position: "absolute",
|
||||
width: "100%",
|
||||
height: "100%",
|
||||
zIndex: -11,
|
||||
backgroundColor: "#346991",
|
||||
}}></div>
|
||||
</div>
|
||||
{
|
||||
entries.map(e => (<SemesterTile text={e.name} onClick={(f) => onClickSemester(e, f)} onButtonDeleteClick={() => {
|
||||
localStorage.setItem("currentsid", e.id)
|
||||
@@ -101,7 +127,7 @@ export default function SemesterOverview(p)
|
||||
funcButtonEdit(e, m);
|
||||
}}/>))
|
||||
}
|
||||
<Button color={"#818181"} text={"+"} width={240} height={160} fontColor={"black"} fontSize={50}
|
||||
<Button color={"#dcdcdc"} text={"+"} width={240} height={160} fontColor={"black"} fontSize={50}
|
||||
onClick={() => onClickNewSemester()}/>
|
||||
<PopUp hint={modalHint} text1={"Abbrechen"} text2={"Löschen"} displayState={modalDisplay}
|
||||
function1={funcButtonAbort} function2={funcButtonDelete}/>
|
||||
|
||||
+109
-113
@@ -8,12 +8,27 @@
|
||||
--background-end-rgb: 255, 255, 255;
|
||||
}
|
||||
|
||||
body {
|
||||
background-color: #f2f2f2;
|
||||
|
||||
}
|
||||
|
||||
.splash {
|
||||
position: absolute;
|
||||
border-radius: 70px;
|
||||
background-color: #c77c0c;
|
||||
|
||||
z-index: -5;
|
||||
|
||||
}
|
||||
|
||||
|
||||
|
||||
/**
|
||||
Page Layouts
|
||||
*/
|
||||
|
||||
.normal-centered
|
||||
{
|
||||
.normal-centered {
|
||||
height: 100vh;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
@@ -21,8 +36,7 @@ Page Layouts
|
||||
align-items: center;
|
||||
}
|
||||
|
||||
.semester-overview
|
||||
{
|
||||
.semester-overview {
|
||||
height: 100vh;
|
||||
display: flex;
|
||||
flex-direction: row;
|
||||
@@ -33,44 +47,42 @@ Page Layouts
|
||||
gap: 10px;
|
||||
}
|
||||
|
||||
body
|
||||
{
|
||||
body {
|
||||
height: 100vh;
|
||||
}
|
||||
|
||||
.box-shadow
|
||||
{
|
||||
box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
|
||||
}
|
||||
|
||||
/*
|
||||
Button
|
||||
*/
|
||||
.round-border
|
||||
{
|
||||
.round-border {
|
||||
border-radius: 10px;
|
||||
border-width: 0;
|
||||
}
|
||||
|
||||
.font-small
|
||||
{
|
||||
.font-small {
|
||||
font-size: 12px;
|
||||
}
|
||||
|
||||
.font-middle
|
||||
{
|
||||
font-size: 16px ;
|
||||
.font-middle {
|
||||
font-size: 16px;
|
||||
}
|
||||
|
||||
.font-big
|
||||
{
|
||||
.font-big {
|
||||
font-size: 22px;
|
||||
}
|
||||
|
||||
.button
|
||||
{
|
||||
.button {
|
||||
background-color: #363636;
|
||||
padding: 5px;
|
||||
color: white;
|
||||
}
|
||||
|
||||
.button:hover
|
||||
{
|
||||
.button:hover {
|
||||
background-color: #585858;
|
||||
}
|
||||
|
||||
@@ -78,16 +90,14 @@ Button
|
||||
Step Progress Bar
|
||||
*/
|
||||
|
||||
.step-container
|
||||
{
|
||||
.step-container {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
align-items: center;
|
||||
max-width: 400px;
|
||||
}
|
||||
|
||||
.steps
|
||||
{
|
||||
.steps {
|
||||
display: flex;
|
||||
flex-direction: row;
|
||||
align-items: center;
|
||||
@@ -97,9 +107,9 @@ Step Progress Bar
|
||||
position: relative;
|
||||
}
|
||||
|
||||
.step
|
||||
{
|
||||
width: 40px; height: 40px;
|
||||
.step {
|
||||
width: 40px;
|
||||
height: 40px;
|
||||
border-radius: 50%;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
@@ -108,29 +118,31 @@ Step Progress Bar
|
||||
font-weight: bold;
|
||||
}
|
||||
|
||||
.steps .not-started
|
||||
{
|
||||
background-image: linear-gradient(#b42121, #b44821);
|
||||
.steps .not-started {
|
||||
/*background-image: linear-gradient(#b42121, #b44821);*/
|
||||
background-color: #77932b;
|
||||
|
||||
}
|
||||
|
||||
.steps .started
|
||||
{
|
||||
background-image: linear-gradient(#c75c0c, #c77c0c);
|
||||
.steps .started {
|
||||
/*background-image: linear-gradient(#c75c0c, #c77c0c);*/
|
||||
background-color: #77932b;
|
||||
}
|
||||
|
||||
.steps .finished
|
||||
{
|
||||
background-image: linear-gradient(#43C20BFF, #0bc27c);
|
||||
|
||||
.steps .finished {
|
||||
/*background-image: linear-gradient(#43C20BFF, #0bc27c);*/
|
||||
background-color: #77932b;
|
||||
}
|
||||
|
||||
.steps .active
|
||||
{
|
||||
border-width: 3px;
|
||||
border-color: #1e2428;
|
||||
|
||||
.steps .active {
|
||||
/*border-width: 2px;*/
|
||||
/*border-color: #1e2428;*/
|
||||
background-color: #346991;
|
||||
}
|
||||
|
||||
.progress-bar
|
||||
{
|
||||
.progress-bar {
|
||||
position: absolute;
|
||||
height: 8px;
|
||||
background-color: #5d606e;
|
||||
@@ -141,7 +153,7 @@ Step Progress Bar
|
||||
weekSelector
|
||||
*/
|
||||
|
||||
.dateElement{
|
||||
.dateElement {
|
||||
display: flex;
|
||||
margin-left: 20px;
|
||||
margin-right: 20px;
|
||||
@@ -160,8 +172,7 @@ weekSelector
|
||||
Popup
|
||||
*/
|
||||
|
||||
.modal-container
|
||||
{
|
||||
.modal-container {
|
||||
z-index: 1;
|
||||
position: fixed;
|
||||
width: 100%;
|
||||
@@ -175,8 +186,7 @@ Popup
|
||||
background-color: rgba(0, 0, 0, 0.3);
|
||||
}
|
||||
|
||||
.modal
|
||||
{
|
||||
.modal {
|
||||
width: 300px;
|
||||
height: 100px;
|
||||
border-radius: 10px;
|
||||
@@ -188,13 +198,11 @@ Popup
|
||||
padding: 5px;
|
||||
}
|
||||
|
||||
.modal p
|
||||
{
|
||||
.modal p {
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
.modal div
|
||||
{
|
||||
.modal div {
|
||||
display: flex;
|
||||
flex-direction: row;
|
||||
width: 100%;
|
||||
@@ -207,37 +215,31 @@ Calender View
|
||||
*/
|
||||
|
||||
|
||||
.calender-container
|
||||
{
|
||||
.calender-container {
|
||||
max-height: 600px;
|
||||
overflow-y: scroll;
|
||||
display: grid;
|
||||
}
|
||||
|
||||
.calender-container::-webkit-scrollbar
|
||||
{
|
||||
.calender-container::-webkit-scrollbar {
|
||||
display: none;
|
||||
}
|
||||
|
||||
.content
|
||||
{
|
||||
.content {
|
||||
grid-area: 1 / 1;
|
||||
}
|
||||
|
||||
.overlay
|
||||
{
|
||||
.overlay {
|
||||
padding: 2px 0 0 0;
|
||||
grid-area: 1 / 1;
|
||||
pointer-events: none;
|
||||
}
|
||||
|
||||
.no-pointer-events
|
||||
{
|
||||
.no-pointer-events {
|
||||
pointer-events: none;
|
||||
}
|
||||
|
||||
.wochen-tag-container
|
||||
{
|
||||
.wochen-tag-container {
|
||||
display: flex;
|
||||
flex-direction: row;
|
||||
justify-content: space-between;
|
||||
@@ -248,8 +250,7 @@ Calender View
|
||||
background-color: #363636;
|
||||
}
|
||||
|
||||
.calender-view
|
||||
{
|
||||
.calender-view {
|
||||
width: 1000px;
|
||||
height: 2400px;
|
||||
background-color: #363636;
|
||||
@@ -262,8 +263,7 @@ Calender View
|
||||
padding: 2px 0 0 0;
|
||||
}
|
||||
|
||||
.calender-view .spalte
|
||||
{
|
||||
.calender-view .spalte {
|
||||
border-radius: 10px;
|
||||
width: 400px;
|
||||
background-color: white;
|
||||
@@ -272,8 +272,7 @@ Calender View
|
||||
grid-template-columns: 100%;
|
||||
}
|
||||
|
||||
.wochen-tag-container .wochen-tag
|
||||
{
|
||||
.wochen-tag-container .wochen-tag {
|
||||
text-align: center;
|
||||
background-color: #f80000;
|
||||
width: 400px;
|
||||
@@ -287,8 +286,7 @@ Calender View
|
||||
grid-row-end: 4;
|
||||
}
|
||||
|
||||
.entry
|
||||
{
|
||||
.entry {
|
||||
border-radius: 10px;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
@@ -302,8 +300,7 @@ Calender View
|
||||
margin-bottom: 1px;
|
||||
}
|
||||
|
||||
.entry .resize-grab
|
||||
{
|
||||
.entry .resize-grab {
|
||||
height: 5px;
|
||||
cursor: ns-resize;
|
||||
width: 100%;
|
||||
@@ -335,7 +332,7 @@ input {
|
||||
}
|
||||
|
||||
.semesterDateLables, .semesterDateInputPair {
|
||||
display:flex;
|
||||
display: flex;
|
||||
flex-direction: row;
|
||||
justify-content: left;
|
||||
}
|
||||
@@ -345,7 +342,7 @@ input {
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
.semesterDateLable{
|
||||
.semesterDateLable {
|
||||
width: 150px;
|
||||
margin-right: 40px;
|
||||
}
|
||||
@@ -384,8 +381,7 @@ th {
|
||||
padding: 0 10px;
|
||||
}
|
||||
|
||||
td
|
||||
{
|
||||
td {
|
||||
padding: 0 10px;
|
||||
}
|
||||
|
||||
@@ -393,72 +389,73 @@ td
|
||||
Login
|
||||
*/
|
||||
|
||||
.login-container
|
||||
{
|
||||
.login-container {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
gap: 10px;
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
justify-content: space-evenly;
|
||||
/*gap: 10px;*/
|
||||
border-radius: 10px;
|
||||
background-color: #ffffff;
|
||||
width: 375px;
|
||||
height: 350px;
|
||||
}
|
||||
|
||||
.input-bordered
|
||||
{
|
||||
border: 1px solid #000000;
|
||||
.input-bordered {
|
||||
border: none;
|
||||
border-radius: 5px;
|
||||
}
|
||||
|
||||
.input
|
||||
{
|
||||
.input {
|
||||
padding: 5px;
|
||||
border: none;
|
||||
background-color: #e9e9e9;
|
||||
border-radius: 5px;
|
||||
font-family: Arial, serif;
|
||||
font-size: 16px;
|
||||
}
|
||||
|
||||
.border{
|
||||
width: 375px;
|
||||
height: 350px;
|
||||
background-color: #ffffff;
|
||||
border-radius: 5px;
|
||||
border-width: 2px;
|
||||
border-color: #1e2428;
|
||||
/*gap: 10px;*/
|
||||
.input:focus
|
||||
{
|
||||
outline: none;
|
||||
}
|
||||
|
||||
|
||||
.placement {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
align-items: flex-start;
|
||||
justify-content: left;
|
||||
}
|
||||
.font-kinda-big{
|
||||
|
||||
.font-kinda-big {
|
||||
font-size: 18px;
|
||||
color: #777777;
|
||||
font-weight: 500;
|
||||
}
|
||||
|
||||
.font-big-fat {
|
||||
font-size: 22px;
|
||||
font-weight: bold;
|
||||
}
|
||||
|
||||
.input-sm {
|
||||
height: 2rem/* 32px */;
|
||||
padding-left: 0.75rem/* 12px */;
|
||||
padding-right: 0.75rem/* 12px */;
|
||||
font-size: 0.875rem/* 14px */;
|
||||
line-height: 2rem/* 32px */;
|
||||
}
|
||||
height: 2rem /* 32px */;
|
||||
padding-left: 0.75rem /* 12px */;
|
||||
padding-right: 0.75rem /* 12px */;
|
||||
font-size: 0.875rem /* 14px */;
|
||||
line-height: 2rem /* 32px */;
|
||||
}
|
||||
|
||||
/**
|
||||
SemesterTile
|
||||
*/
|
||||
|
||||
.semester-tile
|
||||
{
|
||||
background-color: #797979;
|
||||
.semester-tile {
|
||||
background-color: #ffffff;
|
||||
width: 240px;
|
||||
height: 160px;
|
||||
color: white;
|
||||
color: black;
|
||||
border-radius: 10px;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
@@ -468,17 +465,16 @@ SemesterTile
|
||||
gap: 10px;
|
||||
}
|
||||
|
||||
.semester-tile:hover
|
||||
{
|
||||
background-color: #5d606e;
|
||||
.semester-tile:hover {
|
||||
background-color: #e1e1e1;
|
||||
}
|
||||
|
||||
.semester-tile p
|
||||
{
|
||||
.semester-tile p {
|
||||
pointer-events: none;
|
||||
font-weight: bold;
|
||||
font-size: 23px;
|
||||
}
|
||||
|
||||
.semester-tile .step-container
|
||||
{
|
||||
.semester-tile .step-container {
|
||||
pointer-events: none;
|
||||
}
|
||||
|
||||
Binary file not shown.
@@ -126768,3 +126768,305 @@ No data is available [2000-214]
|
||||
2023-05-23 18:39:49 jdbc[3]: exception
|
||||
org.h2.jdbc.JdbcSQLNonTransientException: Keine Daten verfügbar
|
||||
No data is available [2000-214]
|
||||
2023-05-23 18:41:58 jdbc[3]: exception
|
||||
org.h2.jdbc.JdbcSQLNonTransientException: Keine Daten verfügbar
|
||||
No data is available [2000-214]
|
||||
2023-05-23 18:42:03 jdbc[3]: exception
|
||||
org.h2.jdbc.JdbcSQLNonTransientException: Keine Daten verfügbar
|
||||
No data is available [2000-214]
|
||||
2023-05-23 18:42:03 jdbc[3]: exception
|
||||
org.h2.jdbc.JdbcSQLNonTransientException: Keine Daten verfügbar
|
||||
No data is available [2000-214]
|
||||
2023-05-23 18:42:05 jdbc[3]: exception
|
||||
org.h2.jdbc.JdbcSQLNonTransientException: Keine Daten verfügbar
|
||||
No data is available [2000-214]
|
||||
2023-05-23 18:42:06 jdbc[3]: exception
|
||||
org.h2.jdbc.JdbcSQLNonTransientException: Keine Daten verfügbar
|
||||
No data is available [2000-214]
|
||||
2023-05-23 18:42:06 jdbc[3]: exception
|
||||
org.h2.jdbc.JdbcSQLNonTransientException: Keine Daten verfügbar
|
||||
No data is available [2000-214]
|
||||
2023-05-23 18:42:06 jdbc[3]: exception
|
||||
org.h2.jdbc.JdbcSQLNonTransientException: Keine Daten verfügbar
|
||||
No data is available [2000-214]
|
||||
2023-05-23 18:42:07 jdbc[3]: exception
|
||||
org.h2.jdbc.JdbcSQLNonTransientException: Keine Daten verfügbar
|
||||
No data is available [2000-214]
|
||||
2023-05-23 18:42:07 jdbc[3]: exception
|
||||
org.h2.jdbc.JdbcSQLNonTransientException: Keine Daten verfügbar
|
||||
No data is available [2000-214]
|
||||
2023-05-23 18:42:08 jdbc[3]: exception
|
||||
org.h2.jdbc.JdbcSQLNonTransientException: Keine Daten verfügbar
|
||||
No data is available [2000-214]
|
||||
2023-05-23 18:42:25 jdbc[3]: exception
|
||||
org.h2.jdbc.JdbcSQLNonTransientException: Keine Daten verfügbar
|
||||
No data is available [2000-214]
|
||||
2023-05-23 18:42:25 jdbc[3]: exception
|
||||
org.h2.jdbc.JdbcSQLNonTransientException: Keine Daten verfügbar
|
||||
No data is available [2000-214]
|
||||
2023-05-23 18:42:31 jdbc[3]: exception
|
||||
org.h2.jdbc.JdbcSQLNonTransientException: Keine Daten verfügbar
|
||||
No data is available [2000-214]
|
||||
2023-05-23 18:42:32 jdbc[3]: exception
|
||||
org.h2.jdbc.JdbcSQLNonTransientException: Keine Daten verfügbar
|
||||
No data is available [2000-214]
|
||||
2023-05-23 18:42:32 jdbc[3]: exception
|
||||
org.h2.jdbc.JdbcSQLNonTransientException: Keine Daten verfügbar
|
||||
No data is available [2000-214]
|
||||
2023-05-23 18:42:34 jdbc[3]: exception
|
||||
org.h2.jdbc.JdbcSQLNonTransientException: Keine Daten verfügbar
|
||||
No data is available [2000-214]
|
||||
2023-05-23 18:42:34 jdbc[3]: exception
|
||||
org.h2.jdbc.JdbcSQLNonTransientException: Keine Daten verfügbar
|
||||
No data is available [2000-214]
|
||||
2023-05-23 18:42:34 jdbc[3]: exception
|
||||
org.h2.jdbc.JdbcSQLNonTransientException: Keine Daten verfügbar
|
||||
No data is available [2000-214]
|
||||
2023-05-23 18:42:35 jdbc[3]: exception
|
||||
org.h2.jdbc.JdbcSQLNonTransientException: Keine Daten verfügbar
|
||||
No data is available [2000-214]
|
||||
2023-05-23 18:45:47 jdbc[3]: exception
|
||||
org.h2.jdbc.JdbcSQLNonTransientException: Keine Daten verfügbar
|
||||
No data is available [2000-214]
|
||||
2023-05-23 18:54:54 jdbc[3]: exception
|
||||
org.h2.jdbc.JdbcSQLNonTransientException: Keine Daten verfügbar
|
||||
No data is available [2000-214]
|
||||
2023-05-23 18:54:56 jdbc[3]: exception
|
||||
org.h2.jdbc.JdbcSQLNonTransientException: Keine Daten verfügbar
|
||||
No data is available [2000-214]
|
||||
2023-05-23 18:54:56 jdbc[3]: exception
|
||||
org.h2.jdbc.JdbcSQLNonTransientException: Keine Daten verfügbar
|
||||
No data is available [2000-214]
|
||||
2023-05-23 18:55:14 jdbc[3]: exception
|
||||
org.h2.jdbc.JdbcSQLNonTransientException: Keine Daten verfügbar
|
||||
No data is available [2000-214]
|
||||
2023-05-23 18:58:19 jdbc[3]: exception
|
||||
org.h2.jdbc.JdbcSQLNonTransientException: Keine Daten verfügbar
|
||||
No data is available [2000-214]
|
||||
2023-05-23 18:58:20 jdbc[3]: exception
|
||||
org.h2.jdbc.JdbcSQLNonTransientException: Keine Daten verfügbar
|
||||
No data is available [2000-214]
|
||||
2023-05-23 18:58:20 jdbc[3]: exception
|
||||
org.h2.jdbc.JdbcSQLNonTransientException: Keine Daten verfügbar
|
||||
No data is available [2000-214]
|
||||
2023-05-23 18:58:26 jdbc[3]: exception
|
||||
org.h2.jdbc.JdbcSQLNonTransientException: Keine Daten verfügbar
|
||||
No data is available [2000-214]
|
||||
2023-05-23 18:58:29 jdbc[3]: exception
|
||||
org.h2.jdbc.JdbcSQLNonTransientException: Keine Daten verfügbar
|
||||
No data is available [2000-214]
|
||||
2023-05-23 18:58:29 jdbc[3]: exception
|
||||
org.h2.jdbc.JdbcSQLNonTransientException: Allgemeiner Fehler: "java.lang.NullPointerException: Cannot invoke ""org.h2.result.ResultInterface.getRowId()"" because ""this.result"" is null"
|
||||
General error: "java.lang.NullPointerException: Cannot invoke ""org.h2.result.ResultInterface.getRowId()"" because ""this.result"" is null" [50000-214]
|
||||
at org.h2.message.DbException.getJdbcSQLException(DbException.java:554)
|
||||
at org.h2.message.DbException.getJdbcSQLException(DbException.java:477)
|
||||
at org.h2.message.DbException.get(DbException.java:212)
|
||||
at org.h2.message.DbException.convert(DbException.java:395)
|
||||
at org.h2.message.DbException.toSQLException(DbException.java:367)
|
||||
at org.h2.message.TraceObject.logAndConvert(TraceObject.java:365)
|
||||
at org.h2.jdbc.JdbcResultSet.getInt(JdbcResultSet.java:339)
|
||||
at com.example.backend.anwprj.DataBaseHandler.resultSetToUser(DataBaseHandler.java:546)
|
||||
at com.example.backend.anwprj.DataBaseHandler.getAllUsers(DataBaseHandler.java:482)
|
||||
at com.example.backend.anwprj.controller.UserController.getAllUsers(UserController.java:163)
|
||||
at java.base/jdk.internal.reflect.DirectMethodHandleAccessor.invoke(DirectMethodHandleAccessor.java:104)
|
||||
at java.base/java.lang.reflect.Method.invoke(Method.java:578)
|
||||
at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:207)
|
||||
at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:152)
|
||||
at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:118)
|
||||
at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:884)
|
||||
at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:797)
|
||||
at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87)
|
||||
at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1081)
|
||||
at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:974)
|
||||
at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1011)
|
||||
at org.springframework.web.servlet.FrameworkServlet.doGet(FrameworkServlet.java:903)
|
||||
at jakarta.servlet.http.HttpServlet.service(HttpServlet.java:564)
|
||||
at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:885)
|
||||
at jakarta.servlet.http.HttpServlet.service(HttpServlet.java:658)
|
||||
at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:205)
|
||||
at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:149)
|
||||
at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:51)
|
||||
at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:174)
|
||||
at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:149)
|
||||
at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100)
|
||||
at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116)
|
||||
at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:174)
|
||||
at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:149)
|
||||
at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93)
|
||||
at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116)
|
||||
at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:174)
|
||||
at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:149)
|
||||
at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201)
|
||||
at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116)
|
||||
at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:174)
|
||||
at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:149)
|
||||
at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:166)
|
||||
at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:90)
|
||||
at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:482)
|
||||
at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:115)
|
||||
at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:93)
|
||||
at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:74)
|
||||
at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:341)
|
||||
at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:390)
|
||||
at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:63)
|
||||
at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:894)
|
||||
at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1741)
|
||||
at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:52)
|
||||
at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1191)
|
||||
at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659)
|
||||
at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61)
|
||||
at java.base/java.lang.Thread.run(Thread.java:1623)
|
||||
Caused by: java.lang.NullPointerException: Cannot invoke "org.h2.result.ResultInterface.getRowId()" because "this.result" is null
|
||||
at org.h2.jdbc.JdbcResultSet.isOnValidRow(JdbcResultSet.java:3547)
|
||||
at org.h2.jdbc.JdbcResultSet.checkOnValidRow(JdbcResultSet.java:3551)
|
||||
at org.h2.jdbc.JdbcResultSet.getInternal(JdbcResultSet.java:3570)
|
||||
at org.h2.jdbc.JdbcResultSet.getIntInternal(JdbcResultSet.java:344)
|
||||
at org.h2.jdbc.JdbcResultSet.getInt(JdbcResultSet.java:337)
|
||||
... 51 more
|
||||
2023-05-23 18:58:30 jdbc[3]: exception
|
||||
org.h2.jdbc.JdbcSQLNonTransientException: Keine Daten verfügbar
|
||||
No data is available [2000-214]
|
||||
2023-05-23 18:58:31 jdbc[3]: exception
|
||||
org.h2.jdbc.JdbcSQLNonTransientException: Keine Daten verfügbar
|
||||
No data is available [2000-214]
|
||||
2023-05-23 18:58:31 jdbc[3]: exception
|
||||
org.h2.jdbc.JdbcSQLNonTransientException: Keine Daten verfügbar
|
||||
No data is available [2000-214]
|
||||
2023-05-23 18:58:31 jdbc[3]: exception
|
||||
org.h2.jdbc.JdbcSQLNonTransientException: Keine Daten verfügbar
|
||||
No data is available [2000-214]
|
||||
2023-05-23 18:58:32 jdbc[3]: exception
|
||||
org.h2.jdbc.JdbcSQLNonTransientException: Keine Daten verfügbar
|
||||
No data is available [2000-214]
|
||||
2023-05-23 18:58:32 jdbc[3]: exception
|
||||
org.h2.jdbc.JdbcSQLNonTransientException: Keine Daten verfügbar
|
||||
No data is available [2000-214]
|
||||
2023-05-23 18:58:33 jdbc[3]: exception
|
||||
org.h2.jdbc.JdbcSQLNonTransientException: Keine Daten verfügbar
|
||||
No data is available [2000-214]
|
||||
2023-05-23 23:20:04 jdbc[3]: exception
|
||||
org.h2.jdbc.JdbcSQLNonTransientException: Keine Daten verfügbar
|
||||
No data is available [2000-214]
|
||||
2023-05-23 23:20:05 jdbc[3]: exception
|
||||
org.h2.jdbc.JdbcSQLNonTransientException: Keine Daten verfügbar
|
||||
No data is available [2000-214]
|
||||
2023-05-23 23:20:12 jdbc[3]: exception
|
||||
org.h2.jdbc.JdbcSQLNonTransientException: Keine Daten verfügbar
|
||||
No data is available [2000-214]
|
||||
2023-05-23 23:20:12 jdbc[3]: exception
|
||||
org.h2.jdbc.JdbcSQLNonTransientException: Keine Daten verfügbar
|
||||
No data is available [2000-214]
|
||||
2023-05-23 23:27:35 jdbc[3]: exception
|
||||
org.h2.jdbc.JdbcSQLNonTransientException: Keine Daten verfügbar
|
||||
No data is available [2000-214]
|
||||
2023-05-23 23:27:35 jdbc[3]: exception
|
||||
org.h2.jdbc.JdbcSQLNonTransientException: Keine Daten verfügbar
|
||||
No data is available [2000-214]
|
||||
2023-05-23 23:39:32 jdbc[3]: exception
|
||||
org.h2.jdbc.JdbcSQLNonTransientException: Keine Daten verfügbar
|
||||
No data is available [2000-214]
|
||||
2023-05-23 23:39:32 jdbc[3]: exception
|
||||
org.h2.jdbc.JdbcSQLNonTransientException: Keine Daten verfügbar
|
||||
No data is available [2000-214]
|
||||
2023-05-24 00:37:52 jdbc[3]: exception
|
||||
org.h2.jdbc.JdbcSQLNonTransientException: Keine Daten verfügbar
|
||||
No data is available [2000-214]
|
||||
2023-05-24 00:37:52 jdbc[3]: exception
|
||||
org.h2.jdbc.JdbcSQLNonTransientException: Keine Daten verfügbar
|
||||
No data is available [2000-214]
|
||||
2023-05-24 00:37:53 jdbc[3]: exception
|
||||
org.h2.jdbc.JdbcSQLNonTransientException: Keine Daten verfügbar
|
||||
No data is available [2000-214]
|
||||
2023-05-24 00:37:53 jdbc[3]: exception
|
||||
org.h2.jdbc.JdbcSQLNonTransientException: Keine Daten verfügbar
|
||||
No data is available [2000-214]
|
||||
2023-05-24 00:37:55 jdbc[3]: exception
|
||||
org.h2.jdbc.JdbcSQLNonTransientException: Keine Daten verfügbar
|
||||
No data is available [2000-214]
|
||||
2023-05-24 00:37:55 jdbc[3]: exception
|
||||
org.h2.jdbc.JdbcSQLNonTransientException: Keine Daten verfügbar
|
||||
No data is available [2000-214]
|
||||
2023-05-24 00:37:57 jdbc[3]: exception
|
||||
org.h2.jdbc.JdbcSQLNonTransientException: Keine Daten verfügbar
|
||||
No data is available [2000-214]
|
||||
2023-05-24 00:37:57 jdbc[3]: exception
|
||||
org.h2.jdbc.JdbcSQLNonTransientException: Keine Daten verfügbar
|
||||
No data is available [2000-214]
|
||||
2023-05-24 00:39:00 jdbc[3]: exception
|
||||
org.h2.jdbc.JdbcSQLNonTransientException: Keine Daten verfügbar
|
||||
No data is available [2000-214]
|
||||
2023-05-24 00:39:01 jdbc[3]: exception
|
||||
org.h2.jdbc.JdbcSQLNonTransientException: Keine Daten verfügbar
|
||||
No data is available [2000-214]
|
||||
2023-05-24 00:39:21 jdbc[3]: exception
|
||||
org.h2.jdbc.JdbcSQLNonTransientException: Keine Daten verfügbar
|
||||
No data is available [2000-214]
|
||||
2023-05-24 00:39:26 jdbc[3]: exception
|
||||
org.h2.jdbc.JdbcSQLNonTransientException: Keine Daten verfügbar
|
||||
No data is available [2000-214]
|
||||
2023-05-24 00:39:29 jdbc[3]: exception
|
||||
org.h2.jdbc.JdbcSQLNonTransientException: Keine Daten verfügbar
|
||||
No data is available [2000-214]
|
||||
2023-05-24 00:39:45 jdbc[3]: exception
|
||||
org.h2.jdbc.JdbcSQLNonTransientException: Keine Daten verfügbar
|
||||
No data is available [2000-214]
|
||||
2023-05-24 00:39:45 jdbc[3]: exception
|
||||
org.h2.jdbc.JdbcSQLNonTransientException: Keine Daten verfügbar
|
||||
No data is available [2000-214]
|
||||
2023-05-24 00:39:47 jdbc[3]: exception
|
||||
org.h2.jdbc.JdbcSQLNonTransientException: Keine Daten verfügbar
|
||||
No data is available [2000-214]
|
||||
2023-05-24 00:39:47 jdbc[3]: exception
|
||||
org.h2.jdbc.JdbcSQLNonTransientException: Keine Daten verfügbar
|
||||
No data is available [2000-214]
|
||||
2023-05-24 00:39:51 jdbc[3]: exception
|
||||
org.h2.jdbc.JdbcSQLNonTransientException: Keine Daten verfügbar
|
||||
No data is available [2000-214]
|
||||
2023-05-24 00:39:51 jdbc[3]: exception
|
||||
org.h2.jdbc.JdbcSQLNonTransientException: Keine Daten verfügbar
|
||||
No data is available [2000-214]
|
||||
2023-05-24 00:46:07 jdbc[3]: exception
|
||||
org.h2.jdbc.JdbcSQLNonTransientException: Keine Daten verfügbar
|
||||
No data is available [2000-214]
|
||||
2023-05-24 00:47:35 jdbc[3]: exception
|
||||
org.h2.jdbc.JdbcSQLNonTransientException: Keine Daten verfügbar
|
||||
No data is available [2000-214]
|
||||
2023-05-24 00:47:35 jdbc[3]: exception
|
||||
org.h2.jdbc.JdbcSQLNonTransientException: Keine Daten verfügbar
|
||||
No data is available [2000-214]
|
||||
2023-05-24 00:48:20 jdbc[3]: exception
|
||||
org.h2.jdbc.JdbcSQLNonTransientException: Keine Daten verfügbar
|
||||
No data is available [2000-214]
|
||||
2023-05-24 00:48:20 jdbc[3]: exception
|
||||
org.h2.jdbc.JdbcSQLNonTransientException: Keine Daten verfügbar
|
||||
No data is available [2000-214]
|
||||
2023-05-24 00:48:30 jdbc[3]: exception
|
||||
org.h2.jdbc.JdbcSQLNonTransientException: Keine Daten verfügbar
|
||||
No data is available [2000-214]
|
||||
2023-05-24 00:48:30 jdbc[3]: exception
|
||||
org.h2.jdbc.JdbcSQLNonTransientException: Keine Daten verfügbar
|
||||
No data is available [2000-214]
|
||||
2023-05-24 00:48:32 jdbc[3]: exception
|
||||
org.h2.jdbc.JdbcSQLNonTransientException: Keine Daten verfügbar
|
||||
No data is available [2000-214]
|
||||
2023-05-24 00:48:32 jdbc[3]: exception
|
||||
org.h2.jdbc.JdbcSQLNonTransientException: Keine Daten verfügbar
|
||||
No data is available [2000-214]
|
||||
2023-05-24 00:48:33 jdbc[3]: exception
|
||||
org.h2.jdbc.JdbcSQLNonTransientException: Keine Daten verfügbar
|
||||
No data is available [2000-214]
|
||||
2023-05-24 00:48:33 jdbc[3]: exception
|
||||
org.h2.jdbc.JdbcSQLNonTransientException: Keine Daten verfügbar
|
||||
No data is available [2000-214]
|
||||
2023-05-24 00:48:34 jdbc[3]: exception
|
||||
org.h2.jdbc.JdbcSQLNonTransientException: Keine Daten verfügbar
|
||||
No data is available [2000-214]
|
||||
2023-05-24 00:48:34 jdbc[3]: exception
|
||||
org.h2.jdbc.JdbcSQLNonTransientException: Keine Daten verfügbar
|
||||
No data is available [2000-214]
|
||||
2023-05-24 00:48:35 jdbc[3]: exception
|
||||
org.h2.jdbc.JdbcSQLNonTransientException: Keine Daten verfügbar
|
||||
No data is available [2000-214]
|
||||
2023-05-24 00:48:35 jdbc[3]: exception
|
||||
org.h2.jdbc.JdbcSQLNonTransientException: Keine Daten verfügbar
|
||||
No data is available [2000-214]
|
||||
|
||||
Reference in New Issue
Block a user