<input type="hidden" name="dedupe" value="{!api_request_params.dedupe ? '' : 1}" />
<input type="hidden" name="bounded" value="{api_request_params.bounded ? 1 : ''}" />
<input type="hidden" name="accept-language" value="{api_request_params['accept-language'] || ''}" />
- <input type="hidden" name="countrycodes" value="{api_request_params.countrycodes || ''}" />
+ <input type="hidden" name="countrycodes" value="{api_request_params.countrycodes || ''}"
+ pattern="^[a-zA-Z]{'{2}'}(,[a-zA-Z]{'{2}'})*$" />
<input type="hidden" name="limit" value="{api_request_params.limit || ''}" />
<input type="hidden" name="polygon_threshold" value="{api_request_params.polygon_threshold || ''}" />
</UrlSubmitForm>
<input type="hidden" name="dedupe" value="{!api_request_params.dedupe ? '' : 1}" />
<input type="hidden" name="bounded" value="{api_request_params.bounded ? 1 : ''}" />
<input type="hidden" name="accept-language" value="{api_request_params['accept-language'] || ''}" />
- <input type="hidden" name="countrycodes" value="{api_request_params.countrycodes || ''}" />
+ <input type="hidden" name="countrycodes" value="{api_request_params.countrycodes || ''}"
+ pattern="^[a-zA-Z]{'{2}'}(,[a-zA-Z]{'{2}'})*$" />
<input type="hidden" name="limit" value="{api_request_params.limit || ''}" />
<input type="hidden" name="polygon_threshold" value="{api_request_params.polygon_threshold || ''}" />
</UrlSubmitForm>
<li>
<label for="option_ccode">Country Codes</label>
<input type="text" placeholder="e.g. de,gb" class="form-control form-control-sm d-inline w-auto api-param-setting"
- data-api-param="countrycodes" id="option_ccode" size="15" pattern="[a-zA-Z]{2}(,[a-zA-Z]{2})*"
+ data-api-param="countrycodes" id="option_ccode" size="15"
value="{api_request_params.countrycodes || ''}"
+ pattern="^[a-zA-Z]{'{2}'}(,[a-zA-Z]{'{2}'})*$"
on:change={set_api_param}>
</li>
</ul>
return params;
}
+
+ // https://developer.mozilla.org/en-US/docs/Web/Guide/HTML/HTML5/Constraint_validation
+ // doesn't support hidden fields, so we check those in an extra step
+ function validate_field(field) {
+ if (field.type === 'hidden') {
+ if (field.pattern && !field.value.match(field.pattern)) return false;
+ }
+ return field.checkValidity(); // for hidden field always true
+ }
+
+ function handle_submit(event) {
+ let form = event.target;
+
+ let allow_submit = true;
+
+ Array.prototype.slice.call(form.elements).forEach(function (field) {
+ if (!validate_field(field)) {
+ alert('Invalid input in ' + field.name);
+ allow_submit = false;
+ }
+ });
+
+ if (allow_submit) refresh_page(page, serialize_form(form));
+ }
</script>
-<form on:submit|preventDefault={(e) => refresh_page(page, serialize_form(e.target))} class="form-inline" role="search" accept-charset="UTF-8" action="">
+<form on:submit|preventDefault={handle_submit} class="form-inline" role="search" accept-charset="UTF-8" action="">
<slot></slot>
</form>