Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
F
frontend
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
vicotor
frontend
Commits
5ba54851
Commit
5ba54851
authored
Aug 10, 2022
by
tom
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
delete duplicated types
parent
a21554b1
Changes
12
Hide whitespace changes
Inline
Side-by-side
Showing
12 changed files
with
14 additions
and
81 deletions
+14
-81
index.ts
pages/api/account/api-keys/index.ts
+1
-1
index.ts
pages/api/account/private-tags/address/index.ts
+1
-1
index.ts
pages/api/account/private-tags/transaction/index.ts
+1
-1
account.ts
pages/api/types/account.ts
+0
-70
account.ts
types/api/account.ts
+2
-2
account.ts
types/client/account.ts
+3
-0
ApiKeyForm.tsx
ui/apiKey/ApiKeyModal/ApiKeyForm.tsx
+1
-1
ApiKeyModal.tsx
ui/apiKey/ApiKeyModal/ApiKeyModal.tsx
+1
-1
ApiKeyTable.tsx
ui/apiKey/ApiKeyTable/ApiKeyTable.tsx
+1
-1
ApiKeyTableItem.tsx
ui/apiKey/ApiKeyTable/ApiKeyTableItem.tsx
+1
-1
DeleteApiKeyModal.tsx
ui/apiKey/DeleteApiKeyModal.tsx
+1
-1
ApiKeys.tsx
ui/pages/ApiKeys.tsx
+1
-1
No files found.
pages/api/account/api-keys/index.ts
View file @
5ba54851
import
type
{
ApiKeys
}
from
'
pages/api/types
/account
'
;
import
type
{
ApiKeys
}
from
'
types/api
/account
'
;
import
handler
from
'
pages/api/utils/handler
'
;
import
handler
from
'
pages/api/utils/handler
'
;
...
...
pages/api/account/private-tags/address/index.ts
View file @
5ba54851
import
type
{
AddressTags
}
from
'
pages/api/types
/account
'
;
import
type
{
AddressTags
}
from
'
types/api
/account
'
;
import
handler
from
'
pages/api/utils/handler
'
;
import
handler
from
'
pages/api/utils/handler
'
;
...
...
pages/api/account/private-tags/transaction/index.ts
View file @
5ba54851
import
type
{
TransactionTags
}
from
'
pages/api/types
/account
'
;
import
type
{
TransactionTags
}
from
'
types/api
/account
'
;
import
handler
from
'
pages/api/utils/handler
'
;
import
handler
from
'
pages/api/utils/handler
'
;
...
...
pages/api/types/account.ts
deleted
100644 → 0
View file @
a21554b1
// FIXME: here are types of the elixir api's responses
// and in types/api/ folder we have types of the node api's responses
// maybe they are always the same and there is no need to keep two separate files with types
export
interface
AddressTag
{
address_hash
:
string
;
name
:
string
;
id
:
string
;
}
export
type
AddressTags
=
Array
<
AddressTag
>
export
interface
ApiKey
{
api_key
:
string
;
name
:
string
;
}
export
type
ApiKeys
=
Array
<
ApiKey
>
export
interface
ModelError
{
message
:
string
;
}
export
interface
NotificationDirection
{
incoming
:
boolean
;
outcoming
:
boolean
;
}
export
interface
NotificationSettings
{
_native
?:
NotificationDirection
;
erc20
?:
NotificationDirection
;
erc7211155
?:
NotificationDirection
;
}
export
interface
Transaction
{
fromAddressHash
?:
string
;
toAddressHash
?:
string
;
createdContractAddressHash
?:
string
;
}
export
interface
TransactionTag
{
transaction_hash
:
string
;
name
:
string
;
id
:
string
;
}
export
type
TransactionTags
=
Array
<
TransactionTag
>
export
type
Transactions
=
Array
<
Transaction
>
export
interface
UserInfo
{
name
?:
string
;
nickname
?:
string
;
email
?:
string
;
}
export
interface
WatchlistAddress
{
addressHash
:
string
;
addressName
:
string
;
addressBalance
:
number
;
coinName
:
string
;
exchangeRate
?:
number
;
notificationSettings
:
NotificationSettings
;
}
export
interface
WatchlistAddressNew
{
addressName
:
string
;
notificationSettings
:
NotificationSettings
;
}
export
type
WatchlistAddresses
=
Array
<
WatchlistAddress
>
types/api/account.ts
View file @
5ba54851
...
@@ -7,8 +7,8 @@ export interface AddressTag {
...
@@ -7,8 +7,8 @@ export interface AddressTag {
export
type
AddressTags
=
Array
<
AddressTag
>
export
type
AddressTags
=
Array
<
AddressTag
>
export
interface
ApiKey
{
export
interface
ApiKey
{
api
K
ey
:
string
;
api
_k
ey
:
string
;
apiKeyN
ame
:
string
;
n
ame
:
string
;
}
}
export
type
ApiKeys
=
Array
<
ApiKey
>
export
type
ApiKeys
=
Array
<
ApiKey
>
...
...
types/client/account.ts
0 → 100644
View file @
5ba54851
// here will be types if some back-end models are needed to be extended
// in order to fit the client's needs
export
{};
ui/apiKey/ApiKeyModal/ApiKeyForm.tsx
View file @
5ba54851
...
@@ -10,7 +10,7 @@ import React, { useCallback, useEffect } from 'react';
...
@@ -10,7 +10,7 @@ import React, { useCallback, useEffect } from 'react';
import
type
{
SubmitHandler
,
ControllerRenderProps
}
from
'
react-hook-form
'
;
import
type
{
SubmitHandler
,
ControllerRenderProps
}
from
'
react-hook-form
'
;
import
{
useForm
,
Controller
}
from
'
react-hook-form
'
;
import
{
useForm
,
Controller
}
from
'
react-hook-form
'
;
import
type
{
ApiKey
,
ApiKeys
}
from
'
pages/api/types
/account
'
;
import
type
{
ApiKey
,
ApiKeys
}
from
'
types/api
/account
'
;
type
Props
=
{
type
Props
=
{
data
?:
ApiKey
;
data
?:
ApiKey
;
...
...
ui/apiKey/ApiKeyModal/ApiKeyModal.tsx
View file @
5ba54851
import
React
,
{
useCallback
}
from
'
react
'
;
import
React
,
{
useCallback
}
from
'
react
'
;
import
type
{
ApiKey
}
from
'
pages/api/types
/account
'
;
import
type
{
ApiKey
}
from
'
types/api
/account
'
;
import
FormModal
from
'
ui/shared/FormModal
'
;
import
FormModal
from
'
ui/shared/FormModal
'
;
...
...
ui/apiKey/ApiKeyTable/ApiKeyTable.tsx
View file @
5ba54851
...
@@ -8,7 +8,7 @@ import {
...
@@ -8,7 +8,7 @@ import {
}
from
'
@chakra-ui/react
'
;
}
from
'
@chakra-ui/react
'
;
import
React
from
'
react
'
;
import
React
from
'
react
'
;
import
type
{
ApiKeys
,
ApiKey
}
from
'
pages/api/types
/account
'
;
import
type
{
ApiKeys
,
ApiKey
}
from
'
types/api
/account
'
;
import
ApiKeyTableItem
from
'
./ApiKeyTableItem
'
;
import
ApiKeyTableItem
from
'
./ApiKeyTableItem
'
;
...
...
ui/apiKey/ApiKeyTable/ApiKeyTableItem.tsx
View file @
5ba54851
...
@@ -6,7 +6,7 @@ import {
...
@@ -6,7 +6,7 @@ import {
}
from
'
@chakra-ui/react
'
;
}
from
'
@chakra-ui/react
'
;
import
React
,
{
useCallback
}
from
'
react
'
;
import
React
,
{
useCallback
}
from
'
react
'
;
import
type
{
ApiKey
}
from
'
pages/api/types
/account
'
;
import
type
{
ApiKey
}
from
'
types/api
/account
'
;
import
CopyToClipboard
from
'
ui/shared/CopyToClipboard
'
;
import
CopyToClipboard
from
'
ui/shared/CopyToClipboard
'
;
import
DeleteButton
from
'
ui/shared/DeleteButton
'
;
import
DeleteButton
from
'
ui/shared/DeleteButton
'
;
...
...
ui/apiKey/DeleteApiKeyModal.tsx
View file @
5ba54851
...
@@ -2,7 +2,7 @@ import { Text } from '@chakra-ui/react';
...
@@ -2,7 +2,7 @@ import { Text } from '@chakra-ui/react';
import
{
useMutation
,
useQueryClient
}
from
'
@tanstack/react-query
'
;
import
{
useMutation
,
useQueryClient
}
from
'
@tanstack/react-query
'
;
import
React
,
{
useCallback
}
from
'
react
'
;
import
React
,
{
useCallback
}
from
'
react
'
;
import
type
{
ApiKey
,
ApiKeys
}
from
'
pages/api/types
/account
'
;
import
type
{
ApiKey
,
ApiKeys
}
from
'
types/api
/account
'
;
import
DeleteModal
from
'
ui/shared/DeleteModal
'
;
import
DeleteModal
from
'
ui/shared/DeleteModal
'
;
...
...
ui/pages/ApiKeys.tsx
View file @
5ba54851
...
@@ -2,7 +2,7 @@ import { Box, Button, HStack, Link, Text, Spinner, useDisclosure } from '@chakra
...
@@ -2,7 +2,7 @@ import { Box, Button, HStack, Link, Text, Spinner, useDisclosure } from '@chakra
import
{
useQuery
}
from
'
@tanstack/react-query
'
;
import
{
useQuery
}
from
'
@tanstack/react-query
'
;
import
React
,
{
useCallback
,
useState
}
from
'
react
'
;
import
React
,
{
useCallback
,
useState
}
from
'
react
'
;
import
type
{
ApiKey
,
ApiKeys
}
from
'
pages/api/types
/account
'
;
import
type
{
ApiKey
,
ApiKeys
}
from
'
types/api
/account
'
;
import
{
space
}
from
'
lib/html-entities
'
;
import
{
space
}
from
'
lib/html-entities
'
;
import
ApiKeyModal
from
'
ui/apiKey/ApiKeyModal/ApiKeyModal
'
;
import
ApiKeyModal
from
'
ui/apiKey/ApiKeyModal/ApiKeyModal
'
;
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment