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

Update types #381

Merged
merged 2 commits into from
Mar 18, 2025
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
6 changes: 3 additions & 3 deletions src/components/Flex.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -2,14 +2,14 @@ import styled from "@emotion/styled";

import { media } from "@themes/breakpoints";

export interface IFlexProps {
export interface FlexProps {
justifyContent?: "start" | "flex-end" | "space-around" | "space-between" | "center";
alignItems?: "start" | "end" | "center" | "inherit" | "unset" | "flex-end" | "flex-start" | "baseline";
crossAxisSize?: "min" | "max";
mainAxisSize?: "fit-content" | "stretch";
}

export const Row = styled.div<IFlexProps>`
export const Row = styled.div<FlexProps>`
display: flex;
flex-direction: row;
justify-content: ${({ justifyContent }) => justifyContent ?? "start"};
Expand All @@ -18,7 +18,7 @@ export const Row = styled.div<IFlexProps>`
width: ${({ mainAxisSize }) => (mainAxisSize === "fit-content" ? "fit-content" : "100%")};
`;

export const Column = styled.div<IFlexProps>`
export const Column = styled.div<FlexProps>`
display: flex;
flex-direction: column;
justify-content: ${({ justifyContent }) => justifyContent ?? "start"};
Expand Down
4 changes: 2 additions & 2 deletions src/components/Header/MobileMenu.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -12,14 +12,14 @@ import { SmartFlex } from "../SmartFlex";
import { MenuNav } from "./MenuNav";
import WalletAddressButton from "./WalletAddressButton";

interface IProps {
interface MobileMenuProps {
isOpen: boolean;
onAccountClick: () => void;
onWalletConnect: () => void;
onClose: () => void;
}

const MobileMenu: React.FC<IProps> = observer(({ isOpen, onAccountClick, onWalletConnect, onClose }) => {
const MobileMenu: React.FC<MobileMenuProps> = observer(({ isOpen, onAccountClick, onWalletConnect, onClose }) => {
const { accountStore } = useStores();

const handleAccountClick = () => {
Expand Down
4 changes: 2 additions & 2 deletions src/components/Input.tsx
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import React, { ChangeEvent } from "react";
import styled from "@emotion/styled";

interface IProps
interface InputProps
extends Omit<React.DetailedHTMLProps<React.InputHTMLAttributes<HTMLInputElement>, HTMLInputElement>, "onChange"> {
value?: string;
onChange?: (e: ChangeEvent<HTMLInputElement>) => void;
Expand All @@ -28,7 +28,7 @@ const Root = styled.div`
}
`;

const Input: React.FC<IProps> = ({ value, onChange, placeholder, disabled, ...rest }) => {
const Input: React.FC<InputProps> = ({ value, onChange, placeholder, disabled, ...rest }) => {
return (
<>
<Root {...rest}>
Expand Down
4 changes: 2 additions & 2 deletions src/components/MenuOverlay.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -3,15 +3,15 @@ import styled from "@emotion/styled";

import { SmartFlex } from "./SmartFlex";

interface IProps {
interface MenuOverlayProps {
isOpen: boolean;
top?: number;
offsetTop?: number;
zIndex?: number;
children?: React.ReactNode;
}

const MenuOverlay: React.FC<IProps> = ({ isOpen, children, top = 0, offsetTop = 0, zIndex = 200 }) => {
const MenuOverlay: React.FC<MenuOverlayProps> = ({ isOpen, children, top = 0, offsetTop = 0, zIndex = 200 }) => {
const fullOffset = top + offsetTop;

useLayoutEffect(() => {
Expand Down
6 changes: 3 additions & 3 deletions src/components/SearchInput.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -8,14 +8,14 @@ import search from "@assets/icons/search.svg";

import Input from "./Input";

interface IProps {
interface WrapProps {
value: string;
onChange: (v: string) => void;
placeholder?: string;
variant?: "default" | "transparent";
}

const Wrap = styled.div<{ variant: IProps["variant"] }>`
const Wrap = styled.div<{ variant: WrapProps["variant"] }>`
display: flex;
flex-direction: row;
align-items: center;
Expand Down Expand Up @@ -58,7 +58,7 @@ const Wrap = styled.div<{ variant: IProps["variant"] }>`
}}
`;

const SearchInput: React.FC<IProps> = ({ value, onChange, placeholder, variant = "default" }) => {
const SearchInput: React.FC<WrapProps> = ({ value, onChange, placeholder, variant = "default" }) => {
return (
<Wrap variant={variant}>
<img alt="search" src={search} width={24} />
Expand Down
12 changes: 6 additions & 6 deletions src/components/Select.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -10,24 +10,24 @@ import { Column } from "./Flex";
import Text, { TEXT_TYPES_MAP } from "./Text";
import Tooltip from "./Tooltip";

interface IOption<T = string> {
interface SelectOption<T = string> {
key: T;
title: string | JSX.Element;
value?: string | number;
disabled?: boolean;
}

interface IProps<T> extends Omit<HTMLAttributes<HTMLDivElement>, "onSelect"> {
options: IOption<T>[];
interface SelectProps<T> extends Omit<HTMLAttributes<HTMLDivElement>, "onSelect"> {
options: SelectOption<T>[];
selected?: T;
onSelect: (option: IOption<T>, index: number) => void;
onSelect: (option: SelectOption<T>, index: number) => void;
label?: string;
}

const Select = <T,>({ options, selected, onSelect, label, ...rest }: IProps<T>) => {
const Select = <T,>({ options, selected, onSelect, label, ...rest }: SelectProps<T>) => {
const [isVisible, setIsVisible] = useState(false);
const selectedOption = options.find(({ key }) => selected === key);
const handleSelectClick = (v: IOption<T>, index: number) => {
const handleSelectClick = (v: SelectOption<T>, index: number) => {
onSelect(v, index);
setIsVisible(false);
};
Expand Down
4 changes: 2 additions & 2 deletions src/components/SelectAssets/AssetBlock.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ import BN from "@utils/BN";

import { AssetBlockData } from "./SelectAssetsInput";

export interface IAssetBlock {
export interface AssetBlockProps {
options: {
showBalance?: "balance" | "walletBalance" | "contractBalance";
showNullBalance?: boolean;
Expand All @@ -24,7 +24,7 @@ export interface IAssetBlock {
type?: "rounded" | "square";
}

const AssetBlock: React.FC<IAssetBlock> = observer(
const AssetBlock: React.FC<AssetBlockProps> = observer(
({
styleToken,
options: { showBalance = "balance", showNullBalance = true, isShowBalance = true },
Expand Down
4 changes: 2 additions & 2 deletions src/components/SelectAssets/SelectAssetsInput.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import { useTheme } from "@emotion/react";
import styled from "@emotion/styled";

import Button from "@components/Button";
import { IAssetBlock } from "@components/SelectAssets/AssetBlock";
import { AssetBlockProps } from "@components/SelectAssets/AssetBlock";
import { SmartFlex } from "@components/SmartFlex";
import { BigNumberInput } from "@components/TokenInput/BigNumberInput";

Expand Down Expand Up @@ -32,7 +32,7 @@ interface IProps extends Omit<HTMLAttributes<HTMLDivElement>, "onSelect"> {
onChangeValue: (value: BN) => void;
label?: string;
dataAssets: AssetBlockData[];
showBalance: IAssetBlock["options"]["showBalance"];
showBalance: AssetBlockProps["options"]["showBalance"];
amount: BN;
decimals?: number;
}
Expand Down
4 changes: 2 additions & 2 deletions src/components/SizedBox.tsx
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
import React, { HTMLAttributes } from "react";
interface IProps extends HTMLAttributes<HTMLDivElement> {
interface SizedBoxProps extends HTMLAttributes<HTMLDivElement> {
width?: number;
height?: number;
}
const SizedBox: React.FunctionComponent<IProps> = ({ width, height, style, ...rest }) => (
const SizedBox: React.FunctionComponent<SizedBoxProps> = ({ width, height, style, ...rest }) => (
<div style={{ width, height, display: "flex", flex: "0 0 auto", ...style }} {...rest} />
);

Expand Down
8 changes: 4 additions & 4 deletions src/components/Slider.tsx
Original file line number Diff line number Diff line change
@@ -1,20 +1,20 @@
import React from "react";
import styled from "@emotion/styled";
import RCSlider, { SliderProps } from "rc-slider";
import RCSlider, { SliderProps as RcSliderProps } from "rc-slider";

import { Row } from "@components/Flex";
import { TEXT_TYPES_MAP } from "@components/Text";
import { media } from "@themes/breakpoints";

import "rc-slider/assets/index.css";

interface IProps {
interface SliderProps {
percent?: number;
symbol?: string;
fixSize?: number;
}

const Slider: React.FC<SliderProps & IProps> = (props) => (
const Slider: React.FC<SliderProps & RcSliderProps> = (props) => (
<Root>
<DotsContainer>
{Array.from({ length: 10 }, (_, i) => (
Expand Down Expand Up @@ -69,7 +69,7 @@ const Root = styled.div`
}
`;

const StyledSlider = styled(RCSlider)<IProps>`
const StyledSlider = styled(RCSlider)<SliderProps>`
padding: 0;

.rc-slider-rail {
Expand Down
4 changes: 2 additions & 2 deletions src/components/Tab.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,12 @@ import styled from "@emotion/styled";

import Text from "@components/Text";

interface IProps {
interface TabProps {
active?: boolean;
disabled?: boolean;
}

const Tab = styled(Text)<IProps>`
const Tab = styled(Text)<TabProps>`
display: flex;
height: 34px;
align-items: center;
Expand Down
4 changes: 2 additions & 2 deletions src/components/Table.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -8,15 +8,15 @@ import Text, { TEXT_TYPES_MAP } from "@components/Text";
import { SmartFlex } from "./SmartFlex";
import Tooltip from "./Tooltip";

interface IProps {
interface TableProps {
columns: ColumnDef<any, any>[];
data: any[];
fitContent?: boolean;
withHover?: boolean;
loading?: boolean;
}

const Table: React.FC<IProps> = observer(({ columns, data, fitContent, withHover, loading, ...rest }) => {
const Table: React.FC<TableProps> = observer(({ columns, data, fitContent, withHover, loading, ...rest }) => {
const table = useReactTable({
columns,
data,
Expand Down
4 changes: 2 additions & 2 deletions src/components/Text.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -156,7 +156,7 @@ export const TEXT_TYPES_MAP = {

type TEXT_TYPES = keyof typeof TEXT_TYPES_MAP;

interface IProps {
interface TextProps {
type?: TEXT_TYPES;
uppercase?: boolean;
primary?: boolean;
Expand All @@ -169,7 +169,7 @@ interface IProps {
attention?: boolean;
}

const Text = styled.div<IProps>`
const Text = styled.div<TextProps>`
white-space: ${({ nowrap }) => (nowrap ? "nowrap" : "normal")};
${({ attention, primary, secondary, greenLight, disabled, theme, color }) =>
(() => {
Expand Down
6 changes: 3 additions & 3 deletions src/components/TokenInput/AmountInput.tsx
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
import React from "react";
import styled from "@emotion/styled";

type TProps = React.InputHTMLAttributes<HTMLInputElement> & {
type AmountInputProps = {
small?: boolean;
onWheel?: React.WheelEventHandler<HTMLInputElement>;
onBlur?: React.FocusEventHandler<HTMLInputElement>;
onFocus?: React.FocusEventHandler<HTMLInputElement>;
inputRef?: React.RefObject<HTMLInputElement>;
};
} & React.InputHTMLAttributes<HTMLInputElement>;

const AmountInput: React.FC<TProps> = ({ onWheel, inputRef, ...props }) => (
const AmountInput: React.FC<AmountInputProps> = ({ onWheel, inputRef, ...props }) => (
<Root
{...props}
ref={inputRef}
Expand Down
4 changes: 2 additions & 2 deletions src/components/TokenInput/TokenInput.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ import { FuelNetwork } from "@blockchain";
import AmountInput from "./AmountInput";
import { BigNumberInput } from "./BigNumberInput";

interface IProps {
interface TokenInputProps {
assetId?: string;
decimals: number;
displayDecimals?: number;
Expand All @@ -32,7 +32,7 @@ interface IProps {
isShowMax?: boolean;
}

const TokenInput: React.FC<IProps> = observer((props) => {
const TokenInput: React.FC<TokenInputProps> = observer((props) => {
const bcNetwork = FuelNetwork.getInstance();

const [focused, setFocused] = useState(false);
Expand Down
4 changes: 2 additions & 2 deletions src/components/Tooltip.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import { usePopperTooltip } from "react-popper-tooltip";
import { Config } from "react-popper-tooltip/dist/types";
import styled from "@emotion/styled";

interface IProps {
interface TooltipProps {
content: string | JSX.Element;
config?: Config;
fixed?: boolean;
Expand All @@ -13,7 +13,7 @@ interface IProps {
children: React.ReactNode;
}

const Tooltip: React.FC<IProps> = ({ containerStyles, rootStyles, children, content, config }) => {
const Tooltip: React.FC<TooltipProps> = ({ containerStyles, rootStyles, children, content, config }) => {
const { getTooltipProps, setTooltipRef, setTriggerRef, triggerRef, visible } = usePopperTooltip({
...config,
});
Expand Down
8 changes: 4 additions & 4 deletions src/hooks/useMedia.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,14 +2,14 @@ import { breakpoints, BreakPointTypes } from "@themes/breakpoints";

import { useWindowSize } from "./useWindowSize";

type TMediaBreakpoints = Record<BreakPointTypes, boolean>;
export interface IMedia extends TMediaBreakpoints {
type MediaBreakpoints = Record<BreakPointTypes, boolean>;
export interface Media extends MediaBreakpoints {
currentMedia: BreakPointTypes;
}

export const useMedia = (): IMedia => {
export const useMedia = (): Media => {
const { width } = useWindowSize();
const media: TMediaBreakpoints = {
const media: MediaBreakpoints = {
mobile: width <= breakpoints.mobile,
desktop: width > breakpoints.mobile,
};
Expand Down
4 changes: 2 additions & 2 deletions src/screens/Assets/ActionModal.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import { useTheme } from "@emotion/react";
import styled from "@emotion/styled";
import { motion } from "framer-motion";

import { IAssetBlock } from "@components/SelectAssets/AssetBlock";
import { AssetBlockProps } from "@components/SelectAssets/AssetBlock";
import { SmartFlex } from "@components/SmartFlex";
import Text from "@components/Text";
import { media } from "@themes/breakpoints";
Expand All @@ -21,7 +21,7 @@ import { getExplorerLinkByHash } from "@utils/getExplorerLink";
export type ActionModal = {
hash: string;
transactionInfo: {
token: IAssetBlock["token"];
token: AssetBlockProps["token"];
type: TypeTransaction;
amount: string;
};
Expand Down
4 changes: 2 additions & 2 deletions src/screens/Assets/BalanceBlock/BalanceBlock.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -11,14 +11,14 @@ import { useStores } from "@stores";
import { DEFAULT_DECIMALS } from "@constants";
import BN from "@utils/BN";

interface IBalanceBlock {
interface BalanceBlockProps {
icon: React.ReactElement;
nameWallet: string;
token: AssetBlockData;
showBalance: "balance" | "walletBalance" | "contractBalance";
}

export const BalanceBlock: React.FC<IBalanceBlock> = ({ icon, nameWallet, token, showBalance }) => {
export const BalanceBlock: React.FC<BalanceBlockProps> = ({ icon, nameWallet, token, showBalance }) => {
const { oracleStore } = useStores();
const theme = useTheme();
const price = BN.formatUnits(oracleStore.getTokenIndexPrice(token.asset.priceFeed), DEFAULT_DECIMALS);
Expand Down
4 changes: 2 additions & 2 deletions src/screens/Assets/DepositAssets/DepositAssets.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import styled from "@emotion/styled";
import { observer } from "mobx-react";

import Button from "@components/Button";
import { IAssetBlock } from "@components/SelectAssets/AssetBlock";
import { AssetBlockProps } from "@components/SelectAssets/AssetBlock";
import SelectAssetsInput from "@components/SelectAssets/SelectAssetsInput";
import { SmartFlex } from "@components/SmartFlex";
import Text from "@components/Text";
Expand All @@ -29,7 +29,7 @@ interface DepositAssetsProps {
const DepositAssets: React.FC<DepositAssetsProps> = observer(({ setStep }) => {
const { quickAssetsStore, balanceStore } = useStores();

const [currentAsset, setCurrentAssets] = useState<IAssetBlock["token"]>();
const [currentAsset, setCurrentAssets] = useState<AssetBlockProps["token"]>();
const [amount, setAmount] = useState(BN.ZERO);
const [isLoading, setIsLoading] = useState(false);

Expand Down
Loading