From 5239729e8e4bcd5c76746ed8099cf4a521dcdeae Mon Sep 17 00:00:00 2001 From: Richard Lewis Date: Fri, 1 Dec 2017 14:56:27 +0000 Subject: [PATCH] Return a response to widget postMessage request (inline with scalarMessaging API). --- src/WidgetMessaging.js | 36 ++++++++++++++++++++++++++++++++++++ 1 file changed, 36 insertions(+) diff --git a/src/WidgetMessaging.js b/src/WidgetMessaging.js index 1a18427022..36423f2ff9 100644 --- a/src/WidgetMessaging.js +++ b/src/WidgetMessaging.js @@ -35,6 +35,9 @@ The complete request object is returned to the caller with an additional "respon } The "action" determines the format of the request and response. All actions can return an error response. + +A success response is an object with zero or more keys. + An error response is a "response" object which consists of a sole "error" key to indicate an error. They look like: { @@ -101,8 +104,10 @@ function onMessage(event) { action: 'widget_content_loaded', widgetId: widgetId, }); + sendResponse(event, {success: true}); } else { console.warn("Widget postMessage event unhandled"); + sendError(event, {message: "The postMessage was unhandled"}); } } @@ -125,6 +130,37 @@ function trustedEndpoint(origin) { return false; } +/** + * Send a postmessage response to a postMessage request + * @param {Event} event The original postMessage request event + * @param {Object} res Response data + */ +function sendResponse(event, res) { + const data = JSON.parse(JSON.stringify(event.data)); + data.response = res; + event.source.postMessage(data, event.origin); +} + +/** + * Send an error response to a postMessage request + * @param {Event} event The original postMessage request event + * @param {string} msg Error message + * @param {Error} nestedError Nested error event (optional) + */ +function sendError(event, msg, nestedError) { + console.error("Action:" + event.data.action + " failed with message: " + msg); + const data = JSON.parse(JSON.stringify(event.data)); + data.response = { + error: { + message: msg, + }, + }; + if (nestedError) { + data.response.error._error = nestedError; + } + event.source.postMessage(data, event.origin); +} + /** * Represents mapping of widget instance to URLs for trusted postMessage communication. */