1
- import React , { useState } from "react" ;
1
+ import React , { useCallback , useRef , useState } from "react" ;
2
2
import styled from "styled-components" ;
3
3
4
4
import { useParams } from "react-router-dom" ;
5
- import { useAccount } from "wagmi " ;
5
+ import { useDebounce } from "react-use " ;
6
6
7
- import { Button , Searchbar } from "@kleros/ui-components-library" ;
7
+ import { Button } from "@kleros/ui-components-library" ;
8
8
9
- import { isUndefined } from "utils/index " ;
9
+ import DownArrow from "svgs/icons/arrow-down.svg " ;
10
10
11
11
import { useEvidenceGroup } from "queries/useEvidenceGroup" ;
12
12
import { useEvidences } from "queries/useEvidences" ;
13
13
14
14
import { responsiveSize } from "styles/responsiveSize" ;
15
15
16
- import { EnsureChain } from "components/EnsureChain" ;
17
16
import EvidenceCard from "components/EvidenceCard" ;
18
17
import { SkeletonEvidenceCard } from "components/StyledSkeleton" ;
19
18
20
- import SubmitEvidenceModal from "./SubmitEvidenceModal " ;
19
+ import EvidenceSearch from "./EvidenceSearch " ;
21
20
22
21
const Container = styled . div `
23
22
width: 100%;
@@ -29,43 +28,61 @@ const Container = styled.div`
29
28
padding: ${ responsiveSize ( 16 , 32 ) } ;
30
29
` ;
31
30
32
- const StyledButton = styled ( Button ) `
33
- align-self: flex-end;
34
- ` ;
35
-
36
31
const StyledLabel = styled . label `
37
32
display: flex;
38
33
margin-top: 16px;
39
34
font-size: 16px;
40
35
` ;
41
36
37
+ const ScrollButton = styled ( Button ) `
38
+ align-self: flex-end;
39
+ background-color: transparent;
40
+ padding: 0;
41
+ flex-direction: row-reverse;
42
+ margin: 0 0 18px;
43
+ gap: 8px;
44
+ .button-text {
45
+ color: ${ ( { theme } ) => theme . primaryBlue } ;
46
+ font-weight: 400;
47
+ }
48
+ .button-svg {
49
+ margin: 0;
50
+ }
51
+ :focus,
52
+ :hover {
53
+ background-color: transparent;
54
+ }
55
+ ` ;
56
+
42
57
const Evidence : React . FC < { arbitrable ?: `0x${string } ` } > = ( { arbitrable } ) => {
43
- const [ isModalOpen , setIsModalOpen ] = useState ( false ) ;
44
58
const { id } = useParams ( ) ;
45
59
const { data : evidenceGroup } = useEvidenceGroup ( id , arbitrable ) ;
46
- const { data } = useEvidences ( evidenceGroup ?. toString ( ) ) ;
47
- const { address } = useAccount ( ) ;
60
+ const ref = useRef < HTMLDivElement > ( null ) ;
61
+ const [ search , setSearch ] = useState < string > ( ) ;
62
+ const [ debouncedSearch , setDebouncedSearch ] = useState < string > ( ) ;
63
+
64
+ const { data } = useEvidences ( evidenceGroup ?. toString ( ) , debouncedSearch ) ;
65
+
66
+ useDebounce ( ( ) => setDebouncedSearch ( search ) , 500 , [ search ] ) ;
67
+
68
+ const scrollToLatest = useCallback ( ( ) => {
69
+ if ( ! ref . current ) return ;
70
+ const latestEvidence = ref . current . lastElementChild ;
71
+
72
+ if ( ! latestEvidence ) return ;
73
+
74
+ latestEvidence . scrollIntoView ( { behavior : "smooth" } ) ;
75
+ } , [ ref ] ) ;
48
76
49
77
return (
50
- < Container >
51
- { ! isUndefined ( evidenceGroup ) && (
52
- < SubmitEvidenceModal isOpen = { isModalOpen } close = { ( ) => setIsModalOpen ( false ) } { ...{ evidenceGroup } } />
53
- ) }
54
- < Searchbar />
55
- < EnsureChain >
56
- < StyledButton
57
- small
58
- text = "Submit Evidence"
59
- disabled = { typeof address === "undefined" || isModalOpen }
60
- isLoading = { isModalOpen }
61
- onClick = { ( ) => setIsModalOpen ( true ) }
62
- />
63
- </ EnsureChain >
78
+ < Container ref = { ref } >
79
+ < EvidenceSearch { ...{ search, setSearch, evidenceGroup } } />
80
+ < ScrollButton small Icon = { DownArrow } text = "Scroll to latest" onClick = { scrollToLatest } />
64
81
{ data ? (
65
- data . evidences . map ( ( { evidence, sender, timestamp, name, description, fileURI } , i ) => (
82
+ data . evidences . map ( ( { evidence, sender, timestamp, name, description, fileURI, evidenceIndex } ) => (
66
83
< EvidenceCard
67
84
key = { timestamp }
68
- index = { i + 1 }
85
+ index = { parseInt ( evidenceIndex ) }
69
86
sender = { sender ?. id }
70
87
{ ...{ evidence, timestamp, name, description, fileURI } }
71
88
/>
0 commit comments