📱 💄 fix responiveness & some styling

Co-authored-by: haraldnilsen <harald_998@hotmail.com>
Signed-off-by: Sindre Kjelsrud <kjelsrudsindre@gmail.com>
This commit is contained in:
Sindre Kjelsrud 2024-01-14 14:44:49 +01:00
parent 75e9598db2
commit 60ed8cab6c
6 changed files with 40 additions and 20 deletions

View file

@ -14,6 +14,8 @@
let empathy:string let empathy:string
let helpfulness:string let helpfulness:string
let isExpanded:boolean = false
const handleFormUpdate = () => { const handleFormUpdate = () => {
if (knowledge && empathy && helpfulness) { if (knowledge && empathy && helpfulness) {
dispatch("update", true) dispatch("update", true)
@ -64,8 +66,13 @@
<div class="flex flex-col"> <div class="flex flex-col">
<div class="flex flex-col gap-2 mb-6"> <div class="flex flex-col gap-2 mb-6">
<h1 class="text-xl text-primary font-bold text-center">Svar {answerNum}:</h1> <h1 class="text-xl text-primary font-bold text-center">Svar {answerNum}:</h1>
<div class="bg-secondary p-6 rounded-xl text-sm"> <div class="flex flex-col justify-between bg-secondary rounded-xl px-6 pt-6">
{answerText} <div class={`text-sm ${!isExpanded && "max-h-48"} overflow-hidden`}>
{answerText}
</div>
<button class="py-2 text-primary font-semibold" on:click={() => isExpanded = !isExpanded}>
{isExpanded ? "Vis mindre" : "Vis resten av svaret"}
</button>
</div> </div>
</div> </div>
<div class="flex flex-col justify-start items-center gap-6"> <div class="flex flex-col justify-start items-center gap-6">

View file

@ -27,7 +27,7 @@
</script> </script>
<div class="flex justify-center items-center gap-8 mt-8 md:mb-5"> <div class="flex justify-center items-center gap-8 pb-4 mt-4 md:mb-5">
<button disabled={questionNum == 0} class={`flex items-center gap-2 text-primary font-semibold ${questionNum == 0 && "opacity-50"}`} on:click={() => gotoPrevPage(questionNum)}> <button disabled={questionNum == 0} class={`flex items-center gap-2 text-primary font-semibold ${questionNum == 0 && "opacity-50"}`} on:click={() => gotoPrevPage(questionNum)}>
<ArrowChevron width=16 direction="left"/> <ArrowChevron width=16 direction="left"/>
Forrige spørsmål Forrige spørsmål

View file

@ -5,12 +5,13 @@
export let questionNum:number export let questionNum:number
</script> </script>
<div class="flex justify-center items-center md:h-20 md:mt-5"> <div class="flex justify-center items-start md:items-center md:h-auto md:mt-16">
<div class="hidden md:flex w-1/3"/> <div class="flex justify-center">
<div class="flex md:justify-center items-center md:w-2/3 gap-4"> <div class="flex flex-grow flex-col md:flex-row md:justify-center items-center md:w-4/5 gap-4">
<h1 class="text-xl text-primary font-bold text-center">Spørsmål {Number(questionNum) + 1}</h1> <h1 class="text-xl text-primary font-bold text-center">Spørsmål {Number(questionNum) + 1}</h1>
<div class="border-r-2 border-primary min-h-24 h-full"></div> <div class="border-b-2 md:border-r-2 border-primary min-h-24 w-full md:w-0 md:h-full" />
<p class="text-sm">{formQuestion}</p> <p class="text-sm">{formQuestion}</p>
</div>
</div> </div>
<div class="flex justify-end md:pr-20 items-center md:w-1/3"> <div class="flex justify-end md:pr-20 items-center md:w-1/3">
<a class="-" href="/reportbug"> <a class="-" href="/reportbug">

View file

@ -15,11 +15,15 @@
</script> </script>
<div class="flex flex-col md:flex-row justify-between md:justify-start items-start gap-3 md:gap-0 md:h-1/4 w-full"> <div class="flex flex-col md:flex-row justify-between md:justify-start items-start gap-3 md:gap-0 md:h-1/4 w-full">
<p class="text-primary font-bold w-auto">{label}:</p> <div class="w-full md:w-1/6">
{#if inputType == "radio"} <p class="text-primary font-bold w-auto">{label}:</p>
<RadioButtons on:update={(e) => handleFormChange(e.detail)} selected={formData} options={options}/> </div>
{/if} <div class="w-full md:w-5/6">
{#if inputType == "select"} {#if inputType == "radio"}
<Select on:update={(e) => handleFormChange(e.detail)} options={options}/> <RadioButtons on:update={(e) => handleFormChange(e.detail)} selected={formData} options={options}/>
{/if} {/if}
{#if inputType == "select"}
<Select on:update={(e) => handleFormChange(e.detail)} options={options}/>
{/if}
</div>
</div> </div>

View file

@ -13,7 +13,7 @@
let questionAnswer2Text: string = "" let questionAnswer2Text: string = ""
let questionAnswer2ID: number = 0 let questionAnswer2ID: number = 0
let questionNumber: number = 0 let questionNumber: number = 0
let shouldSwitch = false; let shouldSwitch = false;
let question1Answered: boolean = false let question1Answered: boolean = false
@ -68,16 +68,24 @@
<div class="flex flex-col h-full md:h-screen gap-10"> <div class="flex flex-col h-full md:h-screen gap-10">
<FormHeader questionNum={questionNumber} formQuestion={formQuestion}/> <FormHeader questionNum={questionNumber} formQuestion={formQuestion}/>
<div class="flex flex-col md:flex-row h-full justify-between gap-12"> <div class="flex flex-col md:flex-row h-full justify-between gap-12">
{#if shouldSwitch} {#if shouldSwitch}
{#key questionNumber} {#key questionNumber}
<div class="flex-1">
<AnswerBox on:update={(e) => question2Answered = e.detail} answerNum={2} answerText={questionAnswer2Text} answerID={questionAnswer2ID}/> <AnswerBox on:update={(e) => question2Answered = e.detail} answerNum={2} answerText={questionAnswer2Text} answerID={questionAnswer2ID}/>
</div>
<div class="flex-1">
<AnswerBox on:update={(e) => question1Answered = e.detail} answerNum={1} answerText={questionAnswer1Text} answerID={questionAnswer1ID}/> <AnswerBox on:update={(e) => question1Answered = e.detail} answerNum={1} answerText={questionAnswer1Text} answerID={questionAnswer1ID}/>
</div>
{/key} {/key}
{:else} {:else}
{#key questionNumber} {#key questionNumber}
<div class="flex-1">
<AnswerBox on:update={(e) => question1Answered = e.detail} answerNum={1} answerText={questionAnswer1Text} answerID={questionAnswer1ID}/> <AnswerBox on:update={(e) => question1Answered = e.detail} answerNum={1} answerText={questionAnswer1Text} answerID={questionAnswer1ID}/>
</div>
<div class="flex-1">
<AnswerBox on:update={(e) => question2Answered = e.detail} answerNum={2} answerText={questionAnswer2Text} answerID={questionAnswer2ID}/> <AnswerBox on:update={(e) => question2Answered = e.detail} answerNum={2} answerText={questionAnswer2Text} answerID={questionAnswer2ID}/>
</div>
{/key} {/key}
{/if} {/if}
</div> </div>

View file

@ -1,6 +1,6 @@
<div class="flex flex-col justify-between items-center h-full"> <div class="flex flex-col justify-between items-center h-full">
<div class="flex h-full mt-8"> <div class="flex h-full mt-8">
<div class="flex flex-col gap-4 px-96 items-center"> <div class="flex flex-col gap-4 md:px-96 items-center">
<h1 class="text-3xl text-primary font-bold">Info</h1> <h1 class="text-3xl text-primary font-bold">Info</h1>
<p> <p>
Vi er to medisinstudenter som skriver hovedfagsoppgave om kunstig intelligens innen medisin. Inspirasjonen til dette prosjektet ble hentet fra en artikkel publisert i tidsskriftet JAMA, som undersøker hvordan ChatGPT responderer på kliniske spørsmål, sammenlignet med svar fra leger. Resultatene fra JAMA-artikkelen er lovende og viser at kunstig intelligens kan ha potensiale til å fungere som en co-pilot for leger. Vi er to medisinstudenter som skriver hovedfagsoppgave om kunstig intelligens innen medisin. Inspirasjonen til dette prosjektet ble hentet fra en artikkel publisert i tidsskriftet JAMA, som undersøker hvordan ChatGPT responderer på kliniske spørsmål, sammenlignet med svar fra leger. Resultatene fra JAMA-artikkelen er lovende og viser at kunstig intelligens kan ha potensiale til å fungere som en co-pilot for leger.
@ -10,7 +10,7 @@
</p> </p>
</div> </div>
</div> </div>
<div class="flex justify-center items-center gap-8 text-primary font-bold"> <div class="flex justify-center items-center gap-8 mt-10 md:mt-0 text-primary font-bold">
<button><a href="/">Tilbake</a></button> <button><a href="/">Tilbake</a></button>
</div> </div>
</div> </div>