Add the services page
This page is more or less similar to home, in terms of database: it
has a carousel and a list of items; in this case, the definition of
campsite services.
As i said early, when adding the home carousel, this carousel has its
own relation and set of functions to manage slides. They are also
duplicated in Go code, but i think i will need to refactor it later to
a carousel package or something like that, because both relations have
the exact same fields and types, so it makes no sense to have twice the
same code.
I already did it with the CSS and JavaScript code, mostly because it was
easier to replace the `.surroundings div` selector with `.carousel`, and
because that way i can have a single template that loads and initializes
Slick.
There is no UI to create or edit service definitions, although there are
the SQL functions, because i have no more time now, and Oriol needs to
check that the style is correct for that page.
2023-09-17 01:42:16 +00:00
|
|
|
-- Deploy camper:services_carousel to pg
|
|
|
|
-- requires: roles
|
2023-10-12 14:21:32 +00:00
|
|
|
-- requires: schema_camper
|
Add the services page
This page is more or less similar to home, in terms of database: it
has a carousel and a list of items; in this case, the definition of
campsite services.
As i said early, when adding the home carousel, this carousel has its
own relation and set of functions to manage slides. They are also
duplicated in Go code, but i think i will need to refactor it later to
a carousel package or something like that, because both relations have
the exact same fields and types, so it makes no sense to have twice the
same code.
I already did it with the CSS and JavaScript code, mostly because it was
easier to replace the `.surroundings div` selector with `.carousel`, and
because that way i can have a single template that loads and initializes
Slick.
There is no UI to create or edit service definitions, although there are
the SQL functions, because i have no more time now, and Oriol needs to
check that the style is correct for that page.
2023-09-17 01:42:16 +00:00
|
|
|
-- requires: company
|
|
|
|
-- requires: media
|
|
|
|
-- requires: user_profile
|
|
|
|
|
|
|
|
begin;
|
|
|
|
|
|
|
|
set search_path to camper, public;
|
|
|
|
|
|
|
|
create table services_carousel (
|
|
|
|
media_id integer not null primary key references media,
|
|
|
|
caption text not null
|
|
|
|
);
|
|
|
|
|
|
|
|
grant select on table services_carousel to guest;
|
|
|
|
grant select on table services_carousel to employee;
|
|
|
|
grant select, insert, update, delete on table services_carousel to admin;
|
|
|
|
|
|
|
|
alter table services_carousel enable row level security;
|
|
|
|
|
|
|
|
create policy guest_ok
|
|
|
|
on services_carousel
|
|
|
|
for select
|
|
|
|
using (true)
|
|
|
|
;
|
|
|
|
|
|
|
|
create policy insert_to_company
|
|
|
|
on services_carousel
|
|
|
|
for insert
|
|
|
|
with check (
|
|
|
|
exists (select 1 from media join user_profile using (company_id) where media.media_id = services_carousel.media_id)
|
|
|
|
)
|
|
|
|
;
|
|
|
|
|
|
|
|
create policy update_company
|
|
|
|
on services_carousel
|
|
|
|
for update
|
|
|
|
using (
|
|
|
|
exists (select 1 from media join user_profile using (company_id) where media.media_id = services_carousel.media_id)
|
|
|
|
)
|
|
|
|
;
|
|
|
|
|
|
|
|
create policy delete_from_company
|
|
|
|
on services_carousel
|
|
|
|
for delete
|
|
|
|
using (
|
|
|
|
exists (select 1 from media join user_profile using (company_id) where media.media_id = services_carousel.media_id)
|
|
|
|
)
|
|
|
|
;
|
|
|
|
|
|
|
|
commit;
|