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

Feature/token indexer flow #68

Closed
wants to merge 1 commit into from
Closed
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
126 changes: 126 additions & 0 deletions src/components/form/AddIndexerBlockchainNetworks/cmp.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,126 @@
import React from 'react'
import {
Icon,
TextInput,
Button,
Dropdown,
DropdownOption,
} from '@aleph-front/aleph-core'
import {
useAddIndexerBlockchainNetworks,
useIndexerBlockchainNetworkItem,
} from '@/hooks/form/useAddIndexerBlockchainNetworks'
import {
IndexerBlockchainNetworkItemProps,
AddIndexerBlockchainNetworksProps,
} from './types'
import NoisyContainer from '@/components/common/NoisyContainer'

const IndexerBlockchainNetworkItem = React.memo(
(props: IndexerBlockchainNetworkItemProps) => {
const { idCtrl, blockchainCtrl, rpcUrlCtrl, networks, handleRemove } =
useIndexerBlockchainNetworkItem(props)

return (
<>
<div tw="mt-4">
<TextInput
{...idCtrl.field}
{...idCtrl.fieldState}
label="Id"
placeholder="ethereum-mainnet"
/>
</div>
<div tw="mt-4">
<Dropdown
{...blockchainCtrl.field}
{...blockchainCtrl.fieldState}
label="Blockchain"
placeholder="ethereum"
>
{networks.map((value) => (
<DropdownOption key={value} value={value}>
{value}
</DropdownOption>
))}
</Dropdown>
</div>

<div tw="mt-4">
<TextInput
{...rpcUrlCtrl.field}
{...rpcUrlCtrl.fieldState}
label="RPC node url"
placeholder="https://eth.mainnet.rpc/url"
/>
</div>
{/* <div tw="mt-4">
<TextInput
{...abiUrlCtrl.field}
{...abiUrlCtrl.fieldState}
label="ABI url"
placeholder="https://eth.scan/path-to-abi-address-will-be-replaced/$ADDRESS"
/>
</div> */}
<div tw="mt-4 pt-6 text-right">
<Button
color="main2"
variant="secondary"
kind="neon"
size="regular"
type="button"
onClick={handleRemove}
>
<Icon name="trash" tw="mr-4" /> Remove
</Button>
</div>
</>
)
},
)
IndexerBlockchainNetworkItem.displayName = 'IndexerBlockchainNetworkItem'

export const AddIndexerBlockchainNetworks = React.memo(
(props: AddIndexerBlockchainNetworksProps) => {
const { name, control, fields, handleAdd, handleRemove } =
useAddIndexerBlockchainNetworks(props)

return (
<>
{fields.length > 0 && (
<NoisyContainer>
<div tw="flex flex-col gap-x-6 gap-y-4">
{fields.map((field, index) => (
<IndexerBlockchainNetworkItem
key={field.id}
{...{
name,
index,
control,
defaultValue: field,
onRemove: handleRemove,
}}
/>
))}
</div>
</NoisyContainer>
)}
<div tw="mt-6 mx-6">
<Button
type="button"
onClick={handleAdd}
color="main0"
variant="secondary"
kind="neon"
size="regular"
>
Add network
</Button>
</div>
</>
)
},
)
AddIndexerBlockchainNetworks.displayName = 'AddIndexerBlockchainNetworks'

export default AddIndexerBlockchainNetworks
2 changes: 2 additions & 0 deletions src/components/form/AddIndexerBlockchainNetworks/index.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
export { default } from './cmp'
export type { AddIndexerBlockchainNetworksProps } from './types'
13 changes: 13 additions & 0 deletions src/components/form/AddIndexerBlockchainNetworks/types.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
import { Control } from 'react-hook-form'

export type IndexerBlockchainNetworkItemProps = {
name?: string
index: number
control: Control
onRemove: (index?: number) => void
}

export type AddIndexerBlockchainNetworksProps = {
name: string
control: Control
}
153 changes: 153 additions & 0 deletions src/components/form/AddIndexerTokenAccounts/cmp.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,153 @@
import React from 'react'
import {
Icon,
TextInput,
Button,
Dropdown,
DropdownOption,
} from '@aleph-front/aleph-core'
import {
useAddIndexerTokenAccounts,
useIndexerTokenAccountItem,
} from '@/hooks/form/useAddIndexerTokenAccounts'
import {
IndexerTokenAccountItemProps,
AddIndexerTokenAccountsProps,
} from './types'
import NoisyContainer from '@/components/common/NoisyContainer'

const IndexerTokenAccountItem = React.memo(
(props: IndexerTokenAccountItemProps) => {
const {
networkCtrl,
contractCtrl,
deployerCtrl,
supplyCtrl,
decimalsCtrl,
decimalsValue,
networks,
supplyPreview,
decimalsHandleChange,
handleRemove,
} = useIndexerTokenAccountItem(props)

return (
<>
<div tw="mt-4">
<Dropdown
{...networkCtrl.field}
{...networkCtrl.fieldState}
label="Blockchain"
placeholder="ethereum"
>
{networks.map(({ id }) => (
<DropdownOption key={id} value={id}>
{id}
</DropdownOption>
))}
</Dropdown>
</div>
<div tw="mt-4">
<TextInput
{...contractCtrl.field}
{...contractCtrl.fieldState}
label="Contract address"
placeholder="0x27702a26126e0B3702af63Ee09aC4d1A084EF628"
/>
</div>
<div tw="mt-4">
<TextInput
{...deployerCtrl.field}
{...deployerCtrl.fieldState}
label="Deployer address"
placeholder="0xb6e45ADfa0C7D70886bBFC990790d64620F1BAE8"
/>
</div>
<div tw="mt-4">
<TextInput
{...supplyCtrl.field}
{...supplyCtrl.fieldState}
type="number"
label="Initial token supply"
placeholder="500000000000000000000000000"
/>
</div>
<div tw="mt-4">
<TextInput
{...decimalsCtrl.field}
{...decimalsCtrl.fieldState}
value={decimalsValue}
onChange={decimalsHandleChange}
type="number"
label="Token decimals"
placeholder="18"
/>
</div>
{supplyPreview && (
<div tw="mt-4 text-ellipsis overflow-hidden opacity-50">
Supply: {supplyPreview}
</div>
)}
<div tw="mt-4 pt-6 text-right">
<Button
color="main2"
variant="secondary"
kind="neon"
size="regular"
type="button"
onClick={handleRemove}
>
<Icon name="trash" tw="mr-4" /> Remove
</Button>
</div>
</>
)
},
)
IndexerTokenAccountItem.displayName = 'IndexerTokenAccountItem'

export const AddIndexerTokenAccounts = React.memo(
(props: AddIndexerTokenAccountsProps) => {
const { name, control, fields, networks, handleAdd, handleRemove } =
useAddIndexerTokenAccounts(props)

return (
<>
{fields.length > 0 && (
<NoisyContainer>
<div tw="flex flex-col gap-x-6 gap-y-4">
{fields.map((field, index) => (
<IndexerTokenAccountItem
key={field.id}
{...{
name,
index,
control,
defaultValue: field,
networks,
onRemove: handleRemove,
}}
/>
))}
</div>
</NoisyContainer>
)}
<div tw="mt-6 mx-6">
<Button
type="button"
onClick={handleAdd}
color="main0"
variant="secondary"
kind="neon"
size="regular"
>
Add network
</Button>
</div>
</>
)
},
)
AddIndexerTokenAccounts.displayName = 'AddIndexerTokenAccounts'

export default AddIndexerTokenAccounts
2 changes: 2 additions & 0 deletions src/components/form/AddIndexerTokenAccounts/index.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
export { default } from './cmp'
export type { AddIndexerTokenAccountsProps } from './types'
16 changes: 16 additions & 0 deletions src/components/form/AddIndexerTokenAccounts/types.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
import { IndexerBlockchainNetworkField } from '@/hooks/form/useAddIndexerBlockchainNetworks'
import { Control } from 'react-hook-form'

export type IndexerTokenAccountItemProps = {
name?: string
index: number
control: Control
networks?: IndexerBlockchainNetworkField[]
onRemove: (index?: number) => void
}

export type AddIndexerTokenAccountsProps = {
name: string
control: Control
networks: IndexerBlockchainNetworkField[]
}
2 changes: 1 addition & 1 deletion src/components/form/AddNameAndTags/types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import { EntityType } from '@/helpers/constants'
import { Control } from 'react-hook-form'

export type AddNameAndTagsProps = {
entityType: EntityType.Instance | EntityType.Program
entityType: EntityType.Instance | EntityType.Program | EntityType.Indexer
name?: string
control: Control
}
35 changes: 23 additions & 12 deletions src/components/pages/HomePage/cmp.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -132,18 +132,29 @@ export default function HomePage() {
<strong>decentralized indexers</strong> on{' '}
<strong>Aleph.im&apos;s infrastructure</strong>.
</p>
<Button
forwardedAs="a"
href="https://bit.ly/3GAAjii"
target="_blank"
kind="neon"
variant="primary"
size="big"
color="main0"
tw="!my-0"
>
Get in touch with us
</Button>
<div tw="flex gap-6 flex-wrap items-center">
<Button
kind="neon"
variant="primary"
size="big"
color="main2"
onClick={navigate.indexer}
>
Create Indexer
</Button>
<Button
forwardedAs="a"
href="https://bit.ly/3GAAjii"
target="_blank"
kind="neon"
variant="primary"
size="big"
color="main0"
tw="!my-0"
>
Get in touch with us
</Button>
</div>
</Col>
</Row>
</Container>
Expand Down
Loading