Skip to content

Commit 16964a6

Browse files
committed
feat: prioritize conference schedule
1 parent a9efb4f commit 16964a6

File tree

3 files changed

+17
-5
lines changed

3 files changed

+17
-5
lines changed

src/packlets/schedule/slot.astro

Lines changed: 15 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,12 +9,25 @@ export type Props = TimeSlot['rooms'][number] & {
99
1010
const { index, name, session, time } = Astro.props
1111
12-
const isFullWidth = ["736106", "736329"].includes(session.id);
12+
const isFullHeight = ["736106", "736329"].includes(session.id);
13+
const isFullWidth = [
14+
"d8b94ee5-09a3-4b37-a5a1-b37018ffb915",
15+
"ba303395-0218-43ca-b004-dcac368a665a",
16+
"732591",
17+
"760742",
18+
"f0412ea6-ef50-45e8-81d7-735f0f608e51",
19+
"706820",
20+
"707642",
21+
"8821de38-8d36-4615-8985-04a92cee3239",
22+
"7c890428-e155-43b1-80d8-0357977d6840",
23+
"61f9fc51-25af-47d6-b3f2-c0f29efef8c3"
24+
].includes(session.id);
1325
const builtClassName = clsx(
1426
index === 0 && 'md:col-start-2',
1527
index === 1 && 'md:col-start-3',
1628
index === 2 && 'md:col-start-4',
17-
isFullWidth && 'md:h-[calc(300%+0.5rem)]',
29+
isFullHeight && 'md:h-[calc(300%+0.5rem)]',
30+
isFullWidth && 'md:col-span-3',
1831
!session.isServiceSession ? 'bg-sky-600 hover:bg-sky-800 transition text-white' : 'bg-amber-500 text-white',
1932
session.isServiceSession ? 'py-2' : 'py-4',
2033
'rounded-md px-4'

src/packlets/schedule/switcher.svelte

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
export let workshopHtml: string
55
export let conferenceHtml: string
66
7-
let isWorkshop = true
7+
let isWorkshop = false
88
</script>
99

1010
<div class="flex justify-center pb-8">

src/pages/index.astro

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,6 @@ import Logo from '$new-front/logo.astro'
55
import Patterns from '$playground/patterns.svelte'
66
import Dates from '$new-front/dates.astro'
77
import Map from '$new-front/map.astro'
8-
import Tickets from '$new-front/tickets.astro'
98
import Sponsors from '$new-front/sponsors.astro'
109
import MobileStrip from '$playground/mobileStrip.svelte'
1110
import Schedule from "$new-front/schedule.astro";
@@ -23,7 +22,7 @@ import Schedule from "$new-front/schedule.astro";
2322
</div>
2423
<Dates />
2524
<Map />
26-
<Tickets />
25+
<!--<Tickets />-->
2726
<Schedule />
2827
<!--<Speakers />-->
2928
<Sponsors />

0 commit comments

Comments
 (0)