fix: showPopup replace error (#82)

Error: "TypeError: Cannot read properties of undefined (reading 'replace')"
This commit is contained in:
Eric Tuvesson
2024-11-18 17:06:10 +01:00
committed by GitHub
parent 14786b2144
commit 6205d08451
2 changed files with 17 additions and 2 deletions

View File

@@ -2,12 +2,18 @@ const { RouterHandler } = require('../nodes/navigation/router-handler');
const NoodlRuntime = require('@noodl/runtime');
const navigation = {
/**
* This is set by "packages/noodl-viewer-react/src/noodl-js-api.js"
* @type {NoodlRuntime}
*/
_noodlRuntime: undefined,
async showPopup(componentPath, params) {
return new Promise((resolve) => {
navigation._noodlRuntime.context.showPopup(componentPath, params, {
onClosePopup: (action, results) => {
resolve({
action: action.replace('closeAction-', ''),
action: action?.replace('closeAction-', ''),
parameters: results
});
}