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
ba705b5d
Commit
ba705b5d
authored
Jul 18, 2022
by
tom
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
transfer ui components
parent
69f1b453
Changes
15
Hide whitespace changes
Inline
Side-by-side
Showing
15 changed files
with
27 additions
and
27 deletions
+27
-27
ApiKeyModal.tsx
ui/apiKey/ApiKeyModal/ApiKeyModal.tsx
+1
-1
ApiKeyTableItem.tsx
ui/apiKey/ApiKeyTable/ApiKeyTableItem.tsx
+3
-3
DeleteApiKeyModal.tsx
ui/apiKey/DeleteApiKeyModal.tsx
+1
-1
AddressForm.tsx
ui/privateTags/AddressModal/AddressForm.tsx
+2
-2
AddressModal.tsx
ui/privateTags/AddressModal/AddressModal.tsx
+1
-1
AddressTagTableItem.tsx
ui/privateTags/AddressTagTable/AddressTagTableItem.tsx
+4
-4
DeletePrivateTagModal.tsx
ui/privateTags/DeletePrivateTagModal.tsx
+1
-1
TransactionForm.tsx
ui/privateTags/TransactionModal/TransactionForm.tsx
+2
-2
TransactionModal.tsx
ui/privateTags/TransactionModal/TransactionModal.tsx
+1
-1
TransactionTagTableItem.tsx
...ivateTags/TransactionTagTable/TransactionTagTableItem.tsx
+3
-3
AddressForm.tsx
ui/watchlist/AddressModal/AddressForm.tsx
+2
-2
AddressModal.tsx
ui/watchlist/AddressModal/AddressModal.tsx
+1
-1
DeleteAddressModal.tsx
ui/watchlist/DeleteAddressModal.tsx
+1
-1
WatchListAddressItem.tsx
ui/watchlist/WatchlistTable/WatchListAddressItem.tsx
+2
-2
WatchListTableItem.tsx
ui/watchlist/WatchlistTable/WatchListTableItem.tsx
+2
-2
No files found.
ui/apiKey/ApiKeyModal/ApiKeyModal.tsx
View file @
ba705b5d
...
@@ -3,7 +3,7 @@ import React, { useCallback } from 'react';
...
@@ -3,7 +3,7 @@ import React, { useCallback } from 'react';
import
type
{
TApiKeyItem
}
from
'
data/apiKey
'
;
import
type
{
TApiKeyItem
}
from
'
data/apiKey
'
;
import
ApiKeyForm
from
'
./ApiKeyForm
'
;
import
ApiKeyForm
from
'
./ApiKeyForm
'
;
import
FormModal
from
'
../..
/shared/FormModal
'
;
import
FormModal
from
'
ui
/shared/FormModal
'
;
type
Props
=
{
type
Props
=
{
isOpen
:
boolean
;
isOpen
:
boolean
;
...
...
ui/apiKey/ApiKeyTable/ApiKeyTableItem.tsx
View file @
ba705b5d
...
@@ -8,11 +8,11 @@ import {
...
@@ -8,11 +8,11 @@ import {
useColorModeValue
,
useColorModeValue
,
}
from
'
@chakra-ui/react
'
}
from
'
@chakra-ui/react
'
import
EditButton
from
'
../..
/shared/EditButton
'
;
import
EditButton
from
'
ui
/shared/EditButton
'
;
import
DeleteButton
from
'
../..
/shared/DeleteButton
'
;
import
DeleteButton
from
'
ui
/shared/DeleteButton
'
;
import
type
{
TApiKeyItem
}
from
'
data/apiKey
'
;
import
type
{
TApiKeyItem
}
from
'
data/apiKey
'
;
import
CopyToClipboard
from
'
../..
/shared/CopyToClipboard
'
;
import
CopyToClipboard
from
'
ui
/shared/CopyToClipboard
'
;
interface
Props
{
interface
Props
{
item
:
TApiKeyItem
;
item
:
TApiKeyItem
;
...
...
ui/apiKey/DeleteApiKeyModal.tsx
View file @
ba705b5d
import
React
,
{
useCallback
}
from
'
react
'
;
import
React
,
{
useCallback
}
from
'
react
'
;
import
{
Text
}
from
'
@chakra-ui/react
'
;
import
{
Text
}
from
'
@chakra-ui/react
'
;
import
DeleteModal
from
'
..
/shared/DeleteModal
'
import
DeleteModal
from
'
ui
/shared/DeleteModal
'
type
Props
=
{
type
Props
=
{
isOpen
:
boolean
;
isOpen
:
boolean
;
...
...
ui/privateTags/AddressModal/AddressForm.tsx
View file @
ba705b5d
...
@@ -7,8 +7,8 @@ import {
...
@@ -7,8 +7,8 @@ import {
Button
,
Button
,
}
from
'
@chakra-ui/react
'
;
}
from
'
@chakra-ui/react
'
;
import
AddressInput
from
'
../..
/shared/AddressInput
'
;
import
AddressInput
from
'
ui
/shared/AddressInput
'
;
import
TagInput
from
'
../..
/shared/TagInput
'
;
import
TagInput
from
'
ui
/shared/TagInput
'
;
import
type
{
TPrivateTagsAddressItem
}
from
'
data/privateTagsAddress
'
;
import
type
{
TPrivateTagsAddressItem
}
from
'
data/privateTagsAddress
'
;
...
...
ui/privateTags/AddressModal/AddressModal.tsx
View file @
ba705b5d
...
@@ -3,7 +3,7 @@ import React, { useCallback } from 'react';
...
@@ -3,7 +3,7 @@ import React, { useCallback } from 'react';
import
type
{
TPrivateTagsAddressItem
}
from
'
data/privateTagsAddress
'
;
import
type
{
TPrivateTagsAddressItem
}
from
'
data/privateTagsAddress
'
;
import
AddressForm
from
'
./AddressForm
'
;
import
AddressForm
from
'
./AddressForm
'
;
import
FormModal
from
'
../..
/shared/FormModal
'
;
import
FormModal
from
'
ui
/shared/FormModal
'
;
type
Props
=
{
type
Props
=
{
isOpen
:
boolean
;
isOpen
:
boolean
;
...
...
ui/privateTags/AddressTagTable/AddressTagTableItem.tsx
View file @
ba705b5d
...
@@ -8,12 +8,12 @@ import {
...
@@ -8,12 +8,12 @@ import {
Tooltip
,
Tooltip
,
}
from
'
@chakra-ui/react
'
}
from
'
@chakra-ui/react
'
import
AddressIcon
from
'
../..
/shared/AddressIcon
'
;
import
AddressIcon
from
'
ui
/shared/AddressIcon
'
;
import
AddressLinkWithTooltip
from
'
../..
/shared/AddressLinkWithTooltip
'
;
import
AddressLinkWithTooltip
from
'
ui
/shared/AddressLinkWithTooltip
'
;
import
type
{
TPrivateTagsAddressItem
}
from
'
data/privateTagsAddress
'
;
import
type
{
TPrivateTagsAddressItem
}
from
'
data/privateTagsAddress
'
;
import
EditButton
from
'
../..
/shared/EditButton
'
;
import
EditButton
from
'
ui
/shared/EditButton
'
;
import
DeleteButton
from
'
../..
/shared/DeleteButton
'
;
import
DeleteButton
from
'
ui
/shared/DeleteButton
'
;
interface
Props
{
interface
Props
{
item
:
TPrivateTagsAddressItem
;
item
:
TPrivateTagsAddressItem
;
...
...
ui/privateTags/DeletePrivateTagModal.tsx
View file @
ba705b5d
import
React
,
{
useCallback
}
from
'
react
'
;
import
React
,
{
useCallback
}
from
'
react
'
;
import
{
Text
}
from
'
@chakra-ui/react
'
;
import
{
Text
}
from
'
@chakra-ui/react
'
;
import
DeleteModal
from
'
..
/shared/DeleteModal
'
import
DeleteModal
from
'
ui
/shared/DeleteModal
'
type
Props
=
{
type
Props
=
{
isOpen
:
boolean
;
isOpen
:
boolean
;
...
...
ui/privateTags/TransactionModal/TransactionForm.tsx
View file @
ba705b5d
...
@@ -7,8 +7,8 @@ import {
...
@@ -7,8 +7,8 @@ import {
Button
,
Button
,
}
from
'
@chakra-ui/react
'
;
}
from
'
@chakra-ui/react
'
;
import
TransactionInput
from
'
../..
/shared/TransactionInput
'
;
import
TransactionInput
from
'
ui
/shared/TransactionInput
'
;
import
TagInput
from
'
../..
/shared/TagInput
'
;
import
TagInput
from
'
ui
/shared/TagInput
'
;
import
type
{
TPrivateTagsTransactionItem
}
from
'
data/privateTagsTransaction
'
;
import
type
{
TPrivateTagsTransactionItem
}
from
'
data/privateTagsTransaction
'
;
...
...
ui/privateTags/TransactionModal/TransactionModal.tsx
View file @
ba705b5d
...
@@ -3,7 +3,7 @@ import React, { useCallback } from 'react';
...
@@ -3,7 +3,7 @@ import React, { useCallback } from 'react';
import
type
{
TPrivateTagsTransactionItem
}
from
'
data/privateTagsTransaction
'
;
import
type
{
TPrivateTagsTransactionItem
}
from
'
data/privateTagsTransaction
'
;
import
TransactionForm
from
'
./TransactionForm
'
;
import
TransactionForm
from
'
./TransactionForm
'
;
import
FormModal
from
'
../..
/shared/FormModal
'
;
import
FormModal
from
'
ui
/shared/FormModal
'
;
type
Props
=
{
type
Props
=
{
isOpen
:
boolean
;
isOpen
:
boolean
;
...
...
ui/privateTags/TransactionTagTable/TransactionTagTableItem.tsx
View file @
ba705b5d
...
@@ -8,10 +8,10 @@ import {
...
@@ -8,10 +8,10 @@ import {
Tooltip
,
Tooltip
,
}
from
'
@chakra-ui/react
'
}
from
'
@chakra-ui/react
'
import
EditButton
from
'
../..
/shared/EditButton
'
;
import
EditButton
from
'
ui
/shared/EditButton
'
;
import
DeleteButton
from
'
../..
/shared/DeleteButton
'
;
import
DeleteButton
from
'
ui
/shared/DeleteButton
'
;
import
AddressLinkWithTooltip
from
'
../..
/shared/AddressLinkWithTooltip
'
;
import
AddressLinkWithTooltip
from
'
ui
/shared/AddressLinkWithTooltip
'
;
import
type
{
TPrivateTagsTransactionItem
}
from
'
data/privateTagsTransaction
'
;
import
type
{
TPrivateTagsTransactionItem
}
from
'
data/privateTagsTransaction
'
;
...
...
ui/watchlist/AddressModal/AddressForm.tsx
View file @
ba705b5d
...
@@ -11,8 +11,8 @@ import {
...
@@ -11,8 +11,8 @@ import {
GridItem
,
GridItem
,
}
from
'
@chakra-ui/react
'
;
}
from
'
@chakra-ui/react
'
;
import
AddressInput
from
'
../..
/shared/AddressInput
'
;
import
AddressInput
from
'
ui
/shared/AddressInput
'
;
import
TagInput
from
'
../..
/shared/TagInput
'
;
import
TagInput
from
'
ui
/shared/TagInput
'
;
import
type
{
TWatchlistItem
}
from
'
data/watchlist
'
;
import
type
{
TWatchlistItem
}
from
'
data/watchlist
'
;
...
...
ui/watchlist/AddressModal/AddressModal.tsx
View file @
ba705b5d
...
@@ -3,7 +3,7 @@ import React, { useCallback } from 'react';
...
@@ -3,7 +3,7 @@ import React, { useCallback } from 'react';
import
type
{
TWatchlistItem
}
from
'
data/watchlist
'
;
import
type
{
TWatchlistItem
}
from
'
data/watchlist
'
;
import
AddressForm
from
'
./AddressForm
'
;
import
AddressForm
from
'
./AddressForm
'
;
import
FormModal
from
'
../..
/shared/FormModal
'
;
import
FormModal
from
'
ui
/shared/FormModal
'
;
type
Props
=
{
type
Props
=
{
isOpen
:
boolean
;
isOpen
:
boolean
;
...
...
ui/watchlist/DeleteAddressModal.tsx
View file @
ba705b5d
import
React
,
{
useCallback
}
from
'
react
'
;
import
React
,
{
useCallback
}
from
'
react
'
;
import
{
Text
}
from
'
@chakra-ui/react
'
;
import
{
Text
}
from
'
@chakra-ui/react
'
;
import
DeleteModal
from
'
..
/shared/DeleteModal
'
import
DeleteModal
from
'
ui
/shared/DeleteModal
'
type
Props
=
{
type
Props
=
{
isOpen
:
boolean
;
isOpen
:
boolean
;
...
...
ui/watchlist/WatchlistTable/WatchListAddressItem.tsx
View file @
ba705b5d
...
@@ -2,8 +2,8 @@ import React from 'react';
...
@@ -2,8 +2,8 @@ import React from 'react';
import
{
Link
,
HStack
,
VStack
,
Image
,
Text
,
Icon
,
useColorModeValue
}
from
'
@chakra-ui/react
'
;
import
{
Link
,
HStack
,
VStack
,
Image
,
Text
,
Icon
,
useColorModeValue
}
from
'
@chakra-ui/react
'
;
import
AddressIcon
from
'
../..
/shared/AddressIcon
'
;
import
AddressIcon
from
'
ui
/shared/AddressIcon
'
;
import
AddressLinkWithTooltip
from
'
../..
/shared/AddressLinkWithTooltip
'
;
import
AddressLinkWithTooltip
from
'
ui
/shared/AddressLinkWithTooltip
'
;
import
type
{
TWatchlistItem
}
from
'
data/watchlist
'
;
import
type
{
TWatchlistItem
}
from
'
data/watchlist
'
;
import
{
nbsp
}
from
'
lib/html-entities
'
;
import
{
nbsp
}
from
'
lib/html-entities
'
;
import
TokensIcon
from
'
icons/tokens.svg
'
;
import
TokensIcon
from
'
icons/tokens.svg
'
;
...
...
ui/watchlist/WatchlistTable/WatchListTableItem.tsx
View file @
ba705b5d
...
@@ -9,8 +9,8 @@ import {
...
@@ -9,8 +9,8 @@ import {
Tooltip
,
Tooltip
,
}
from
'
@chakra-ui/react
'
}
from
'
@chakra-ui/react
'
import
EditButton
from
'
../..
/shared/EditButton
'
;
import
EditButton
from
'
ui
/shared/EditButton
'
;
import
DeleteButton
from
'
../..
/shared/DeleteButton
'
;
import
DeleteButton
from
'
ui
/shared/DeleteButton
'
;
import
type
{
TWatchlistItem
}
from
'
data/watchlist
'
;
import
type
{
TWatchlistItem
}
from
'
data/watchlist
'
;
...
...
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