- {emptyCartMessage} -
- } + {cartItems.length <= 0 && ( +{emptyCartMessage}
+ )} {cartItems?.map((item) => (
{feature.subTitle}
@@ -64,38 +95,4 @@ const Features = ({ classNames, features, title }) => {
);
};
-Features.propTypes = {
- /**
- * Object of classNames to be added to each part of the component.
-
- * e.g. `{ container: 'my-custom-class', container: 'my-other-custom-class' }`
- */
- classNames: PropTypes.shape({
- container: PropTypes.string,
- title: PropTypes.string,
- featureWrapper: PropTypes.string,
- featureTitle: PropTypes.string,
- featureSubtitle: PropTypes.string,
- }),
- /**
- * Array of objects for each feature box to display
-
- * e.g. `[{ id: 3, icon: 'spinner', title: 'Super Organized', subtitle: 'Since wire-frame renderings are relatively simple.' }]`
- */
- features: PropTypes.arrayOf(
- PropTypes.shape({
- id: PropTypes.oneOfType([PropTypes.string, PropTypes.number]).isRequired,
- icon: PropTypes.string,
- title: PropTypes.string,
- subTitle: PropTypes.string,
- }),
- ).isRequired,
- /**
- * Title of feature component
-
- * e.g. `How to make you feel good`
- */
- title: PropTypes.string.isRequired,
-};
-
export default Features;
diff --git a/lib/Features/index.js b/lib/Features/index.tsx
similarity index 100%
rename from lib/Features/index.js
rename to lib/Features/index.tsx
diff --git a/lib/HeroImageWithText/HeroImageWithText.js b/lib/HeroImageWithText/HeroImageWithText.js
deleted file mode 100644
index adfa725..0000000
--- a/lib/HeroImageWithText/HeroImageWithText.js
+++ /dev/null
@@ -1,145 +0,0 @@
-import React from 'react';
-import PropTypes from 'prop-types';
-import clsx from 'clsx';
-import { generateClasses } from '../utils';
-
-const HeroImageWithText = ({
- classNames = {},
- imageAltText,
- Image,
- imageSrc,
- paragraphText,
- titleText,
-}) => (
-
- {paragraphText}
-
+ {paragraphText}
+
${price?.toLocaleString()}
diff --git a/lib/ProductCard/index.js b/lib/ProductCard/index.tsx
similarity index 100%
rename from lib/ProductCard/index.js
rename to lib/ProductCard/index.tsx
diff --git a/lib/SSR/SSR.js b/lib/SSR/SSR.tsx
similarity index 96%
rename from lib/SSR/SSR.js
rename to lib/SSR/SSR.tsx
index 5d45f54..385806f 100644
--- a/lib/SSR/SSR.js
+++ b/lib/SSR/SSR.tsx
@@ -5,6 +5,7 @@ const url =
? 'http://localhost:3000/'
: `${window.location.origin}/`;
+// @ts-ignore
function SSR({ component, ...props }) {
const [html, setHtml] = useState();
@@ -18,6 +19,7 @@ function SSR({ component, ...props }) {
const response = await fetch(fetchUrl);
const result = await response.text();
+ // @ts-ignore
setHtml(result);
};
diff --git a/lib/SSR/index.js b/lib/SSR/index.ts
similarity index 100%
rename from lib/SSR/index.js
rename to lib/SSR/index.ts
diff --git a/lib/StarRating/StarRating.js b/lib/StarRating/StarRating.tsx
similarity index 66%
rename from lib/StarRating/StarRating.js
rename to lib/StarRating/StarRating.tsx
index dc33e30..68453a6 100644
--- a/lib/StarRating/StarRating.js
+++ b/lib/StarRating/StarRating.tsx
@@ -11,7 +11,26 @@ const FilledStarPath = () => (
- {titleText}
-
-
-
` tag
- */
- Image: PropTypes.func,
- /**
- * The URL of the image to render, if not using `Image`
- */
- imageSrc: PropTypes.string,
- /**
- * The paragraph text to be used
- */
- paragraphText: PropTypes.string,
- /**
- * The title text to be used
- */
- titleText: PropTypes.string,
-};
-
-export default HeroImageWithText;
diff --git a/lib/HeroImageWithText/HeroImageWithText.tsx b/lib/HeroImageWithText/HeroImageWithText.tsx
new file mode 100644
index 0000000..67fc0c1
--- /dev/null
+++ b/lib/HeroImageWithText/HeroImageWithText.tsx
@@ -0,0 +1,124 @@
+import React from 'react';
+import PropTypes from 'prop-types';
+import clsx from 'clsx';
+import { generateClasses } from '../utils';
+
+interface ClassNames {
+ root?: string;
+ container?: string;
+ textContainer?: string;
+ layout?: string;
+ title?: string;
+ paragraph?: string;
+ imageContainer?: string;
+ imageWrapper?: string;
+ image?: string;
+}
+
+interface Props {
+ classNames?: ClassNames;
+ imageAltText: string;
+ Image: React.FC;
+ imageSrc: string;
+ paragraphText: string;
+ titleText: string;
+ overrideClasses?: boolean;
+}
+
+const HeroImageWithText: React.FC
+ {titleText}
+
+
+
-
- );
-};
-
-export default OrderPricingSummary;
diff --git a/lib/OrderPricingSummary/OrderPricingSummary.tsx b/lib/OrderPricingSummary/OrderPricingSummary.tsx
new file mode 100644
index 0000000..0978393
--- /dev/null
+++ b/lib/OrderPricingSummary/OrderPricingSummary.tsx
@@ -0,0 +1,109 @@
+import React from 'react';
+import clsx from 'clsx';
+import { generateClasses } from '../utils';
+
+interface BreakDown {
+ price: string;
+ label: string;
+}
+
+interface ClassNames {
+ container?: string;
+ breakdownsContainer?: string;
+ breakdownWrapper?: string;
+ breakdownLabel?: string;
+ breakdownPrice?: string;
+ totalWrapper?: string;
+ totalLabel?: string;
+ totalPrice?: string;
+}
+
+interface Props {
+ classNames?: ClassNames;
+ breakdown: BreakDown[];
+ totalLabel: String;
+ totalPrice: number;
+ overrideClasses?: boolean;
+}
+
+/**
+ * Order Pricing Summary component
+ */
+const OrderPricingSummary: React.FC
+
+ );
+};
+
+export default OrderPricingSummary;
diff --git a/lib/OrderPricingSummary/index.js b/lib/OrderPricingSummary/index.tsx
similarity index 100%
rename from lib/OrderPricingSummary/index.js
rename to lib/OrderPricingSummary/index.tsx
diff --git a/lib/Pricing/Pricing.js b/lib/Pricing/Pricing.js
deleted file mode 100644
index 7c8f0b2..0000000
--- a/lib/Pricing/Pricing.js
+++ /dev/null
@@ -1,68 +0,0 @@
-import clsx from 'clsx';
-import React from 'react';
-import PropTypes from 'prop-types';
-import { generateClasses } from '../utils';
-
-/**
- * Pricing component
- */
-const Pricing = (props) => {
- const { classNames, originalPrice, promotionalPrice } = props;
-
- return (
- {
generateClasses(
'text-lg font-bold leading-6',
classNames.title,
+ overrideClasses,
),
)}
>
@@ -83,7 +123,11 @@ const ProductCard = (props) => {