Skip to content

Commit 548e0f4

Browse files
ci(release): publish latest release
1 parent d76a660 commit 548e0f4

File tree

6 files changed

+115
-22
lines changed

6 files changed

+115
-22
lines changed

RELEASE

+8-8
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
IPFS hash of the deployment:
2-
- CIDv0: `QmSy9dnGZafmGNzzJgdfu97LH9P9HsAZNUTtnfMfAJctRr`
3-
- CIDv1: `bafybeicezboop6s2zwdnk7izhxdkemytiecd3vub4x4564xc2gmio4e3ou`
2+
- CIDv0: `QmR4otTaGReggG5cf37xRt4wh3XkeKPZT5jqT7YbuvQFRQ`
3+
- CIDv1: `bafybeibiqqsv6nojor2kdirpukl4h6f44erjheo2r7fzbq2wvpg5akvd44`
44

55
The latest release is always mirrored at [app.uniswap.org](https://app.uniswap.org).
66

@@ -10,15 +10,15 @@ You can also access the Uniswap Interface from an IPFS gateway.
1010
Your Uniswap settings are never remembered across different URLs.
1111

1212
IPFS gateways:
13-
- https://bafybeicezboop6s2zwdnk7izhxdkemytiecd3vub4x4564xc2gmio4e3ou.ipfs.dweb.link/
14-
- https://bafybeicezboop6s2zwdnk7izhxdkemytiecd3vub4x4564xc2gmio4e3ou.ipfs.cf-ipfs.com/
15-
- [ipfs://QmSy9dnGZafmGNzzJgdfu97LH9P9HsAZNUTtnfMfAJctRr/](ipfs://QmSy9dnGZafmGNzzJgdfu97LH9P9HsAZNUTtnfMfAJctRr/)
13+
- https://bafybeibiqqsv6nojor2kdirpukl4h6f44erjheo2r7fzbq2wvpg5akvd44.ipfs.dweb.link/
14+
- https://bafybeibiqqsv6nojor2kdirpukl4h6f44erjheo2r7fzbq2wvpg5akvd44.ipfs.cf-ipfs.com/
15+
- [ipfs://QmR4otTaGReggG5cf37xRt4wh3XkeKPZT5jqT7YbuvQFRQ/](ipfs://QmR4otTaGReggG5cf37xRt4wh3XkeKPZT5jqT7YbuvQFRQ/)
1616

17-
### 5.27.8 (2024-05-16)
17+
## 5.28.0 (2024-05-21)
1818

1919

20-
### Bug Fixes
20+
### Features
2121

22-
* **web:** window.ethereum fallback on mobile [prod] (#8260) 929c164
22+
* **web:** unicon v2 education label (#8339) e861024
2323

2424

VERSION

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
web/5.27.8
1+
web/5.28.0

apps/web/src/components/Identicon/index.tsx

+35-9
Original file line numberDiff line numberDiff line change
@@ -8,21 +8,47 @@ import { useFeatureFlag } from 'uniswap/src/features/gating/hooks'
88
import { useUnitagByAddress } from 'uniswap/src/features/unitags/hooks'
99
import ENSAvatarIcon from './ENSAvatarIcon'
1010

11-
export default function Identicon({ account, size }: { account?: string; size: number }) {
11+
export enum IdenticonType {
12+
LOADING = 'loading',
13+
UNITAG_PROFILE_PICTURE = 'unitagProfilePicture',
14+
ENS_AVATAR = 'ensAvatar',
15+
UNICON = 'unicon',
16+
UNICON_V2 = 'uniconV2',
17+
}
18+
19+
export function useIdenticonType(account?: string) {
1220
const { unitag, loading: unitagLoading } = useUnitagByAddress(account)
1321
const { avatar, loading: ensAvatarLoading } = useENSAvatar(account)
1422
const uniconV2Enabled = useFeatureFlag(FeatureFlags.UniconsV2)
1523

16-
if (!account) return null
24+
if (!account) return undefined
1725
if (unitagLoading || ensAvatarLoading) {
18-
return <Loader data-testid="IdenticonLoader" size={size + 'px'} />
19-
}
20-
21-
if (unitag?.metadata?.avatar) {
22-
return <UniTagProfilePicture account={account} size={size} />
26+
return IdenticonType.LOADING
27+
} else if (unitag?.metadata?.avatar) {
28+
return IdenticonType.UNITAG_PROFILE_PICTURE
2329
} else if (avatar) {
24-
return <ENSAvatarIcon account={account} size={size} />
30+
return IdenticonType.ENS_AVATAR
2531
} else {
26-
return uniconV2Enabled ? <UniconV2 address={account} size={size} /> : <Unicon address={account} size={size} />
32+
return uniconV2Enabled ? IdenticonType.UNICON_V2 : IdenticonType.UNICON
33+
}
34+
}
35+
36+
export default function Identicon({ account, size }: { account?: string; size: number }) {
37+
const identiconType = useIdenticonType(account)
38+
if (!account) return null
39+
40+
switch (identiconType) {
41+
case IdenticonType.LOADING:
42+
return <Loader data-testid="IdenticonLoader" size={size + 'px'} />
43+
case IdenticonType.UNITAG_PROFILE_PICTURE:
44+
return <UniTagProfilePicture account={account} size={size} />
45+
case IdenticonType.ENS_AVATAR:
46+
return <ENSAvatarIcon account={account} size={size} />
47+
case IdenticonType.UNICON_V2:
48+
return <UniconV2 address={account} size={size} />
49+
case IdenticonType.UNICON:
50+
return <Unicon address={account} size={size} />
51+
default:
52+
return null
2753
}
2854
}

apps/web/src/components/Popups/PopupContent.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ const StyledClose = styled(X)<{ $padding: number }>`
3333
cursor: pointer;
3434
}
3535
`
36-
const PopupContainer = styled.div<{ padded?: boolean }>`
36+
export const PopupContainer = styled.div<{ padded?: boolean }>`
3737
display: inline-block;
3838
width: 100%;
3939
background-color: ${({ theme }) => theme.surface1};
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,48 @@
1+
import Column from 'components/Column'
2+
import Identicon, { IdenticonType, useIdenticonType } from 'components/Identicon'
3+
import { PopupContainer } from 'components/Popups/PopupContent'
4+
import Row from 'components/Row'
5+
import { Trans } from 'i18n'
6+
import { useAtom } from 'jotai'
7+
import { atomWithStorage } from 'jotai/utils'
8+
import { X } from 'react-feather'
9+
import styled from 'styled-components'
10+
import { ClickableStyle, ThemedText } from 'theme/components'
11+
import { useAccount } from 'wagmi'
12+
13+
const StyledColumn = styled(Column)`
14+
width: 242px;
15+
`
16+
17+
const StyledClose = styled(X)`
18+
right: 10px;
19+
top: 10px;
20+
stroke: ${({ theme }) => theme.neutral2};
21+
22+
${ClickableStyle}
23+
`
24+
25+
export const showUniconV2InfoPopupAtom = atomWithStorage('showUniconV2InfoPopup', true)
26+
27+
export default function UniconV2InfoPopup() {
28+
const account = useAccount()
29+
const isUniconV2 = useIdenticonType(account.address) === IdenticonType.UNICON_V2
30+
const [showUniconV2InfoPopup, setShowUniconV2InfoPopup] = useAtom(showUniconV2InfoPopupAtom)
31+
32+
return isUniconV2 && account.isConnected && showUniconV2InfoPopup ? (
33+
<PopupContainer>
34+
<Row align="flex-start" justify="space-between" padding="12px" gap="md">
35+
<Identicon account={account.address} size={40} />
36+
<StyledColumn>
37+
<ThemedText.BodyPrimary>
38+
<Trans>Your Unicon got a new look</Trans>
39+
</ThemedText.BodyPrimary>
40+
<ThemedText.BodySecondary>
41+
<Trans>We gave your wallet&apos;s unique Unicon a makeover.</Trans>
42+
</ThemedText.BodySecondary>
43+
</StyledColumn>
44+
<StyledClose onClick={() => setShowUniconV2InfoPopup(false)} />
45+
</Row>
46+
</PopupContainer>
47+
) : null
48+
}

apps/web/src/components/Popups/index.tsx

+22-3
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,8 @@ import { useActivePopups } from 'state/application/hooks'
33
import styled from 'styled-components'
44
import { Z_INDEX } from 'theme/zIndex'
55

6+
import UniconV2InfoPopup, { showUniconV2InfoPopupAtom } from 'components/Popups/UniconV2InfoPopup'
7+
import { useAtomValue } from 'jotai/utils'
68
import { AutoColumn } from '../Column'
79
import ClaimPopup from './ClaimPopup'
810
import PopupItem from './PopupItem'
@@ -35,9 +37,16 @@ const MobilePopupInner = styled.div`
3537

3638
const FixedPopupColumn = styled(AutoColumn)<{
3739
drawerOpen: boolean
40+
showUniconV2InfoPopup: boolean
3841
}>`
3942
position: fixed;
40-
top: ${({ drawerOpen }) => `${64 + (drawerOpen ? -50 : 0)}px`};
43+
top: ${({ drawerOpen, showUniconV2InfoPopup }) => {
44+
if (showUniconV2InfoPopup) {
45+
return drawerOpen ? '80px' : '64px'
46+
} else {
47+
return drawerOpen ? '14px' : '64px'
48+
}
49+
}};
4150
right: 1rem;
4251
max-width: 348px !important;
4352
width: 100%;
@@ -54,18 +63,28 @@ export default function Popups() {
5463

5564
// get all popups
5665
const activePopups = useActivePopups()
66+
const showUniconV2InfoPopup = useAtomValue(showUniconV2InfoPopupAtom)
67+
68+
const hasPopups = showUniconV2InfoPopup || activePopups?.length > 0
5769

5870
return (
5971
<>
60-
<FixedPopupColumn gap="20px" drawerOpen={isAccountDrawerOpen} data-testid="popups">
72+
<FixedPopupColumn
73+
gap="20px"
74+
drawerOpen={isAccountDrawerOpen}
75+
showUniconV2InfoPopup={showUniconV2InfoPopup}
76+
data-testid="popups"
77+
>
6178
<ClaimPopup />
79+
<UniconV2InfoPopup />
6280
{activePopups.map((item) => (
6381
<PopupItem key={item.key} content={item.content} popKey={item.key} removeAfterMs={item.removeAfterMs} />
6482
))}
6583
</FixedPopupColumn>
66-
{activePopups?.length > 0 && (
84+
{hasPopups && (
6785
<MobilePopupWrapper data-testid="popups">
6886
<MobilePopupInner>
87+
<UniconV2InfoPopup />
6988
{activePopups // reverse so new items up front
7089
.slice(0)
7190
.reverse()

0 commit comments

Comments
 (0)