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

fix the ui of mnemonic page #1721

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
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
141 changes: 71 additions & 70 deletions packages/app/src/systems/Core/components/Mnemonic/Mnemonic.tsx
Original file line number Diff line number Diff line change
@@ -1,32 +1,33 @@
import { cssObj } from '@fuel-ui/css';
import { Box, Button, Grid, Icon, toast } from '@fuel-ui/react';
import { MNEMONIC_SIZES } from 'fuels';
import type { ClipboardEvent } from 'react';
import { useEffect, useState } from 'react';
import { cssObj } from "@fuel-ui/css";
import { Box, Button, Grid, Icon, toast } from "@fuel-ui/react";
import { MNEMONIC_SIZES } from "fuels";
import type { ClipboardEvent } from "react";
import { useEffect, useState } from "react";

import { MnemonicInput } from './MnemonicInput';
import { MnemonicInput } from "./MnemonicInput";
import React from "react";

const WORDS = import.meta.env.VITE_MNEMONIC_WORDS;

function fillArray(item: string[], format: number) {
return Array.from({ length: format }).map((_, idx) => item[idx] || '');
return Array.from({ length: format }).map((_, idx) => item[idx] || "");
}

function splitSeedPhrase(str: string) {
return str.trim().split(/\s+/);
}

function checkMoreThanOneWord(word: string) {
if (word.split(' ').length > 1) {
const first = word.split(' ')[0];
if (word.split(" ").length > 1) {
const first = word.split(" ")[0];
const half = first.slice(0, first.length / 2);
return `${half}${half}` === first ? half : first;
}
return word;
}

export type MnemonicProps = {
type: 'read' | 'write';
type: "read" | "write";
value?: string[];
onFilled?: (val: string[]) => void;
onChange?: (val: string[]) => void;
Expand Down Expand Up @@ -58,9 +59,9 @@ export function Mnemonic({
);

async function handleCopy() {
const val = type === 'read' ? initialValue : value;
await navigator.clipboard.writeText(val.join(' '));
toast.success('Seed phrase copied to clipboard');
const val = type === "read" ? initialValue : value;
await navigator.clipboard.writeText(val.join(" "));
toast.success("Seed phrase copied to clipboard");
}

function handlePaste(words: string[]) {
Expand All @@ -73,7 +74,7 @@ export function Mnemonic({
}

function handlePasteInput(ev: ClipboardEvent<HTMLInputElement>, idx: number) {
const text = ev.clipboardData.getData('text/plain');
const text = ev.clipboardData.getData("text/plain");
const words = splitSeedPhrase(text);

// Only allow paste on the first input or
Expand Down Expand Up @@ -132,7 +133,7 @@ export function Mnemonic({
</select>
</Box.Flex>
)}
{type === 'read' ? (
{type === "read" ? (
<Grid css={styles.words}>
{initialValue?.map((word, idx) => (
// biome-ignore lint/suspicious/noArrayIndexKey: <explanation>
Expand Down Expand Up @@ -162,7 +163,7 @@ export function Mnemonic({
</Grid>
)}
<Box.Flex as="footer" css={styles.footer}>
{type === 'read' ? (
{type === "read" ? (
<Button
aria-label="Copy seed phrase"
size="sm"
Expand Down Expand Up @@ -190,89 +191,89 @@ export function Mnemonic({

const styles = {
root: cssObj({
layer: 'layer-card',
borderRadius: '$default',
layer: "layer-card",
borderRadius: "$default",
}),
formatWrapper: cssObj({
p: '$3',
borderBottom: '1px solid $bodyBg',
gap: '$1',
alignItems: 'center',
justifyContent: 'flex-end',
p: "$3",
borderBottom: "1px solid $bodyBg",
gap: "$1",
alignItems: "center",
justifyContent: "flex-end",

// TODO: should replace with a <Select> component in fuel-ui
// Dne: should replace with a <Select> component in fuel-ui
select: {
backgroundColor: 'transparent',
color: '$intentsBase12',
border: 'none',
paddingRight: '$1',
fontSize: '$sm',
backgroundColor: "#1c1c1c",
color: "$intentsBase12",
border: "none",
paddingRight: "$1",
fontSize: "$sm",

'&:focus-visible': {
outline: 'none',
"&:focus-visible": {
outline: "none",
},
},
}),
words: cssObj({
px: '$3',
py: '$3',
gridTemplateColumns: 'repeat(3, 1fr)',
gridTemplateRows: 'repeat(4, 1fr)',
gridColumnGap: '$4',
gridRowGap: '$2',
px: "$3",
py: "$3",
gridTemplateColumns: "repeat(3, 1fr)",
gridTemplateRows: "repeat(4, 1fr)",
gridColumnGap: "$4",
gridRowGap: "$2",
}),
word: cssObj({
position: 'relative',
position: "relative",
fontFamily: '"Source Code Pro", monospace',
fontSize: '$sm',
fontSize: "$sm",

'&::before': {
w: '14px',
textAlign: 'right',
display: 'inline-block',
content: 'attr(data-idx)',
color: '$intentsBase8',
mr: '$2',
"&::before": {
w: "14px",
textAlign: "right",
display: "inline-block",
content: "attr(data-idx)",
color: "$intentsBase8",
mr: "$2",
},
}),
inputWrapper: cssObj({
boxSizing: 'border-box',
gridTemplateColumns: '14px 1fr',
gridColumnGap: '8px',
boxSizing: "border-box",
gridTemplateColumns: "14px 1fr",
gridColumnGap: "8px",

'&, input': {
"&, input": {
fontFamily: '"Source Code Pro", monospace',
fontSize: '$sm',
fontSize: "$sm",
},
span: {
color: '$intentsBase8',
textAlign: 'right',
color: "$intentsBase8",
textAlign: "right",
},
input: {
padding: 0,
width: '100%',
appearance: 'none',
border: 'none',
background: 'transparent',
borderBottom: '1px dashed $border',
color: '$intentsBase11',
width: "100%",
appearance: "none",
border: "none",
background: "transparent",
borderBottom: "1px dashed $border",
color: "$intentsBase11",

'&:focus': {
outline: 'none',
borderColor: '$intentsBase8',
"&:focus": {
outline: "none",
borderColor: "$intentsBase8",
},
},
}),
footer: cssObj({
px: '$3',
py: '$3',
boxSizing: 'border-box',
alignItems: 'center',
justifyContent: 'center',
gap: '$4',
px: "$3",
py: "$3",
boxSizing: "border-box",
alignItems: "center",
justifyContent: "center",
gap: "$4",

'.fuel_Button': {
px: '$8',
".fuel_Button": {
px: "$8",
},
}),
};