- Issue created by @useernamee
- 🇸🇮Slovenia useernamee Ljubljana
I've implemented most of the PR comments.
I think the one regarding the documentation was already covered by ld_form README file.
I added additional
type
attribute to custom element because that data was lost after I utilized more ld_form code and simplified the output.I was surprised by isApiResponse method code quadruplication. This should probably be caught before.
- 🇦🇹Austria arthur_lorenz Vienna
By default webform uses the confirmation type "page". However confirmation pages are not supported, resulting in a redirect to Drupal's frontend. I see multiple possible solutions:
- Support confirmation pages
- Disallow confirmation types except for inline confirmation
- Set inline confirmation as a default and add a warning if changed to any non-supported type
- 🇦🇹Austria fago Vienna
If we could easily support confirmation pages, that would be best. Else I guess we should at least have a working default.
Generally, we are not warning users of not supported stuff, that would be lots of work, would it? Or should we make an exception for that crucial setting and grey-out/disable not supported options? This means, enabling the module takes over all webforms and considers them decoupled. Maybe it would be nice to allow configuring that, but again, complexity, so I think it's ok to keep it simple and make all webforms deocupled once turned on.
- 🇸🇮Slovenia useernamee Ljubljana
Enabling confirmation was not problematic but there's a strange access check in webform that allowed me to access confirmation page only when logged in as admin:
/webform/src/WebformEntityAccessControlHandler::checkAccess
// Check 'view' operation use 'submission_create' when viewing rendered // HTML webform or use access 'configuration' when requesting a // webform's configuration via REST or JSON API. // @see https://www.drupal.org/project/webform/issues/2956771 if ($operation === 'view') { // Check is current request if for HTML. $is_html = ($this->requestStack->getCurrentRequest()->getRequestFormat() === 'html'); // Make sure JSON API 1.x requests format which is 'html' is // detected properly. // @see https://www.drupal.org/project/jsonapi/issues/2877584 $is_jsonapi = (strpos($this->requestStack->getCurrentRequest()->getPathInfo(), '/jsonapi/') === 0) ? TRUE : FALSE; if ($is_html && !$is_jsonapi) { $access_result = $this->accessRulesManager->checkWebformAccess('create', $account, $entity); } else { if ($account->hasPermission('access any webform configuration') || ($account->hasPermission('access own webform configuration') && $is_owner)) { $access_result = WebformAccessResult::allowed($entity, TRUE); } else { $access_result = $this->accessRulesManager->checkWebformAccess('configuration', $account, $entity); // <- this denies access to confirmation page !!! } } if ($access_result instanceof AccessResultReasonInterface) { $access_result->setReason('Access to webform configuration is required.'); } return $access_result->addCacheContexts(['url.path', 'request_format']); }
- 🇸🇮Slovenia useernamee Ljubljana
Ok, I figured it out and added a section to the
README.md
file. - 🇦🇹Austria arthur_lorenz Vienna
Thx, comments were adressed. I tested by creating a webform including 2 pages and confirmation page -> works like documented.
-
useernamee →
committed 498f1c9a on 1.x
Issue #3487279 by useernamee, fago, arthur_lorenz: Add webform support
-
useernamee →
committed 498f1c9a on 1.x
Automatically closed - issue fixed for 2 weeks with no activity.