Skip to content

Commit

Permalink
Add Event Images
Browse files Browse the repository at this point in the history
  • Loading branch information
Alder Whiteford authored and Alder Whiteford committed Jun 20, 2024
1 parent e3f8575 commit c108db6
Show file tree
Hide file tree
Showing 13 changed files with 30 additions and 21 deletions.
1 change: 1 addition & 0 deletions backend/entities/events/previews/models.go
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ type Common struct {
Link string `json:"link"`
StartTime time.Time `json:"start_time"`
EndTime time.Time `json:"end_time"`
Image string `json:"image"`
}

type EventStub struct {
Expand Down
2 changes: 2 additions & 0 deletions backend/entities/models/event.go
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,8 @@ type Event struct {
Description string `json:"description"`
Host *uuid.UUID `json:"host"`

Image string `json:"image"`

// geoshi
EventType EventType `json:"event_type"`
Location string `json:"location"`
Expand Down
1 change: 1 addition & 0 deletions backend/migrations/000001_init.up.sql
Original file line number Diff line number Diff line change
Expand Up @@ -89,6 +89,7 @@ CREATE TABLE IF NOT EXISTS "events"(
created_at timestamp WITH time zone NOT NULL DEFAULT CURRENT_TIMESTAMP,
updated_at timestamp WITH time zone NOT NULL DEFAULT CURRENT_TIMESTAMP,
name varchar(255) NOT NULL,
image varchar(255),
preview varchar(255) NOT NULL,
description text NOT NULL,
event_type event_type NOT NULL,
Expand Down
2 changes: 1 addition & 1 deletion frontend/lib/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@generatesac/lib",
"version": "0.0.186",
"version": "0.0.191",
"type": "module",
"main": "dist/index.js",
"types": "dist/index.d.ts",
Expand Down
2 changes: 2 additions & 0 deletions frontend/lib/src/types/event.ts
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,7 @@ const eventSchemaIntermediate = z.object({
start_time: z.string(),
end_time: z.string(),
location: z.string().max(255),
image: z.string().max(255).optional(),
link: z.string().max(255).optional(),
event_type: eventTypeEnum,
is_recurring: z.boolean().optional(),
Expand All @@ -55,6 +56,7 @@ const eventPreviewSchemaIntermediate = z.object({
event_type: eventTypeEnum,
location: z.string().max(255),
link: z.string().max(255).optional(),
image: z.string().max(255).optional(),

start_time: z.string(),
end_time: z.string(),
Expand Down
2 changes: 1 addition & 1 deletion frontend/mobile/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
"@fortawesome/free-solid-svg-icons": "^6.5.2",
"@fortawesome/react-fontawesome": "^0.2.2",
"@fortawesome/react-native-fontawesome": "^0.3.2",
"@generatesac/lib": "0.0.186",
"@generatesac/lib": "0.0.191",
"@gorhom/bottom-sheet": "^4.6.3",
"@hookform/resolvers": "^3.4.2",
"@react-native-async-storage/async-storage": "^1.23.1",
Expand Down
2 changes: 1 addition & 1 deletion frontend/mobile/src/app/app/event/[id].tsx
Original file line number Diff line number Diff line change
Expand Up @@ -127,7 +127,7 @@ const EventPage = () => {
) : (
<>
<AnimatedImageHeader
uri={MockEvent.eventImage}
uri={event.image as string}
imageHeight={IMG_HEIGHT}
scrollOffset={scrollOffset}
aspectRatio={1}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,15 +6,6 @@ import {
EventSection
} from '@/src/app/design-system/components/Calendar/DayTimeSection';

const eventPreviewImages = [
'https://storage.googleapis.com/pod_public/1300/165117.jpg',
'https://images.photowall.com/products/51078/movie-poster-jaws.jpg?h=699&q=85',
'https://d3jmn01ri1fzgl.cloudfront.net/photoadking/webp_thumbnail/curious-blue-events-instagram-post-template-40q50e11b340f0.webp',
'https://d1csarkz8obe9u.cloudfront.net/posterpreviews/event-social-media-ad-design-template-6549b45cb5b52f594c8b37d7060c290d_screen.jpg?ts=1570209911',
'https://d3jmn01ri1fzgl.cloudfront.net/photoadking/webp_thumbnail/wild-sand-events-instagram-post-template-f767rn00607ef2.webp',
'https://images.template.net/59201/Red-Nose-Day-Event-Instagram-Post-Template.jpeg'
];

export function parseData(start: number, end: number, data?: EventPreview[]) {
// Parsed data:
const parsedData: EventSection[] = [];
Expand Down Expand Up @@ -72,9 +63,7 @@ export function parseData(start: number, end: number, data?: EventPreview[]) {
title: event.name,
startTime: event.start_time,
endTime: event.end_time,
image: eventPreviewImages[
Math.floor(Math.random() * eventPreviewImages.length)
],
image: event.image as string,
host_name: event.host_name,
host_logo:
event.host_logo ??
Expand Down
1 change: 1 addition & 0 deletions frontend/mobile/src/hooks/useEvent.ts
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@ const useEvent = () => {
// Fetch events
getEvent(eventId).then(({ data: eventData }) => {
if (eventData) {
console.log(eventData);
dispatch(setEvent(eventData));
dispatch(setClubId(eventData?.host));
}
Expand Down
1 change: 1 addition & 0 deletions frontend/mobile/src/store/slices/eventSlice.ts
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,7 @@ export const eventSlice = createSlice({
state.end_time = action.payload.end_time;
state.location = action.payload.location;
state.event_type = action.payload.event_type;
state.image = action.payload.image;
state.is_archived = action.payload.is_archived;
state.is_draft = action.payload.is_draft;
state.is_recurring = action.payload.is_recurring;
Expand Down
8 changes: 4 additions & 4 deletions frontend/mobile/yarn.lock
Original file line number Diff line number Diff line change
Expand Up @@ -1402,10 +1402,10 @@
humps "^2.0.1"
prop-types "^15.7.2"

"@generatesac/[email protected].186":
version "0.0.186"
resolved "https://registry.yarnpkg.com/@generatesac/lib/-/lib-0.0.186.tgz#2e77a197b8fc621ec3ec07ee990d9acc3d867fa9"
integrity sha512-CPZsejA4K/3/uk0E1Al1vahtYh7bRLKt2Fn8qoOA+Rq1jZKUbkp6NVO+2iDz+yyZfA2UwpSUhbzjKnE/YbTuGg==
"@generatesac/[email protected].191":
version "0.0.191"
resolved "https://registry.yarnpkg.com/@generatesac/lib/-/lib-0.0.191.tgz#3c999ee26ed1eaab77f8bd1f435d779990fabbba"
integrity sha512-8P0bPY4DNSW4fgTFVpS4EOR4dRgZ4aI+EJvce4RiBIXQLnfwfAbxEtr0M1xHimEZxLH7Lhe3HpUl7Lt0Qx8arQ==
dependencies:
"@reduxjs/toolkit" "^2.2.3"
react "^18.2.0"
Expand Down
3 changes: 2 additions & 1 deletion mock_data/.gitignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
/bin
/lib
*.cfg
*.cfg
/.venv
13 changes: 12 additions & 1 deletion mock_data/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -82,6 +82,13 @@
]
}

randomEventImageData = [
'https://i.imgur.com/TM29405.png',
'https://i.imgur.com/IfjHhrs.png',
'https://i.imgur.com/TQQ7AEE.png',
'https://i.imgur.com/Gp0Wwa8.png',
]

TAGS_STRING = ", ".join(f"\"{tag}\"" for tag in sum(MOCK_CATEGORIES_AND_TAGS.values(), [])) # for tags_prompt

def description_prompt(name: str, preview: str) -> str:
Expand Down Expand Up @@ -218,11 +225,14 @@ def random_start_and_endtimes() -> tuple[datetime.datetime, datetime.datetime]:
location = random.choice(["West Village H", "Curry Student Center", "Snell Library", "Krentzman Quad", "Marino", "ISEC", "ISEC 2"])
if event_type == "online":
location = ""

image = random.choice(randomEventImageData)

events.append({
"id": str(uuid4()),
"club_id": clubData["id"],
"name": f"Event for {clubData["name"]}",
"image": image,
"preview": "This club is holding an event.",
"description": event_description,
"event_type": event_type,
Expand Down Expand Up @@ -356,13 +366,14 @@ def fill_clubs():
@transaction
def fill_events():
print("Creating event data...")
cmd = """INSERT INTO "events" ("id", "host", "name", "preview", "description", "event_type", "start_time", "end_time", "is_public", "is_draft", "is_archived") VALUES (%s, %s, %s, %s, %s, %s, %s, %s, %s, %s, %s)"""
cmd = """INSERT INTO "events" ("id", "host", "name", "image", "preview", "description", "event_type", "start_time", "end_time", "is_public", "is_draft", "is_archived") VALUES (%s, %s, %s, %s, %s, %s, %s, %s, %s, %s, %s, %s)"""

for event in events:
data = (
event['id'],
event['club_id'],
event['name'].replace("\'", "''"),
random.choice(randomEventImageData),
event['preview'].replace("\'", "''"),
event['description'].replace('\'', "''"),
event['event_type'],
Expand Down

0 comments on commit c108db6

Please sign in to comment.