Skip to content

Commit

Permalink
chore: Add The Voxx event
Browse files Browse the repository at this point in the history
  • Loading branch information
aheritier committed Mar 11, 2023
1 parent 74749f1 commit a4d3082
Show file tree
Hide file tree
Showing 3 changed files with 32 additions and 15 deletions.
43 changes: 28 additions & 15 deletions app/models/ConferenceDescriptor.scala
Expand Up @@ -286,7 +286,7 @@ object ConferenceDescriptor {

val allRoomsBOF = List(PARIS_243_T, PARIS_201_U, PARIS_202_203, PARIS_221M_222M, PARIS_224M_225M, NEUILLY_231_232, NEUILLY_234_235)

val allRoomsOthersThursday = List()
val allRoomsOthersThursday = List(MAILLOT)

val allRoomsOthersFriday = List(LOBBY_NEUILLY)

Expand Down Expand Up @@ -316,6 +316,7 @@ object ConferenceDescriptor {
val shortBreak = SlotBreak("chgt", "Break", "Pause courte")
val exhibition = SlotBreak("exhib", "Exhibition", "Exhibition")
val meetAndGreet = SlotBreak("meet", "Meet & Greet", "Exhibition")
val empty = SlotBreak("empty", "", "")
}

// TODO The idea here is to describe in term of Agenda, for each rooms, the slots. This is required only for the Scheduler
Expand Down Expand Up @@ -430,23 +431,17 @@ object ConferenceDescriptor {
// OTHERS

val othersSlotsThursday: List[Slot] = {
val lesGrowthTech = ConferenceRooms.allRoomsOthersThursday.map {
r1 =>
SlotBuilder(ConferenceProposalTypes.OTHER.id, "thursday",
new DateTime(s"${secondDay}T15:30:00.000+02:00").toDateTime(confTimezone),
new DateTime(s"${secondDay}T17:30:00.000+02:00").toDateTime(confTimezone), r1)
}
lesGrowthTech
val theVoxx = SlotBuilder(ConferenceProposalTypes.OTHER.id, "thursday",
new DateTime(s"${secondDay}T19:30:00.000+02:00").toDateTime(confTimezone),
new DateTime(s"${secondDay}T23:00:00.000+02:00").toDateTime(confTimezone), ConferenceRooms.MAILLOT)
List(theVoxx)
}

val othersSlotsFriday: List[Slot] = {
val cafePhilo = ConferenceRooms.allRoomsOthersFriday.map {
r1 =>
SlotBuilder(ConferenceProposalTypes.OTHER.id, "friday",
new DateTime(s"${thirdDay}T13:00:00.000+02:00").toDateTime(confTimezone),
new DateTime(s"${thirdDay}T14:15:00.000+02:00").toDateTime(confTimezone), r1)
}
cafePhilo
val cafePhilo = SlotBuilder(ConferenceProposalTypes.OTHER.id, "friday",
new DateTime(s"${thirdDay}T13:00:00.000+02:00").toDateTime(confTimezone),
new DateTime(s"${thirdDay}T14:15:00.000+02:00").toDateTime(confTimezone), ConferenceRooms.LOBBY_NEUILLY)
List(cafePhilo)
}

// BOFS
Expand Down Expand Up @@ -672,6 +667,24 @@ object ConferenceDescriptor {
, SlotBuilder(ConferenceSlotBreaks.shortBreak, "thursday",
new DateTime(s"${secondDay}T18:15:00.000+02:00").toDateTime(confTimezone),
new DateTime(s"${secondDay}T18:30:00.000+02:00").toDateTime(confTimezone), List(firstRoomForBreaks))
, SlotBuilder(ConferenceSlotBreaks.meetAndGreet, "thursday",
new DateTime(s"${secondDay}T19:00:00.000+02:00").toDateTime(confTimezone),
new DateTime(s"${secondDay}T19:30:00.000+02:00").toDateTime(confTimezone), List(firstRoomForBreaks))
, SlotBuilder(ConferenceSlotBreaks.empty, "thursday",
new DateTime(s"${secondDay}T19:30:00.000+02:00").toDateTime(confTimezone),
new DateTime(s"${secondDay}T20:00:00.000+02:00").toDateTime(confTimezone), List(firstRoomForBreaks))
, SlotBuilder(ConferenceSlotBreaks.empty, "thursday",
new DateTime(s"${secondDay}T20:00:00.000+02:00").toDateTime(confTimezone),
new DateTime(s"${secondDay}T20:50:00.000+02:00").toDateTime(confTimezone), List(firstRoomForBreaks))
, SlotBuilder(ConferenceSlotBreaks.empty, "thursday",
new DateTime(s"${secondDay}T20:50:00.000+02:00").toDateTime(confTimezone),
new DateTime(s"${secondDay}T21:00:00.000+02:00").toDateTime(confTimezone), List(firstRoomForBreaks))
, SlotBuilder(ConferenceSlotBreaks.empty, "thursday",
new DateTime(s"${secondDay}T21:00:00.000+02:00").toDateTime(confTimezone),
new DateTime(s"${secondDay}T21:50:00.000+02:00").toDateTime(confTimezone), List(firstRoomForBreaks))
, SlotBuilder(ConferenceSlotBreaks.empty, "thursday",
new DateTime(s"${secondDay}T21:50:00.000+02:00").toDateTime(confTimezone),
new DateTime(s"${secondDay}T23:00:00.000+02:00").toDateTime(confTimezone), List(firstRoomForBreaks))
).flatten

val fridayBreaks = List(
Expand Down
2 changes: 2 additions & 0 deletions conf/messages
Expand Up @@ -625,6 +625,8 @@ sw.dej=Registration and Breakfast
sw.coffee=Coffee break
sw.chgt=Short break
sw.def=Coffee
sw.meet=Meet & Greet
sw.empty=
day-wed=Wednesday
day-thu=Thursday
day-fri=Friday
Expand Down
2 changes: 2 additions & 0 deletions conf/messages.fr
Expand Up @@ -531,6 +531,8 @@ sw.dej=Accueil et petit déjeuner
sw.chgt=Pause courte
sw.coffee=Pause café
sw.coffee.break=Pause café
sw.meet=Meet & Greet
sw.empty=
sw.endOfDay=Fin de la journée, fermeture de l''espace d''exposition
sw.cocktail=Soirée Meet and Greet dans l''espace d''exposition jusqu''à 22h30
sw.showAllDay=Voir l''agenda de toute la journée
Expand Down

0 comments on commit a4d3082

Please sign in to comment.