-
Notifications
You must be signed in to change notification settings - Fork 20
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #227 from alleslabs/refactor/overall
refactor: structure and components
- Loading branch information
Showing
230 changed files
with
2,907 additions
and
3,270 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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,14 @@ | ||
export * from "./useFabricateFee"; | ||
export * from "./useSimulateFee"; | ||
export * from "./useRestrictedInput"; | ||
export * from "./useAddress"; | ||
export * from "./useAmplitude"; | ||
export * from "./useCelatoneApp"; | ||
export * from "./useQueryCmds"; | ||
export * from "./useExecuteCmds"; | ||
export * from "./useTokensInfo"; | ||
export * from "./useChainId"; | ||
export * from "./useDummyWallet"; | ||
export * from "./useFabricateFee"; | ||
export * from "./useInternalNavigate"; | ||
export * from "./useLCDEndpoint"; | ||
export * from "./useMediaQuery"; | ||
export * from "./useNetworkChange"; | ||
export * from "./useAmplitude"; | ||
export * from "./useRestrictedInput"; | ||
export * from "./useSelectChain"; | ||
export * from "./useSimulateFee"; | ||
export * from "./useTokensInfo"; |
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
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
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
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,18 +1,16 @@ | ||
import { Flex, Spinner, Text } from "@chakra-ui/react"; | ||
|
||
export const Loading = () => { | ||
return ( | ||
<Flex | ||
borderY="1px solid" | ||
borderColor="pebble.700" | ||
width="full" | ||
py={12} | ||
my={12} | ||
flexDirection="column" | ||
alignItems="center" | ||
> | ||
<Spinner size="xl" speed="0.65s" /> | ||
<Text mt="20px">Loading ...</Text> | ||
</Flex> | ||
); | ||
}; | ||
export const Loading = () => ( | ||
<Flex | ||
borderY="1px solid" | ||
borderColor="pebble.700" | ||
width="full" | ||
py={12} | ||
my={12} | ||
flexDirection="column" | ||
alignItems="center" | ||
> | ||
<Spinner size="xl" speed="0.65s" /> | ||
<Text mt="20px">Loading ...</Text> | ||
</Flex> | ||
); |
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,22 +1,20 @@ | ||
import { Flex, Spinner, Text } from "@chakra-ui/react"; | ||
|
||
export const LoadingOverlay = () => { | ||
return ( | ||
<Flex | ||
w="100vw" | ||
h="100vh" | ||
justify="center" | ||
align="center" | ||
direction="column" | ||
gap={3} | ||
bgColor="background.overlay" | ||
position="absolute" | ||
top={0} | ||
left={0} | ||
zIndex="overlay" | ||
> | ||
<Spinner color="pebble.600" size="xl" /> | ||
<Text variant="body1">Loading ...</Text> | ||
</Flex> | ||
); | ||
}; | ||
export const LoadingOverlay = () => ( | ||
<Flex | ||
w="100vw" | ||
h="100vh" | ||
justify="center" | ||
align="center" | ||
direction="column" | ||
gap={3} | ||
bgColor="background.overlay" | ||
position="absolute" | ||
top={0} | ||
left={0} | ||
zIndex="overlay" | ||
> | ||
<Spinner color="pebble.600" size="xl" /> | ||
<Text variant="body1">Loading ...</Text> | ||
</Flex> | ||
); |
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.
f7b58e5
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Successfully deployed to the following URLs:
osmosis-celatone-frontend-staging – ./
osmosis-celatone-frontend-staging-git-develop-alleslabs.vercel.app
osmosis-celatone-frontend-staging-alleslabs.vercel.app
osmosis-staging.celat.one
celatone-frontend-staging.vercel.app
celatone-staging.osmosis.zone
f7b58e5
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Successfully deployed to the following URLs:
terra-celatone-frontend-staging – ./
terra-celatone-frontend-staging-alleslabs.vercel.app
terra-celatone-frontend-staging.vercel.app
terra-staging.celat.one
terra-celatone-frontend-staging-git-develop-alleslabs.vercel.app