Skip to content
Snippets Groups Projects
Commit d5aae28b authored by xaralis's avatar xaralis
Browse files

feat: render speakers alongside proposer in program

parent 29070864
No related branches found
No related tags found
No related merge requests found
...@@ -37,6 +37,7 @@ export const loadProgram = createAsyncAction( ...@@ -37,6 +37,7 @@ export const loadProgram = createAsyncAction(
"title", "title",
"description", "description",
"proposer", "proposer",
"speakers",
]), ]),
discussionOpened: entry.discussion_opened, discussionOpened: entry.discussion_opened,
expectedStartAt: parse( expectedStartAt: parse(
......
...@@ -68,10 +68,10 @@ const Schedule = () => { ...@@ -68,10 +68,10 @@ const Schedule = () => {
)} )}
</div> </div>
<div className="w-full md:w-32 flex flex-row md:flex-col items-center md:items-stretch md:text-right md:pr-8"> <div className="w-full md:w-32 flex flex-row md:flex-col items-center md:items-stretch md:text-right md:pr-8">
<p className="head-heavy-xs md:head-heavy-base"> <p className="head-allcaps-2xs md:head-heavy-base">
{format(entry.expectedStartAt, "H:mm")} {format(entry.expectedStartAt, "H:mm")}
</p> </p>
<p className="ml-auto md:ml-0 head-heavy-xs md:head-heavy-xs md:text-grey-200 whitespace-no-wrap"> <p className="ml-auto md:ml-0 head-allcaps-2xs md:head-heavy-xs md:text-grey-200 whitespace-no-wrap">
{format(entry.expectedStartAt, "d. M. Y")} {format(entry.expectedStartAt, "d. M. Y")}
</p> </p>
</div> </div>
...@@ -80,9 +80,17 @@ const Schedule = () => { ...@@ -80,9 +80,17 @@ const Schedule = () => {
{isCurrent && <Link to="/">{fullTitle}</Link>} {isCurrent && <Link to="/">{fullTitle}</Link>}
{!isCurrent && fullTitle} {!isCurrent && fullTitle}
</h2> </h2>
<div className="flex space-x-2"> <div className="leading-normal sm:flex sm:space-x-4">
<strong>Navrhovatel:</strong> <div className="space-x-2">
<span>{entry.proposer}</span> <strong>Navrhovatel:</strong>
<span>{entry.proposer}</span>
</div>
{entry.speakers && (
<div className="space-x-2">
<strong>Řečníci:</strong>
<span>{entry.speakers}</span>
</div>
)}
</div> </div>
{htmlContent && ( {htmlContent && (
<div <div
...@@ -98,6 +106,7 @@ const Schedule = () => { ...@@ -98,6 +106,7 @@ const Schedule = () => {
onClick={() => setEntryToActivate(entry)} onClick={() => setEntryToActivate(entry)}
color="grey-125" color="grey-125"
className="text-xs" className="text-xs"
fullwidth
> >
Aktivovat tento bod programu Aktivovat tento bod programu
</Button> </Button>
......
...@@ -11,6 +11,9 @@ export const handleProgramEntryChanged = (payload) => { ...@@ -11,6 +11,9 @@ export const handleProgramEntryChanged = (payload) => {
if (has(payload, "title")) { if (has(payload, "title")) {
state.items[payload.id].title = payload.title; state.items[payload.id].title = payload.title;
} }
if (has(payload, "description")) {
state.items[payload.id].description = payload.description;
}
} }
}); });
}; };
...@@ -15,6 +15,7 @@ declare namespace CF2021 { ...@@ -15,6 +15,7 @@ declare namespace CF2021 {
number: string; number: string;
title: string; title: string;
proposer: string; proposer: string;
speakers: string;
discussionOpened: boolean; discussionOpened: boolean;
description?: string; description?: string;
expectedStartAt: Date; expectedStartAt: Date;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment