Skip to content

Commit

Permalink
Merge pull request #151 from bosonprotocol/add-callbacks-clicking-but…
Browse files Browse the repository at this point in the history
…tons-and-body-overflow-prop

feat: add callbacks after you click on commit/tagline and also make b…
  • Loading branch information
albertfolch-redeemeum committed May 21, 2024
2 parents de5cfd8 + 4fbd4a1 commit 01e6d27
Show file tree
Hide file tree
Showing 8 changed files with 122 additions and 85 deletions.
34 changes: 17 additions & 17 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@
]
},
"dependencies": {
"@bosonprotocol/react-kit": "^0.30.0",
"@bosonprotocol/react-kit": "^0.30.1",
"@krakenjs/zoid": "^10.3.3",
"@svgr/webpack": "^8.1.0",
"@testing-library/jest-dom": "^5.16.5",
Expand Down
13 changes: 11 additions & 2 deletions public/scripts/commit-button-example.html
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
<!DOCTYPE html>

<head>
<meta name="viewport" content="width=device-width, initial-scale=1.0" />

<script src="./zoid/zoid.min.js"></script>
<script src="../../scripts/commit-button.js"></script>
<style>
Expand Down Expand Up @@ -32,8 +34,8 @@ <h3>Commit button example</h3>
};
const argsThatDependOnEnv = {
configId: "testing-80002-0",
productUuid: "086b32-3fcd-00d1-0624-67513e85415c",
sellerId: "138",
productUuid: "f4bb0f8-2f2c-d151-2801-0d3c6250461",
sellerId: "4",
...(isProd && prodData)
};
const instance = CommitButton({
Expand All @@ -55,6 +57,13 @@ <h3>Commit button example</h3>
document.querySelector(
"#container"
).style.minWidth = `${offsetWidth}px`;
},
onClickCommitButton: function () {
document.querySelector("body").style.overflow = "hidden";
console.log("you clicked on the commit button!");
},
onClickTagline: function () {
console.log("you clicked on the tagline!");
}
});

Expand Down
94 changes: 49 additions & 45 deletions src/components/widgets/commit/Commit.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ import { CSSProperties } from "styled-components";
import * as yup from "yup";

import { CONFIG, getMetaTxConfig } from "../../../config";
import { GlobalStyle } from "../styles";

export const commitPath = "/commit";

Expand Down Expand Up @@ -58,53 +59,56 @@ export function Commit() {
const modalMargin = getProp("modalMargin") as CSSProperties["margin"];
const account = getProp("account") as string;
const withExternalSigner = getProp("withExternalSigner");

const bodyOverflow = getProp("bodyOverflow");
return (
<CommitWidget
withExternalSigner={withExternalSigner === "true"}
configId={configId}
forcedAccount={account}
envName={CONFIG.envName}
metaTx={getMetaTxConfig(configId)}
productUuid={productUuid ?? ""}
bundleUuid={bundleUuid ?? ""}
sellerId={sellerId ?? ""}
offerId={offerId ?? ""}
lookAndFeel={lookAndFeel}
modalMargin={modalMargin}
dateFormat="YYYY/MM/DD"
shortDateFormat="MMM DD, YYYY"
minimumDisputePeriodInDays={CONFIG.minimumDisputePeriodInDays as number}
minimumDisputeResolutionPeriodDays={
CONFIG.minimumDisputeResolutionPeriodDays as number
}
contactSellerForExchangeUrl={CONFIG.contactSellerForExchange as string}
buyerSellerAgreementTemplate={
CONFIG.buyerSellerAgreementTemplate as string
}
licenseTemplate={CONFIG.licenseTemplate as string}
defaultCurrencyTicker="USD"
defaultCurrencySymbol="$"
ipfsGateway={CONFIG.ipfsGateway as string}
ipfsProjectId={CONFIG.ipfsProjectId}
ipfsProjectSecret={CONFIG.ipfsProjectSecret}
children={<></>}
walletConnectProjectId={CONFIG.walletConnectProjectId as string}
fairExchangePolicyRules={CONFIG.fairExchangePolicyRules as string}
closeWidgetClick={() => {
if (
"close" in window.xprops &&
typeof window.xprops.close === "function"
) {
window.xprops.close();
<>
<GlobalStyle $bodyOverflow={bodyOverflow} />
<CommitWidget
withExternalSigner={withExternalSigner === "true"}
configId={configId}
forcedAccount={account}
envName={CONFIG.envName}
metaTx={getMetaTxConfig(configId)}
productUuid={productUuid ?? ""}
bundleUuid={bundleUuid ?? ""}
sellerId={sellerId ?? ""}
offerId={offerId ?? ""}
lookAndFeel={lookAndFeel}
modalMargin={modalMargin}
dateFormat="YYYY/MM/DD"
shortDateFormat="MMM DD, YYYY"
minimumDisputePeriodInDays={CONFIG.minimumDisputePeriodInDays as number}
minimumDisputeResolutionPeriodDays={
CONFIG.minimumDisputeResolutionPeriodDays as number
}

try {
window.parent.postMessage("boson-close-iframe", "*");
} catch (e) {
console.error(`Unable to post message ${e}`);
contactSellerForExchangeUrl={CONFIG.contactSellerForExchange as string}
buyerSellerAgreementTemplate={
CONFIG.buyerSellerAgreementTemplate as string
}
}}
></CommitWidget>
licenseTemplate={CONFIG.licenseTemplate as string}
defaultCurrencyTicker="USD"
defaultCurrencySymbol="$"
ipfsGateway={CONFIG.ipfsGateway as string}
ipfsProjectId={CONFIG.ipfsProjectId}
ipfsProjectSecret={CONFIG.ipfsProjectSecret}
children={<></>}
walletConnectProjectId={CONFIG.walletConnectProjectId as string}
fairExchangePolicyRules={CONFIG.fairExchangePolicyRules as string}
closeWidgetClick={() => {
if (
"close" in window.xprops &&
typeof window.xprops.close === "function"
) {
window.xprops.close();
}

try {
window.parent.postMessage("boson-close-iframe", "*");
} catch (e) {
console.error(`Unable to post message ${e}`);
}
}}
></CommitWidget>
</>
);
}
33 changes: 23 additions & 10 deletions src/components/widgets/commitButton/CommitButton.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -90,6 +90,10 @@ export function CommitButton() {
`"context" must be either "iframe" or "popup", "${context}" given`
);
}, [context]);
const renderToValue = renderToSelector || "body";
const bodyOverflow = useMemo(() => {
return renderToValue === "body" ? "hidden" : undefined;
}, [renderToValue]);
return (
<>
<GlobalStyle />
Expand All @@ -101,20 +105,29 @@ export function CommitButton() {
ref={ref}
disabled={"disabled" in props && !!props.disabled}
onClick={() => {
CommitWidgetModal({ ...commitWidgetProps, modalMargin }).renderTo(
window.parent,
renderToSelector || "body",
validatedContext
);
CommitWidgetModal({
bodyOverflow,
...commitWidgetProps,
modalMargin
}).renderTo(window.parent, renderToValue, validatedContext);
if (
typeof props.onClickCommitButton === "function" &&
props.onClickCommitButton
) {
props.onClickCommitButton();
}
}}
onTaglineClick={() => {
PurchaseOverviewModal({
bodyOverflow,
modalMargin
}).renderTo(
window.parent,
renderToSelector || "body",
validatedContext
);
}).renderTo(window.parent, renderToValue, validatedContext);
if (
typeof props.onClickTagline === "function" &&
props.onClickTagline
) {
props.onClickTagline();
}
}}
/>
</>
Expand Down
8 changes: 7 additions & 1 deletion src/components/widgets/purchaseOverview/PurchaseOverview.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,13 @@ export const PurchaseOverview = () => {
}, [props]);
return (
<>
<GlobalStyle />
<GlobalStyle
$bodyOverflow={
typeof props.bodyOverflow === "string"
? props.bodyOverflow
: undefined
}
/>
<PurchaseOverviewReactKit
lookAndFeel="modal"
modalMargin={validatedProps.modalMargin}
Expand Down
21 changes: 14 additions & 7 deletions src/components/widgets/styles.tsx
Original file line number Diff line number Diff line change
@@ -1,4 +1,8 @@
import styled, { createGlobalStyle } from "styled-components";
import styled, {
createGlobalStyle,
css,
CSSProperties
} from "styled-components";

export const Pre = styled.pre`
all: unset;
Expand All @@ -17,7 +21,9 @@ export const Widget = styled.div`
flex-direction: column;
`;

export const GlobalStyle = createGlobalStyle`
export const GlobalStyle = createGlobalStyle<{
$bodyOverflow?: CSSProperties["overflow"] | null | undefined;
}>`
html, body, #root {
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
Expand All @@ -28,14 +34,15 @@ export const GlobalStyle = createGlobalStyle`
margin: 0;
padding: 0;
font-style: normal;
height: unset;
}
#root{
display: flex;
body {
${({ $bodyOverflow }) =>
$bodyOverflow &&
css`
overflow: ${$bodyOverflow};
`}
}
a,
button,
input,
Expand Down
2 changes: 0 additions & 2 deletions src/globalStyles.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,5 @@ export const GlobalStyle = createGlobalStyle`
margin: 0;
padding: 0;
font-style: normal;
height: 100vh;
}
`;

0 comments on commit 01e6d27

Please sign in to comment.