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

Issue 4398 - How to buy $JOY #4513

Merged
merged 8 commits into from
Sep 13, 2023
Merged
Show file tree
Hide file tree
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
4 changes: 4 additions & 0 deletions packages/ui/src/app/pages/Profile/MyAccounts.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,9 @@ import { PageHeaderWrapper, PageLayout } from '@/app/components/PageLayout'
import { RowGapBlock } from '@/common/components/page/PageContent'
import { PageTitle } from '@/common/components/page/PageTitle'
import { Statistics, TokenValueStat } from '@/common/components/statistics'
import { useLocalStorage } from '@/common/hooks/useLocalStorage'

import { BannerSection } from './components/BannerSection'
import { MyProfileTabs } from './components/MyProfileTabs'

const hints = {
Expand Down Expand Up @@ -52,6 +54,7 @@ export const MyAccounts = () => {
const { total, transferable, locked, recoverable, vestingTotal, vestedClaimable, vestingLocked } =
useMyTotalBalances()
const { hasAccounts, isLoading } = useMyAccounts()
const [shouldDismissBanner, setShouldDismissBanner] = useLocalStorage<boolean>('buy-joy-banner') ?? false
const shouldHideStatistics = !hasAccounts && !isLoading

return (
Expand All @@ -62,6 +65,7 @@ export const MyAccounts = () => {
<PageTitle>My Profile</PageTitle>
<MyProfileTabs />
</PageHeaderWrapper>
{!shouldDismissBanner && <BannerSection setShouldDismissBanner={setShouldDismissBanner} />}
{!shouldHideStatistics && (
<Statistics>
<TokenValueStat {...hints.total} value={total} />
Expand Down
78 changes: 78 additions & 0 deletions packages/ui/src/app/pages/Profile/components/BannerSection.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,78 @@
import React from 'react'
import styled from 'styled-components'

import { CloseButton } from '@/common/components/buttons'
import { LinkButtonLinkStyles } from '@/common/components/buttons/LinkButtons'
import { Arrow, QuestionIcon } from '@/common/components/icons'
import { RowGapBlock } from '@/common/components/page/PageContent'
import { DefaultTooltip } from '@/common/components/Tooltip'
import { TextInlineMedium, TextMedium } from '@/common/components/typography/Text'
import { Colors } from '@/common/constants'

interface Props {
setShouldDismissBanner: (bool: boolean) => void
}

export const BannerSection = ({ setShouldDismissBanner }: Props) => {
return (
<Banner gap={8}>
<BannerHeader>
<BannerTitle>
<BannerTooltip>
<QuestionIcon />
</BannerTooltip>
<TextInlineMedium bold={true}>What is Joy Token?</TextInlineMedium>
</BannerTitle>
<CloseButton onClick={() => setShouldDismissBanner(true)} />
</BannerHeader>
<TextMedium>
JOY token is a native crypto asset of Joystream blockchain. It is used for platform governance, purchasing NFTs,
trading creator tokens, and covering blockchain processing fees. They are listed on&nbsp;
<CustomLinkStyle
as={'a'}
to={''}
href="https://www.mexc.com/exchange/JOYSTREAM_USDT?_from=market"
target="_blank"
size={'medium'}
>
<TextInlineMedium>MEXC</TextInlineMedium>
</CustomLinkStyle>
&nbsp;exchange under "JOYSTREAM" ticker.
</TextMedium>
<TextLink href="https://www.joystream.org/token#earn" target="_blank">
<TextInlineMedium bold={true}>Learn how to earn JOY's</TextInlineMedium> <Arrow size={'24'} direction="right" />
</TextLink>
</Banner>
)
}
const Banner = styled(RowGapBlock)`
padding: 16px;
background-color: ${Colors.Blue[50]};
`
const BannerHeader = styled.div`
display: flex;
justify-content: space-between;
`
const BannerTitle = styled.h6`
display: flex;
column-gap: 8px;
`

const TextLink = styled.a`
color: ${Colors.Blue[500]};
display: flex;
column-gap: 8px;
width: 213px;

${TextInlineMedium} {
margin: auto 0px;
}
`
const BannerTooltip = styled(DefaultTooltip)`
margin-top: 1px;
`
const CustomLinkStyle = styled(LinkButtonLinkStyles)`
display: inline-flex;
// margin-left: 2px;
// margin-right: 2px;
`
5 changes: 4 additions & 1 deletion packages/ui/src/common/components/Tooltip/Tooltip.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,11 @@ import { LinkSymbol, LinkSymbolStyle } from '../icons/symbols'

import { DefaultTooltip } from './TooltipDefault'

type TooltipPlacement = 'top-start' | 'top-end' | 'bottom-start' | 'bottom-end'
export interface TooltipProps extends Omit<TooltipPopupProps, 'popUpHandlers' | 'position'> {
absolute?: boolean
maxWidth?: boolean
placement?: TooltipPlacement
children: React.ReactNode
}

Expand Down Expand Up @@ -45,6 +47,7 @@ export interface DarkTooltipInnerItemProps {
export const Tooltip = ({
absolute,
maxWidth,
placement,
children,
tooltipText,
tooltipOpen = false,
Expand All @@ -64,7 +67,7 @@ export const Tooltip = ({
const [boundaryElement, setBoundaryElement] = useState<HTMLElement | null>(null)

const { styles, attributes } = usePopper(referenceElementRef, popperElementRef, {
placement: 'bottom-start',
placement: placement || 'bottom-start',
modifiers: [
{
name: 'offset',
Expand Down
48 changes: 46 additions & 2 deletions packages/ui/src/memberships/components/ProfileComponent.tsx
Original file line number Diff line number Diff line change
@@ -1,9 +1,12 @@
import React from 'react'
import styled from 'styled-components'

import { QuestionIcon } from '@/common/components/icons'
import { Tooltip, DefaultTooltip } from '@/common/components/Tooltip'

import { TransferButtonStyled } from '../../accounts/components/TransferButton'
import { useMyTotalBalances } from '../../accounts/hooks/useMyTotalBalances'
import { TokenValue } from '../../common/components/typography'
import { TextSmall, TokenValue } from '../../common/components/typography'
import { Colors } from '../../common/constants'

import { Memberships } from '.'
Expand All @@ -18,7 +21,23 @@ export function ProfileComponent() {
<MemberBalance>
<BalanceTitle>Total Balance</BalanceTitle>
<TotalBalance>
<TotalTokenValue value={total} />
<TokenDetail>
<TotalTokenValue value={total} />
<StyledTooltip
tooltipLinkText="Learn how to earn JOY’s"
tooltipLinkURL="https://www.joystream.org/token#earn"
placement="top-start"
>
<StyledDefaultTooltip>
<QuestionIcon />
</StyledDefaultTooltip>
</StyledTooltip>
</TokenDetail>
<TextSmall>
<BuyTokenLink href="https://www.joystream.org/token/#exchanges" target="_blank">
Buy Joy tokens
</BuyTokenLink>
</TextSmall>
</TotalBalance>
<TransferButtonStyled />
</MemberBalance>
Expand Down Expand Up @@ -79,8 +98,33 @@ const TotalBalance = styled.span`
line-height: 24px;
color: ${Colors.White};
font-weight: 700;
flex-direction: column;
`

const TotalTokenValue = styled(TokenValue)`
color: ${Colors.White};
`
const BuyTokenLink = styled.a`
color: ${Colors.White};
font-weight: 400;
text-decoration: underline;
thesan marked this conversation as resolved.
Show resolved Hide resolved
`
const TokenDetail = styled.div`
display: flex;
column-gap: 8px;
`
const StyledDefaultTooltip = styled(DefaultTooltip)`
margin-top: 4px;
`
const StyledTooltip = styled(Tooltip)`
background-color: ${Colors.Black[75]};
border-color: ${Colors.Black[300]};
a {
color: ${Colors.Blue[500]};
font-weight: 700;
}
:after {
background-color: ${Colors.Black[75]};
border-color: ${Colors.Black[300]};
}
`