2024-01-12 18:22:26 +00:00
|
|
|
-- Deploy camper:add_services_carousel_slide to pg
|
|
|
|
-- requires: roles
|
|
|
|
-- requires: schema_camper
|
|
|
|
-- requires: services_carousel
|
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
|
|
|
|
|
|
|
begin;
|
|
|
|
|
2024-01-12 18:22:26 +00:00
|
|
|
set search_path to camper, public;
|
|
|
|
|
|
|
|
drop function if exists add_services_carousel_slide(media_id integer, caption text);
|
|
|
|
|
|
|
|
create or replace function add_services_carousel_slide(media_id integer, caption text) returns void as
|
|
|
|
$$
|
|
|
|
insert into services_carousel (media_id, caption)
|
|
|
|
values (media_id, coalesce(caption, ''))
|
|
|
|
on conflict (media_id) do update
|
|
|
|
set caption = excluded.caption
|
|
|
|
returning media_id
|
|
|
|
;
|
|
|
|
$$
|
|
|
|
language sql
|
|
|
|
;
|
|
|
|
|
|
|
|
revoke execute on function add_services_carousel_slide(integer, text) from public;
|
|
|
|
grant execute on function add_services_carousel_slide(integer, text) to admin;
|
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
|
|
|
|
|
|
|
commit;
|