Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fixed url for shop promo for non-shop users. #548

Merged
merged 1 commit into from
Nov 21, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
52 changes: 39 additions & 13 deletions src/components/promos/November2023ShopUser.js
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ import ZulilyLogo from 'src/assets/promos/zulily.png'
import styles from './November2023ShopUser.module.css'

const batchKey = 'november-2023-shop-batch'
const baseUrl = 'https://wild.link/e?d=54321'
const baseUrl = 'https://wild.link/e?d=20397233'

const contStyles = {
position: 'relative',
Expand Down Expand Up @@ -160,7 +160,9 @@ const November2023ShopUser = ({ user }) => {
{batch === 1 && (
<Box sx={imageGroupStyles}>
<a
href={`${baseUrl}&c=5482116&UUID=${user.userId}&url=https://www.lego.com/`}
href={`${baseUrl}&c=5482116&tc=${
user.userId
}&url=${encodeURIComponent('https://www.lego.com/')}`}
className={styles.hoverable}
target="_blank"
rel="noreferrer"
Expand All @@ -169,15 +171,19 @@ const November2023ShopUser = ({ user }) => {
</a>
<a
className={styles.hoverable}
href={`${baseUrl}&c=5483936&UUID=${user.userId}&url=https://www.walmart.com/`}
href={`${baseUrl}&c=5483936&tc=${
user.userId
}&url=${encodeURIComponent('https://www.walmart.com/')}`}
target="_blank"
rel="noreferrer"
>
<img src={WalmartLogo} alt="Walmart" />
</a>
<a
className={styles.hoverable}
href={`${baseUrl}&c=5481985&UUID=${user.userId}&url=https://www.sephora.com/`}
href={`${baseUrl}&c=5481985&tc=${
user.userId
}&url=${encodeURIComponent('https://www.sephora.com/')}`}
target="_blank"
rel="noreferrer"
>
Expand All @@ -190,23 +196,31 @@ const November2023ShopUser = ({ user }) => {
<Box sx={imageGroupStyles}>
<a
className={styles.hoverable}
href={`${baseUrl}&c=5483579&UUID=${user.userId}&url=https://www.ulta.com/`}
href={`${baseUrl}&c=5483579&tc=${
user.userId
}&url=${encodeURIComponent('https://www.ulta.com/')}`}
target="_blank"
rel="noreferrer"
>
<img src={UltraBeautyLogo} alt="Ulta" />
</a>
<a
className={styles.hoverable}
href={`${baseUrl}&c=144406&UUID=${user.userId}&url=https://www.thriftbooks.com/`}
href={`${baseUrl}&c=144406&tc=${
user.userId
}&url=${encodeURIComponent(
'https://www.thriftbooks.com/'
)}`}
target="_blank"
rel="noreferrer"
>
<img src={ThriftBooksLogo} alt="Thriftbooks" />
</a>
<a
className={styles.hoverable}
href={`${baseUrl}&c=5480737&UUID=${user.userId}&url=https://oldnavy.gap.com/`}
href={`${baseUrl}&c=5480737&tc=${
user.userId
}&url=${encodeURIComponent('https://oldnavy.gap.com/')}`}
target="_blank"
rel="noreferrer"
>
Expand All @@ -219,23 +233,29 @@ const November2023ShopUser = ({ user }) => {
<Box sx={imageGroupStyles}>
<a
className={styles.hoverable}
href={`${baseUrl}&c=5479361&UUID=${user.userId}&url=https://www.kiwico.com/`}
href={`${baseUrl}&c=5479361&tc=${
user.userId
}&url=${encodeURIComponent('https://www.kiwico.com/')}`}
target="_blank"
rel="noreferrer"
>
<img src={KiwicoLogo} alt="Kiwico" />
</a>
<a
className={styles.hoverable}
href={`${baseUrl}&c=5481855&UUID=${user.userId}&url=https://www.samsung.com/`}
href={`${baseUrl}&c=5481855&tc=${
user.userId
}&url=${encodeURIComponent('https://www.samsung.com/')}`}
target="_blank"
rel="noreferrer"
>
<img src={SamsungLogo} alt="Samsung" />
</a>{' '}
<a
className={styles.hoverable}
href={`${baseUrl}&c=5482453&UUID=${user.userId}&url=https://www.sonos.com/`}
href={`${baseUrl}&c=5482453&tc=${
user.userId
}&url=${encodeURIComponent('https://www.sonos.com/')}`}
target="_blank"
rel="noreferrer"
>
Expand All @@ -248,23 +268,29 @@ const November2023ShopUser = ({ user }) => {
<Box sx={imageGroupStyles}>
<a
className={styles.hoverable}
href={`${baseUrl}&c=5479868&UUID=${user.userId}&url=https://www.macys.com/`}
href={`${baseUrl}&c=5479868&tc=${
user.userId
}&url=${encodeURIComponent('https://www.macys.com/')}`}
target="_blank"
rel="noreferrer"
>
<img src={MacysLogo} alt="Macys" />
</a>{' '}
<a
className={styles.hoverable}
href={`${baseUrl}&c=5482649&UUID=${user.userId}&url=https://www.microsoft.com/`}
href={`${baseUrl}&c=5482649&tc=${
user.userId
}&url=${encodeURIComponent('https://www.microsoft.com/')}`}
target="_blank"
rel="noreferrer"
>
<img src={MicrosoftLogo} alt="Microsoft" />
</a>
<a
className={styles.hoverable}
href={`${baseUrl}&c=5484304&UUID=${user.userId}&url=https://shop.zulily.com/`}
href={`${baseUrl}&c=5484304&tc=${
user.userId
}&url=${encodeURIComponent('https://shop.zulily.com/')}`}
target="_blank"
rel="noreferrer"
>
Expand Down
Loading