2023-09-30 16:16:20 +00:00
|
|
|
import { For, Show, createSignal, onMount } from "solid-js";
|
2023-09-21 21:06:31 +00:00
|
|
|
import { Search } from "../certs/Search";
|
|
|
|
import { Person } from "../types/Person";
|
2023-09-26 21:13:30 +00:00
|
|
|
import { FilledCard } from "../components/FilledCard";
|
|
|
|
import { LinkIcon } from "../icons/LinkIcon";
|
|
|
|
import { ClassroomUserCreation } from "./ClassroomUserCreation";
|
2023-09-30 16:16:20 +00:00
|
|
|
import { ClassroomRegistrationUser } from "../types/ClassroomRegistrationUser";
|
2023-09-26 21:13:30 +00:00
|
|
|
|
|
|
|
type TabType = "Vinculate" | "Create";
|
2023-09-21 21:06:31 +00:00
|
|
|
|
|
|
|
export function OnlineClassroom() {
|
|
|
|
const [person, setPerson] = createSignal<Person | null>(null);
|
|
|
|
|
|
|
|
return (
|
|
|
|
<div class="grid grid-cols-[16rem_25rem_1fr]">
|
|
|
|
<Search setPerson={setPerson} />
|
2023-09-21 22:07:18 +00:00
|
|
|
<div>
|
2023-09-26 21:13:30 +00:00
|
|
|
|
2023-09-30 16:16:20 +00:00
|
|
|
<Show when={person() !== null && !person()!.person_classroom_id}>
|
|
|
|
<ClassroomUser person={person()!} />
|
|
|
|
</Show>
|
2023-09-26 21:13:30 +00:00
|
|
|
|
2023-09-21 22:07:18 +00:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2023-09-22 17:03:25 +00:00
|
|
|
|
2023-09-21 21:06:31 +00:00
|
|
|
|
2023-09-26 21:13:30 +00:00
|
|
|
function ClassroomUser(props: {person: Person}) {
|
|
|
|
const [active, setActive] = createSignal<TabType>("Vinculate");
|
|
|
|
|
|
|
|
return (
|
|
|
|
<div>
|
|
|
|
<FilledCard class="border border-c-outline overflow-hidden">
|
|
|
|
<h2 class="p-3 font-bold text-xl">
|
|
|
|
Persona no vinculada:
|
|
|
|
</h2>
|
|
|
|
<ClassroomTabs active={active()} setActive={setActive} />
|
|
|
|
|
|
|
|
<div class="bg-c-surface">
|
|
|
|
<Show when={active() === "Vinculate"}>
|
2023-09-30 16:16:20 +00:00
|
|
|
<ClassroomVinculation
|
|
|
|
person_surname={`${props.person.person_paternal_surname} ${props.person.person_maternal_surname}`}
|
|
|
|
/>
|
2023-09-26 21:13:30 +00:00
|
|
|
</Show>
|
|
|
|
<Show when={active() === "Create"}>
|
|
|
|
<ClassroomUserCreation />
|
|
|
|
</Show>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
</FilledCard>
|
|
|
|
</div>
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2023-09-30 16:16:20 +00:00
|
|
|
function ClassroomVinculation(props: {person_surname: string}) {
|
|
|
|
const [classroomUsers, setClassroomUsers] = createSignal<ClassroomRegistrationUser[]>([]);
|
|
|
|
|
|
|
|
const loadUsers = async() => {
|
|
|
|
const response = await fetch(`${import.meta.env.VITE_BACKEND_URL}/api/classroom/users/${encodeURIComponent(props.person_surname)}`);
|
|
|
|
const json = await response.json();
|
|
|
|
|
|
|
|
if (response.ok) {
|
|
|
|
setClassroomUsers(json);
|
|
|
|
} else {
|
|
|
|
console.error("Error loading users", json);
|
|
|
|
}
|
|
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
onMount(loadUsers);
|
|
|
|
|
2023-09-21 21:06:31 +00:00
|
|
|
return (
|
|
|
|
<div>
|
2023-09-26 21:13:30 +00:00
|
|
|
<p class="py-2 px-4">
|
|
|
|
Vincule un usuario existente:
|
|
|
|
</p>
|
2023-09-30 16:16:20 +00:00
|
|
|
<For each={classroomUsers()}>
|
|
|
|
{(_) => <ClassroomSingleUser />}
|
|
|
|
</For>
|
2023-09-26 21:13:30 +00:00
|
|
|
</div>
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
function ClassroomSingleUser() {
|
|
|
|
return (
|
|
|
|
<div
|
|
|
|
class="hover:bg-c-surface-variant hover:text-c-on-surface-variant transition-colors
|
|
|
|
grid grid-cols-[auto_3rem] gap-4"
|
|
|
|
>
|
|
|
|
<div class="pl-4 py-2">
|
|
|
|
NOMBRE NOMBRE APELLIDO APELLIDO
|
|
|
|
<br />
|
|
|
|
<div class="grid grid-cols-[auto_10rem]">
|
|
|
|
<span class="font-mono">
|
|
|
|
NNAPELLA
|
|
|
|
</span>
|
|
|
|
<div>
|
|
|
|
registrado:
|
|
|
|
<span class="font-mono">
|
|
|
|
26/05/2023
|
|
|
|
</span>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<button
|
|
|
|
title="Vincular usuario"
|
|
|
|
class="border-2 border-c-transparent hover:border-c-primary transition-colors rounded"
|
|
|
|
>
|
|
|
|
<LinkIcon fill="var(--c-primary)" />
|
|
|
|
</button>
|
|
|
|
</div>
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
function ClassroomTabs(props: {active: TabType, setActive: (v: TabType) => void}) {
|
|
|
|
const presetsClasses = () => ((props.active === "Vinculate") ? "font-bold border-c-primary" : "border-c-transparent");
|
|
|
|
const manualClasses = () => ((props.active === "Create") ? "font-bold border-c-primary" : "border-c-transparent");
|
|
|
|
|
|
|
|
return (
|
|
|
|
<div class="grid grid-cols-2">
|
|
|
|
<button
|
|
|
|
class={`py-2 border-b-4 ${presetsClasses()}`}
|
|
|
|
onclick={() => props.setActive("Vinculate")}
|
|
|
|
>
|
|
|
|
Vincular
|
|
|
|
</button>
|
|
|
|
<button
|
|
|
|
class={`py-2 border-b-4 ${manualClasses()}`}
|
|
|
|
onclick={() => props.setActive("Create")}
|
|
|
|
>
|
|
|
|
Crear
|
|
|
|
</button>
|
2023-09-21 21:06:31 +00:00
|
|
|
</div>
|
|
|
|
);
|
|
|
|
}
|