-
Notifications
You must be signed in to change notification settings - Fork 327
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: ✨ add memo tag support on send flow for LLD
- Loading branch information
1 parent
f63c04f
commit e7bf0e9
Showing
39 changed files
with
640 additions
and
324 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
--- | ||
"ledger-live-desktop": minor | ||
--- | ||
|
||
Unify the Memo/Tag input wording, tooltip for coins that support memo tag except (solana, ton, stellar -> at this scoping level we decided not to touch the flow/wording of memo for those coins) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
27 changes: 27 additions & 0 deletions
27
apps/ledger-live-desktop/src/newArch/features/MemoTag/__tests__/LearnMoreCta.test.tsx
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
/** | ||
* @jest-environment jsdom | ||
*/ | ||
import React from "react"; | ||
import { fireEvent, render, screen } from "tests/testUtils"; | ||
import * as LinkingHelpers from "~/renderer/linking"; | ||
import LearnMoreCta from "../components/LearnMoreCta"; | ||
|
||
jest.mock("~/renderer/linking", () => ({ | ||
openURL: jest.fn(), | ||
})); | ||
|
||
describe("MemoTagInfoBody", () => { | ||
it("should display MemoTagInfoBody correctly", async () => { | ||
render(<LearnMoreCta url="example.domain.com" />); | ||
|
||
const learnMoreLink = screen.getByText(/Learn more about Tag\/Memo/); | ||
|
||
expect(learnMoreLink).toBeVisible(); | ||
|
||
fireEvent.click(learnMoreLink); | ||
|
||
jest.spyOn(LinkingHelpers, "openURL"); | ||
// spec: when a user clicks on the learn more link, it should open the link | ||
expect(LinkingHelpers.openURL).toHaveBeenCalledWith("example.domain.com"); | ||
}); | ||
}); |
54 changes: 54 additions & 0 deletions
54
apps/ledger-live-desktop/src/newArch/features/MemoTag/__tests__/MemoTagField.test.tsx
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,54 @@ | ||
/** | ||
* @jest-environment jsdom | ||
*/ | ||
|
||
import React from "react"; | ||
import { render, screen, fireEvent } from "tests/testUtils"; | ||
import MemoTagField from "../components/MemoTagField"; | ||
|
||
jest.mock("react-i18next", () => ({ | ||
...jest.requireActual("react-i18next"), | ||
useTranslation: () => ({ | ||
t: (key: string) => key, | ||
}), | ||
})); | ||
|
||
describe("MemoTagField", () => { | ||
it("renders MemoTagField with label and text field", () => { | ||
render(<MemoTagField showLabel={true} />); | ||
expect(screen.getByText("MemoTagField.label")).toBeInTheDocument(); | ||
expect(screen.getByRole("textbox")).toBeInTheDocument(); | ||
expect(screen.getByPlaceholderText("MemoTagField.placeholder")).toBeInTheDocument(); | ||
}); | ||
|
||
it("should render MemoTagField without label", () => { | ||
render(<MemoTagField showLabel={false} />); | ||
expect(screen.queryByText("MemoTagField.label")).not.toBeInTheDocument(); | ||
}); | ||
|
||
it("should call onChange when input value changes", () => { | ||
const handleChange = jest.fn(); | ||
render(<MemoTagField onChange={handleChange} />); | ||
fireEvent.change(screen.getByPlaceholderText("MemoTagField.placeholder"), { | ||
target: { value: "new memo" }, | ||
}); | ||
expect(handleChange).toHaveBeenCalledTimes(1); | ||
}); | ||
|
||
it("should render CaracterCountComponent if provided", () => { | ||
const CaracterCountComponent = () => <div>Character Count</div>; | ||
render(<MemoTagField CaracterCountComponent={CaracterCountComponent} />); | ||
expect(screen.getByText("Character Count")).toBeInTheDocument(); | ||
}); | ||
|
||
it("should render instruction text on autoFocus", () => { | ||
render(<MemoTagField autoFocus />); | ||
expect(screen.getByPlaceholderText("MemoTagField.placeholder")).toHaveFocus(); | ||
expect(screen.getByText("MemoTagField.instruction")).toBeInTheDocument(); | ||
}); | ||
|
||
it("should render with error", () => { | ||
render(<MemoTagField error={new Error("Error message")} />); | ||
expect(screen.getByTestId("input-error")).toBeInTheDocument(); | ||
}); | ||
}); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
41 changes: 41 additions & 0 deletions
41
apps/ledger-live-desktop/src/newArch/features/MemoTag/components/LearnMoreCta.tsx
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,41 @@ | ||
import React from "react"; | ||
import { Link } from "@ledgerhq/react-ui"; | ||
import { Trans } from "react-i18next"; | ||
import { openURL } from "~/renderer/linking"; | ||
import { useLocalizedUrl } from "~/renderer/hooks/useLocalizedUrls"; | ||
|
||
type LearnMoreCtaProps = { | ||
size?: "small" | "medium" | "large"; | ||
color?: string; | ||
style?: React.CSSProperties; | ||
Icon?: React.ComponentType<{ size: number; color?: string }>; | ||
url: string; | ||
}; | ||
|
||
const LearnMoreCta = ({ | ||
size = "small", | ||
color = "neutral.c80", | ||
style, | ||
Icon, | ||
url, | ||
}: LearnMoreCtaProps) => { | ||
const localizedUrl = useLocalizedUrl(url); | ||
|
||
if (!localizedUrl) return null; | ||
|
||
const handleOpenLMLink = () => openURL(localizedUrl); | ||
|
||
return ( | ||
<Link | ||
size={size} | ||
color={color} | ||
onClick={handleOpenLMLink} | ||
style={style} | ||
{...(Icon && { Icon })} | ||
> | ||
<Trans i18nKey="common.memoTag.learnMore" /> | ||
</Link> | ||
); | ||
}; | ||
|
||
export default LearnMoreCta; |
78 changes: 78 additions & 0 deletions
78
apps/ledger-live-desktop/src/newArch/features/MemoTag/components/MemoTagField.tsx
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,78 @@ | ||
import React from "react"; | ||
import Input, { Props as InputBaseProps } from "~/renderer/components/Input"; | ||
import Label from "~/renderer/components/Label"; | ||
import Box from "~/renderer/components/Box"; | ||
import { useTranslation } from "react-i18next"; | ||
import { Flex, Text, Tooltip } from "@ledgerhq/react-ui"; | ||
import styled from "styled-components"; | ||
import InfoCircle from "~/renderer/icons/InfoCircle"; | ||
|
||
const TooltipContainer = styled(Box)` | ||
background-color: ${({ theme }) => theme.colors.palette.neutral.c100}; | ||
padding: 10px; | ||
border-radius: 4px; | ||
display: flex; | ||
gap: 8px; | ||
`; | ||
|
||
const InstructionText = styled(Text)` | ||
color: ${({ theme }) => theme.colors.primary.c80}; | ||
margin-top: 6px; | ||
font-size: 12px; | ||
line-height: 16.8px; | ||
`; | ||
|
||
type MemoTagFieldProps = InputBaseProps & { | ||
maxMemoLength?: number; | ||
showLabel?: boolean; | ||
CaracterCountComponent?: React.FC; | ||
autoFocus?: boolean; | ||
}; | ||
|
||
const MemoTagField = ({ | ||
warning, | ||
error, | ||
value, | ||
onChange, | ||
showLabel = true, | ||
maxMemoLength, | ||
CaracterCountComponent, | ||
autoFocus, | ||
}: MemoTagFieldProps) => { | ||
const { t } = useTranslation(); | ||
return ( | ||
<Box flow={1}> | ||
{showLabel && ( | ||
<Label> | ||
<Flex> | ||
<span>{t("MemoTagField.label")}</span> | ||
| ||
<Tooltip | ||
placement="top" | ||
content={<TooltipContainer>{t("MemoTagField.information")}</TooltipContainer>} | ||
> | ||
<InfoCircle size={16} /> | ||
</Tooltip> | ||
</Flex> | ||
</Label> | ||
)} | ||
<Flex flexDirection="column" justifyContent="center"> | ||
<Flex justifyContent="end">{CaracterCountComponent && <CaracterCountComponent />}</Flex> | ||
<Input | ||
placeholder={t("MemoTagField.placeholder")} | ||
onChange={onChange} | ||
warning={warning} | ||
error={error} | ||
value={value} | ||
spellCheck="false" | ||
ff="Inter" | ||
maxMemoLength={maxMemoLength} | ||
autoFocus={autoFocus} | ||
/> | ||
{autoFocus && <InstructionText>{t("MemoTagField.instruction")}</InstructionText>} | ||
</Flex> | ||
</Box> | ||
); | ||
}; | ||
|
||
export default MemoTagField; |
42 changes: 14 additions & 28 deletions
42
apps/ledger-live-desktop/src/newArch/features/MemoTag/components/MemoTagInfoBody.tsx
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,33 +1,19 @@ | ||
import React from "react"; | ||
import { Link, Text } from "@ledgerhq/react-ui"; | ||
import { Text } from "@ledgerhq/react-ui"; | ||
import { Trans } from "react-i18next"; | ||
import { openURL } from "~/renderer/linking"; | ||
import { MEMO_TAG_LEARN_MORE_LINK } from "../constants"; | ||
import LearnMoreCta from "./LearnMoreCta"; | ||
import { urls } from "~/config/urls"; | ||
|
||
const MemoTagInfoBody = () => { | ||
const handleOpenLMLink = () => openURL(MEMO_TAG_LEARN_MORE_LINK); | ||
|
||
return ( | ||
<div data-testid="memo-tag-info-body"> | ||
<Text variant="paragraphLineHeight" color="neutral.c80" fontSize={13}> | ||
<Trans i18nKey="receive.memoTag.description"> | ||
<Text variant="paragraphLineHeight" fontWeight="700" color="neutral.c90"></Text> | ||
</Trans> | ||
</Text> | ||
<br /> | ||
<Link | ||
size="small" | ||
color={"neutral.c80"} | ||
onClick={handleOpenLMLink} | ||
textProps={{ | ||
fontSize: "13px", | ||
}} | ||
style={{ textDecoration: "underline" }} | ||
> | ||
<Trans i18nKey="receive.memoTag.learnMore" /> | ||
</Link> | ||
</div> | ||
); | ||
}; | ||
const MemoTagInfoBody = () => ( | ||
<div data-testid="memo-tag-info-body"> | ||
<Text variant="paragraphLineHeight" color="neutral.c80" fontSize={13}> | ||
<Trans i18nKey="receive.memoTag.description"> | ||
<Text variant="paragraphLineHeight" fontWeight="700" color="neutral.c90"></Text> | ||
</Trans> | ||
</Text> | ||
<br /> | ||
<LearnMoreCta style={{ textDecoration: "underline" }} url={urls.memoTag.learnMore} /> | ||
</div> | ||
); | ||
|
||
export default MemoTagInfoBody; |
36 changes: 36 additions & 0 deletions
36
apps/ledger-live-desktop/src/newArch/features/MemoTag/components/MemoTagSendInfo.tsx
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,36 @@ | ||
import { Flex, Icons } from "@ledgerhq/react-ui"; | ||
import React from "react"; | ||
import { useTranslation } from "react-i18next"; | ||
import { useTheme } from "styled-components"; | ||
import LearnMoreCta from "LLD/features/MemoTag/components/LearnMoreCta"; | ||
import { CircleWrapper } from "~/renderer/components/CryptoCurrencyIcon"; | ||
import Text from "~/renderer/components/Text"; | ||
import { urls } from "~/config/urls"; | ||
|
||
const MemoTagSendInfo = () => { | ||
const theme = useTheme(); | ||
const { t } = useTranslation(); | ||
return ( | ||
<Flex justifyContent="center" alignItems="center" width="100%"> | ||
<Flex justifyContent="center" flexDirection="column" alignItems="center" width={343}> | ||
<CircleWrapper color={theme.colors.palette.opacityDefault.c05} size={72}> | ||
<Icons.InformationFill size="L" color="primary.c80" /> | ||
</CircleWrapper> | ||
<Text fontSize={20} fontWeight={600} color="neutral.c100" mt={3}> | ||
{t("send.info.needMemoTag.title")} | ||
</Text> | ||
<Text fontSize={13} fontWeight={400} color="neutral.c80" mt={4} textAlign="center"> | ||
{t("send.info.needMemoTag.description")} | ||
</Text> | ||
<LearnMoreCta | ||
color={theme.colors.wallet} | ||
style={{ fontSize: "13px", marginTop: 6 }} | ||
Icon={() => <Icons.ExternalLink size="S" />} | ||
url={urls.memoTag.learnMore} | ||
/> | ||
</Flex> | ||
</Flex> | ||
); | ||
}; | ||
|
||
export default MemoTagSendInfo; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.