feat: Added feature to allow users to give directions for study spaces. These directions appear when you click on a study space.
Co-authored-by: Asaam, Caspar <caspar.asaam22@imperial.ac.uk>
This commit is contained in:
3
src/lib/database.d.ts
vendored
3
src/lib/database.d.ts
vendored
@@ -145,6 +145,7 @@ export type Database = {
|
||||
building_location_old: string | null
|
||||
created_at: string | null
|
||||
description: string | null
|
||||
directions: string
|
||||
id: string
|
||||
location: string | null
|
||||
power: string
|
||||
@@ -158,6 +159,7 @@ export type Database = {
|
||||
building_location_old?: string | null
|
||||
created_at?: string | null
|
||||
description?: string | null
|
||||
directions: string
|
||||
id?: string
|
||||
location?: string | null
|
||||
power: string
|
||||
@@ -171,6 +173,7 @@ export type Database = {
|
||||
building_location_old?: string | null
|
||||
created_at?: string | null
|
||||
description?: string | null
|
||||
directions: string
|
||||
id?: string
|
||||
location?: string | null
|
||||
power?: string
|
||||
|
||||
@@ -167,6 +167,11 @@
|
||||
{/each}
|
||||
<hr />
|
||||
|
||||
<div class="subtitle">Directions:</div>
|
||||
<p class="addrContainer">
|
||||
{space.directions}
|
||||
</p>
|
||||
|
||||
<div class="subtitle">Where it is:</div>
|
||||
<p class="addrContainer">
|
||||
{#if place.name}
|
||||
|
||||
@@ -21,6 +21,7 @@ export const load: PageServerLoad = async ({ params, locals: { supabase } }) =>
|
||||
return {
|
||||
space: {
|
||||
description: "",
|
||||
directions: "",
|
||||
building_location: undefined,
|
||||
location: "",
|
||||
tags: [],
|
||||
|
||||
@@ -461,6 +461,14 @@
|
||||
rows={2}
|
||||
/>
|
||||
|
||||
<label for="directions">Give directions:</label>
|
||||
<Textarea
|
||||
name="directions"
|
||||
bind:value={studySpaceData.directions}
|
||||
placeholder="Turn left once you enter Huxley and walk straight."
|
||||
rows={2}
|
||||
/>
|
||||
|
||||
<label for="building-location">Add the building location:</label>
|
||||
<Text
|
||||
name="building-location"
|
||||
|
||||
@@ -2,3 +2,4 @@ ALTER TABLE study_spaces DROP COLUMN title;
|
||||
ALTER TABLE study_spaces ADD COLUMN building_address text;
|
||||
ALTER TABLE study_spaces ADD COLUMN description text;
|
||||
ALTER TABLE study_spaces ADD COLUMN location text;
|
||||
ALTER TABLE study_spaces ADD COLUMN directions text;
|
||||
|
||||
@@ -9,6 +9,7 @@ CREATE POLICY "Whack"
|
||||
CREATE TABLE study_spaces (
|
||||
id uuid PRIMARY KEY DEFAULT gen_random_uuid(),
|
||||
description text,
|
||||
directions text,
|
||||
-- Location within building, e.g., "Room 101"
|
||||
location text,
|
||||
-- Not bothered to write a proper data migration
|
||||
|
||||
Reference in New Issue
Block a user