From 314f131ceb82bc39cf339dd2e6dfdf56aadb8543 Mon Sep 17 00:00:00 2001 From: Sam Date: Thu, 5 May 2022 16:16:26 +0200 Subject: [PATCH] fix(client): Fix setupLink - createLink needs lowdefy for input. --- packages/client/src/initLowdefyContext.js | 2 +- packages/client/src/setupLink.js | 7 ++++--- 2 files changed, 5 insertions(+), 4 deletions(-) diff --git a/packages/client/src/initLowdefyContext.js b/packages/client/src/initLowdefyContext.js index e211e6fe6..fbfbd5f91 100644 --- a/packages/client/src/initLowdefyContext.js +++ b/packages/client/src/initLowdefyContext.js @@ -52,7 +52,7 @@ function initLowdefyContext({ auth, Components, config, router, stage, types, wi lowdefy._internal.window = window; lowdefy._internal.document = window.document; lowdefy._internal.router = router; - lowdefy._internal.link = setupLink(router, window); + lowdefy._internal.link = setupLink(lowdefy); lowdefy._internal.updateBlock = (blockId) => lowdefy._internal.updaters[blockId] && lowdefy._internal.updaters[blockId](); lowdefy._internal.components.Link = createLinkComponent(lowdefy, Components.Link); diff --git a/packages/client/src/setupLink.js b/packages/client/src/setupLink.js index ac22caf71..cec5e21de 100644 --- a/packages/client/src/setupLink.js +++ b/packages/client/src/setupLink.js @@ -16,7 +16,8 @@ import { createLink } from '@lowdefy/engine'; -function setupLink(router, window) { +function setupLink(lowdefy) { + const { router, window } = lowdefy._internal; const backLink = () => router.back(); const disabledLink = () => {}; const newOriginLink = ({ url, query, newTab }) => { @@ -30,7 +31,7 @@ function setupLink(router, window) { if (newTab) { return window .open( - `${window.location.origin}${router.basePath}${pathname}${query ? `?${query}` : ''}`, + `${window.location.origin}${lowdefy.basePath}${pathname}${query ? `?${query}` : ''}`, '_blank' ) .focus(); @@ -45,7 +46,7 @@ function setupLink(router, window) { const noLink = () => { throw new Error(`Invalid Link.`); }; - return createLink({ backLink, disabledLink, router, newOriginLink, noLink, sameOriginLink }); + return createLink({ backLink, disabledLink, lowdefy, newOriginLink, noLink, sameOriginLink }); } export default setupLink;