Skip to content

Commit 65fc101

Browse files
committed
Add method to cancel Inertia processing. Useful in controllers if you want to respond with a http response without the Inertia headers.
1 parent 39a790f commit 65fc101

File tree

4 files changed

+38
-3
lines changed

4 files changed

+38
-3
lines changed

grails-app/controllers/grails/plugin/inertia/InertiaInterceptor.groovy

+1-3
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,6 @@ import groovy.json.JsonSlurper
2323
import groovy.transform.CompileStatic
2424
import io.micronaut.http.HttpStatus
2525

26-
import static Inertia.INERTIA_ATTRIBUTE_CANCEL_INERTIA
2726
import static Inertia.INERTIA_ATTRIBUTE_MANIFEST
2827
import static Inertia.INERTIA_ATTRIBUTE_VERSION
2928
import static Inertia.INERTIA_HEADER
@@ -64,7 +63,7 @@ class InertiaInterceptor implements GrailsConfigurationAware {
6463

6564
boolean after() {
6665

67-
if (inertiaResponseCanceled) return true
66+
if (Inertia.isCanceled) return true
6867

6968
setContentType()
7069
setHeaders()
@@ -117,7 +116,6 @@ class InertiaInterceptor implements GrailsConfigurationAware {
117116
boolean getMethodNotAllowedShouldBePrevented() { isInertiaRequest && response.status == HttpStatus.FOUND.code && request.method in ['PUT', 'PATCH', 'DELETE'] }
118117
boolean getIsInertiaHtmlView() { modelAndView?.viewName == INERTIA_VIEW_HTML }
119118
boolean getIsInertiaRequest() { request.getHeader(INERTIA_HEADER) == 'true' }
120-
boolean isInertiaResponseCanceled() { request.getAttribute(INERTIA_ATTRIBUTE_CANCEL_INERTIA) }
121119
boolean getIsAssetsCurrent() {
122120
def currentVersion = request.getAttribute(INERTIA_ATTRIBUTE_VERSION) as String
123121
def requestedVersion = request.getHeader(INERTIA_HEADER_VERSION) as String

src/main/groovy/grails/plugin/inertia/Inertia.groovy

+9
Original file line numberDiff line numberDiff line change
@@ -76,6 +76,15 @@ class Inertia {
7676
response.status = SC_CONFLICT
7777
}
7878

79+
@SuppressWarnings('unused')
80+
static void cancel() {
81+
request.setAttribute INERTIA_ATTRIBUTE_CANCEL_INERTIA, true
82+
}
83+
84+
static boolean getIsCanceled() {
85+
request.getAttribute INERTIA_ATTRIBUTE_CANCEL_INERTIA
86+
}
87+
7988
private static ModelAndView renderInternal(String component, Map props, Map viewData) {
8089
isInertiaRequest ?
8190
renderJson(component, props) :

src/main/groovy/grails/plugin/inertia/InertiaTrait.groovy

+8
Original file line numberDiff line numberDiff line change
@@ -58,4 +58,12 @@ trait InertiaTrait {
5858
void setInertiaSharedData(Map sharedData) {
5959
Inertia.sharedData = sharedData
6060
}
61+
62+
void cancelInertia() {
63+
Inertia.cancel()
64+
}
65+
66+
boolean isInertiaCanceled() {
67+
Inertia.isCanceled
68+
}
6169
}

src/test/groovy/grails/plugin/inertia/InertiaInterceptorSpec.groovy

+20
Original file line numberDiff line numberDiff line change
@@ -106,6 +106,21 @@ class InertiaInterceptorSpec extends Specification implements InterceptorUnitTes
106106
! response.containsHeader('X-Inertia')
107107
! ('X-Inertia' in response.getHeaders('Vary'))
108108
}
109+
110+
def 'canceling Inertia request with Inertia.cancel() works'() {
111+
given: 'a controller'
112+
def controller = (TestController) mockController(TestController)
113+
114+
when: 'a request for json is processed'
115+
request.addHeader 'X-Inertia', true
116+
request.addHeader 'X-Inertia-Version', '0'
117+
withInterceptors(controller: 'test', httpMethod: 'GET') { controller.cancelInertiaAction() }
118+
interceptor.after()
119+
120+
then: 'no inertia response headers are set'
121+
! response.containsHeader('X-Inertia')
122+
! ('X-Inertia' in response.getHeaders('Vary'))
123+
}
109124
}
110125

111126
@Controller
@@ -116,6 +131,11 @@ class TestController {
116131
renderInertia 'index', [hello: 'world']
117132
}
118133

134+
def cancelInertiaAction() {
135+
Inertia.cancel()
136+
render 'cancelInertiaAction'
137+
}
138+
119139
def testing() {
120140
renderInertia 'testing'
121141
}

0 commit comments

Comments
 (0)