You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hi, I would like to know if my redirect implementation in the form component with dynamic options is correct. In the attached video, you can see that when I abort the form submission, I get redirected to handle_redirect.sql. Is this expected behavior, or could this be a bug?
select'form'as component,
TRUE as auto_submit;
'handle_redirect.sql'as action; -- This is where the form submitsselect'selected_country'as name,
'select'as type,
(
SELECT COALESCE(
(SELECT translation_value FROM language
WHERE language_code = $lang
AND translation_key ='country.form_label'),
(SELECT translation_value FROM language
WHERE language_code ='en'AND translation_key ='country.form_label')
)
) as label,
'options_source.sql'as options_source,
TRUE as searchable;
-- handle_redirect.sqlselect'redirect'as component,
-- Use the selected URL from the form submission
COALESCE(:selected_country, 'index.sql') as link;
-- options_source.sqlselect'json'as component;
set sahaj_links =sqlpage.fetch('https://amrutasahajmaterials.amruta.org/map_json/sahaj_links.json');
select
json_extract(value, '$.url') as value,
CASE
WHEN json_extract(value, '$.native_country_name') = json_extract(value, '$.country_name')
THEN json_extract(value, '$.country_name') ||' ⤿ '|| json_extract(value, '$.clean_url')
ELSE json_extract(value, '$.native_country_name') ||' ('|| json_extract(value, '$.country_name') ||')'||' ⤿ '|| json_extract(value, '$.clean_url')
END as label
from json_each($sahaj_links->'links')
wherelower(json_extract(value, '$.country_name')) like'%'||lower($search) ||'%'orlower(json_extract(value, '$.native_country_name')) like'%'||lower($search) ||'%';
The text was updated successfully, but these errors were encountered:
Hello ! I think your implementation is fine. When you manually abort the loading just at the right time, then you end up on the intermediate handle_redirect page, but I don't think this is an issue for your users, is it ?
It’s hard to say how many users will not click the link. The timing does not matter; the redirection to handle_redirect.sql happens whenever a user does not select an option from the dropdown menu. I think in such a case, COALESCE(:selected_country, 'index.sql') should be triggered to index,sql, but it isn’t.
Screen.Recording.2025-02-27.at.10.31.59.mov
Hi, I would like to know if my redirect implementation in the form component with dynamic options is correct. In the attached video, you can see that when I abort the form submission, I get redirected to handle_redirect.sql. Is this expected behavior, or could this be a bug?
thank you
see live https://coolbreeze.org/
The text was updated successfully, but these errors were encountered: