Skip to content

Commit

Permalink
Remove Flex
Browse files Browse the repository at this point in the history
  • Loading branch information
kien-ngo committed Sep 25, 2024
1 parent 074ad39 commit ae14290
Show file tree
Hide file tree
Showing 29 changed files with 88 additions and 96 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ export const EngineContractSubscriptions: React.FC<
.
</Text>
</Flex>
<Flex>
<div className="flex flex-row">
<FormControl display="flex" alignItems="center">
<FormLabel htmlFor="auto-update" mb="0">
Auto-Update
Expand All @@ -47,7 +47,7 @@ export const EngineContractSubscriptions: React.FC<
id="auto-update"
/>
</FormControl>
</Flex>
</div>
</Flex>
<ContractSubscriptionTable
instanceUrl={instanceUrl}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -80,9 +80,9 @@ export const EngineOverview: React.FC<EngineOverviewProps> = ({
<Flex flexDirection="row-reverse">
<Flex alignItems="center" gap={2}>
<Text>Show balance for</Text>
<Flex>
<div className="flex flex-row">
<NetworkSelectorButton />
</Flex>
</div>
</Flex>
</Flex>
</Flex>
Expand All @@ -104,7 +104,7 @@ export const EngineOverview: React.FC<EngineOverviewProps> = ({
</Text>
</Flex>

<Flex>
<div className="flex flex-row">
<FormControl display="flex" alignItems="center">
<FormLabel htmlFor="auto-update" mb="0">
Auto-Update
Expand All @@ -115,7 +115,7 @@ export const EngineOverview: React.FC<EngineOverviewProps> = ({
id="auto-update"
/>
</FormControl>
</Flex>
</div>
</Flex>
<TransactionsTable
transactions={transactionsQuery.data?.transactions ?? []}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -480,15 +480,15 @@ const TransactionDetailsDrawer = ({
{/* On-chain details */}

<FormControl>
<Flex>
<div className="flex flex-row">
<FormLabel>Value</FormLabel>
<Tooltip
label={`The amount of ${symbol} sent to the "To" .`}
shouldWrapChildren
>
<FiInfo />
</Tooltip>
</Flex>
</div>
<Text>
{transaction.value
? toTokens(BigInt(transaction.value), decimals)
Expand Down Expand Up @@ -527,45 +527,45 @@ const TransactionDetailsDrawer = ({
<Stack spacing={4}>
{transaction.nonce && (
<FormControl>
<Flex>
<div className="flex flex-row">
<FormLabel>Nonce</FormLabel>
<Tooltip
label="The nonce value this transaction was submitted to mempool."
shouldWrapChildren
>
<FiInfo />
</Tooltip>
</Flex>
</div>
<Text>{transaction.nonce ?? "N/A"}</Text>
</FormControl>
)}

{transaction.gasLimit && (
<FormControl>
<Flex>
<div className="flex flex-row">
<FormLabel>Gas Units</FormLabel>
<Tooltip
label="The gas units spent for this transaction."
shouldWrapChildren
>
<FiInfo />
</Tooltip>
</Flex>
</div>
<Text>{Number(transaction.gasLimit).toLocaleString()}</Text>
</FormControl>
)}

{transaction.gasPrice && (
<FormControl>
<Flex>
<div className="flex flex-row">
<FormLabel>Gas Price</FormLabel>
<Tooltip
label="The price in wei spent for each gas unit."
shouldWrapChildren
>
<FiInfo />
</Tooltip>
</Flex>
</div>
<Text>{Number(transaction.gasPrice).toLocaleString()}</Text>
</FormControl>
)}
Expand Down
4 changes: 2 additions & 2 deletions apps/dashboard/src/components/ipfs-upload/dropzone.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -377,7 +377,7 @@ const FileUpload: React.FC<FileUploadProps> = ({ files, updateFiles }) => {
</Button>
</Flex>
)}
<Flex direction="column">
<div className="flex flex-col">
<Divider flexShrink={0} />
<Flex
direction={{ base: "column-reverse", md: "row" }}
Expand Down Expand Up @@ -532,7 +532,7 @@ const FileUpload: React.FC<FileUploadProps> = ({ files, updateFiles }) => {
)}
</ButtonGroup>
</Flex>
</Flex>
</div>
</Flex>
);
};
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -233,7 +233,7 @@ export const ApplyForOpCreditsForm: React.FC<ApplyForOpCreditsFormProps> = ({
<FormHelperText>Minimum 150 characters recommended.</FormHelperText>
</FormControl>
</Flex>
<Flex>
<div className="flex flex-row">
<Button
w="full"
type="submit"
Expand All @@ -242,7 +242,7 @@ export const ApplyForOpCreditsForm: React.FC<ApplyForOpCreditsFormProps> = ({
>
{form.formState.isSubmitting ? "Applying..." : "Apply now"}
</Button>
</Flex>
</div>
</Flex>
);
};
4 changes: 2 additions & 2 deletions apps/dashboard/src/components/onboarding/PaymentForm.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -127,15 +127,15 @@ export const OnboardingPaymentForm: React.FC<OnboardingPaymentForm> = ({
variant="left-accent"
bg="inputBg"
>
<Flex>
<div className="flex flex-row">
<AlertIcon boxSize={4} mt={1} ml={1} />
<Flex flexDir="column" gap={1} pl={1}>
<AlertDescription as={Text} fontSize="body.md">
A temporary hold will be placed and immediately released
on your payment method.
</AlertDescription>
</Flex>
</Flex>
</div>
</Alert>
)}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ export const ProductLearnMoreCard: React.FC<ProductLearnMoreCardProps> = ({
}) => {
return (
<Flex direction="column" justify="space-between" align="flex-start" gap={4}>
<Flex direction="column">
<div className="flex flex-col">
<Flex alignItems="center" gap={2}>
<ChakraNextImage src={icon} placeholder="empty" alt="" w={8} />
<Heading size="title.sm" as="h3">
Expand All @@ -37,7 +37,7 @@ export const ProductLearnMoreCard: React.FC<ProductLearnMoreCardProps> = ({
<Text size="body.lg" mt="16px">
{description}
</Text>
</Flex>
</div>
<TrackedLink
width="auto"
href={href}
Expand Down
Original file line number Diff line number Diff line change
@@ -1,11 +1,4 @@
import {
Box,
Fade,
Flex,
SimpleGrid,
Stack,
useDisclosure,
} from "@chakra-ui/react";
import { Box, Fade, SimpleGrid, Stack, useDisclosure } from "@chakra-ui/react";
import { useEffect, useRef, useState } from "react";
import { Card, Text } from "tw-components";
import { NavCard } from "./NavCard";
Expand Down Expand Up @@ -83,15 +76,15 @@ export const HoverMenu: React.FC<HoverMenuProps> = ({
borderRadius="8px"
width={width}
>
<Flex>
<div className="flex flex-row">
<Stack>
<SimpleGrid columns={columns} gap={2}>
{items.map((item) => (
<NavCard key={item.label} {...item} />
))}
</SimpleGrid>
</Stack>
</Flex>
</div>
</Card>
</Fade>
</Box>
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { Box, Flex, Icon, Stack } from "@chakra-ui/react";
import { Box, Icon, Stack } from "@chakra-ui/react";
import { ChakraNextImage } from "components/Image";
import { Text, TrackedLink } from "tw-components";
import type { SectionItemProps, SectionProps } from "./types";
Expand Down Expand Up @@ -34,15 +34,15 @@ export const NavCard: React.FC<SectionItemProps | SectionProps> = ({
mr={2}
/>
)}
<Flex direction="column">
<div className="flex flex-col">
<Text
fontWeight="bold"
color={comingSoon ? "whiteAlpha.400" : "white"}
>
{name} {comingSoon && "(coming soon)"}
</Text>
<Text color="whiteAlpha.500">{description}</Text>
</Flex>
</div>
</Stack>
</Box>
</TrackedLink>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -119,7 +119,7 @@ export const NestedHoverMenu: React.FC<NestedHoverMenuProps> = ({
borderRadius="8px"
width={WIDTH}
>
<Flex>
<div className="flex flex-row">
<Flex
flexDir="column"
borderRight="1px"
Expand Down Expand Up @@ -152,7 +152,7 @@ export const NestedHoverMenu: React.FC<NestedHoverMenuProps> = ({
</SimpleGrid>
</Stack>
</Flex>
</Flex>
</div>
</Card>
</Fade>
</Box>
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { Box, Flex, Stack } from "@chakra-ui/react";
import { Box, Stack } from "@chakra-ui/react";
import type { IconType } from "@react-icons/all-files";
import type { StaticImageData } from "next/image";
import { Text } from "tw-components";
Expand Down Expand Up @@ -27,15 +27,15 @@ export const ProductNavCard: React.FC<ProductSectionItemProps> = ({
cursor="default"
>
<Stack direction="row" align="center" spacing={3}>
<Flex direction="column">
<div className="flex flex-col">
<Text
fontWeight="bold"
color={comingSoon ? "whiteAlpha.400" : "white"}
>
{name} {comingSoon && "(coming soon)"}
</Text>
<Text color="whiteAlpha.500">{description}</Text>
</Flex>
</div>
</Stack>
</Box>
);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -346,7 +346,7 @@ const BillingAlertNotification: React.FC<BillingAlertNotificationProps> = ({
/>
</OnboardingModal>

<Flex>
<div className="flex flex-row">
<AlertIcon boxSize={4} mt={1} ml={1} />
<Flex flexDir="column" pl={1}>
<AlertTitle>
Expand All @@ -357,7 +357,7 @@ const BillingAlertNotification: React.FC<BillingAlertNotificationProps> = ({
<AlertDescription mb={2} as={Flex} direction="column">
<Text mb={showCTAs ? "4" : "0"}>{description}</Text>
{showCTAs && (
<Flex>
<div className="flex flex-row">
{isBilling && account ? (
<ManageBillingButton
account={account}
Expand Down Expand Up @@ -390,11 +390,11 @@ const BillingAlertNotification: React.FC<BillingAlertNotificationProps> = ({
>
Contact Support
</TrackedLinkButton>
</Flex>
</div>
)}
</AlertDescription>
</Flex>
</Flex>
</div>

{onDismiss && (
<IconButton
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ export const PaymentVerificationFailureAlert: React.FC<
variant="left-accent"
bg="inputBg"
>
<Flex>
<div className="flex flex-row">
<AlertIcon boxSize={4} mt={1} ml={1} />
<Flex flexDir="column" pl={1}>
<AlertTitle>
Expand Down Expand Up @@ -57,7 +57,7 @@ export const PaymentVerificationFailureAlert: React.FC<
</Flex>
</AlertDescription>
</Flex>
</Flex>
</div>
</Alert>
);
};
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ export const RecurringPaymentFailureAlert: React.FC<
/>
</OnboardingModal>

<Flex>
<div className="flex flex-row">
<AlertIcon boxSize={4} mt={1} ml={1} />
<Flex flexDir="column" pl={1}>
<AlertTitle>
Expand All @@ -95,7 +95,7 @@ export const RecurringPaymentFailureAlert: React.FC<
: "We will retry several times over the next 10 days after your invoice date, after which you will lose access to your services."}
</Text>
{affectedServices.length > 0 && (
<Flex direction="column">
<div className="flex flex-col">
<Text>Affected services:</Text>
<UnorderedList mb={4}>
{affectedServices.map((service) => (
Expand All @@ -104,9 +104,9 @@ export const RecurringPaymentFailureAlert: React.FC<
</li>
))}
</UnorderedList>
</Flex>
</div>
)}
<Flex>
<div className="flex flex-row">
{account && (
<ManageBillingButton
account={account}
Expand Down Expand Up @@ -135,11 +135,11 @@ export const RecurringPaymentFailureAlert: React.FC<
>
Contact Support
</TrackedLinkButton>
</Flex>
</div>
</Flex>
</AlertDescription>
</Flex>
</Flex>
</div>

{onDismiss && (
<IconButton
Expand Down
4 changes: 2 additions & 2 deletions apps/dashboard/src/components/settings/ApiKeys/Alerts.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ export const SmartWalletsBillingAlert = ({
variant="left-accent"
bg="backgroundCardHighlight"
>
<Flex>
<div className="flex flex-row">
<AlertIcon boxSize={4} mt={1} ml={1} />
<Flex flexDir="column" gap={1} pl={1}>
<AlertTitle>Account Abstraction on Mainnet</AlertTitle>
Expand All @@ -60,7 +60,7 @@ export const SmartWalletsBillingAlert = ({
</TrackedLink>
</AlertDescription>
</Flex>
</Flex>
</div>

{dismissable && (
<IconButton
Expand Down
Loading

0 comments on commit ae14290

Please sign in to comment.