Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
B
Block Explorer UI
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
hive
Block Explorer UI
Commits
b4310c25
Commit
b4310c25
authored
2 months ago
by
Lukas
Browse files
Options
Downloads
Patches
Plain Diff
Create separate permlink search component for account page
parent
adac900e
No related branches found
No related tags found
1 merge request
!524
Lbudginas/#424 add new tab on account page
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
components/account/tabs/posts/AccountCommentsPermlinkSearch.tsx
+158
-0
158 additions, 0 deletions
...ents/account/tabs/posts/AccountCommentsPermlinkSearch.tsx
components/account/tabs/posts/PostsTabContent.tsx
+2
-2
2 additions, 2 deletions
components/account/tabs/posts/PostsTabContent.tsx
with
160 additions
and
2 deletions
components/account/tabs/posts/AccountCommentsPermlinkSearch.tsx
0 → 100644
+
158
−
0
View file @
b4310c25
import
{
useState
,
ChangeEvent
,
useEffect
}
from
"
react
"
;
import
{
useRouter
}
from
"
next/router
"
;
import
{
Loader2
}
from
"
lucide-react
"
;
import
moment
from
"
moment
"
;
import
Explorer
from
"
@/types/Explorer
"
;
import
{
trimAccountName
}
from
"
@/utils/StringUtils
"
;
import
SearchRanges
from
"
@/components/searchRanges/SearchRanges
"
;
import
{
Button
}
from
"
@/components/ui/button
"
;
import
{
useSearchesContext
}
from
"
@/contexts/SearchesContext
"
;
import
usePermlinkSearch
from
"
@/hooks/api/common/usePermlinkSearch
"
;
import
{
getSearchParams
}
from
"
@/components/home/searches/utils/getSearchParams
"
;
import
PostTypeSelector
from
"
@/components/home/searches/PostTypeSelector
"
;
import
{
DEFAULT_LAST_TIME_UNIT_VALUE
,
DEFAULT_TIME_UNIT_SELECT_KEY
,
}
from
"
@/hooks/common/useSearchRanges
"
;
const
AccountCommentsPermlinkSearch
=
()
=>
{
const
{
permlinkSearchProps
,
setPermlinkSearchProps
,
setPermlinkPaginationPage
,
permlinkPaginationPage
,
setCommentType
,
searchRanges
,
}
=
useSearchesContext
();
const
router
=
useRouter
();
const
{
permlinkSearchDataLoading
}
=
usePermlinkSearch
(
permlinkSearchProps
);
const
accountNameFromRoute
=
router
.
query
.
accountName
as
string
;
const
[
accountName
,
setAccountName
]
=
useState
<
string
>
(
""
);
const
[
localCommentType
,
setLocalCommentType
]
=
useState
<
Explorer
.
CommentType
>
(
permlinkSearchProps
?.
commentType
||
"
post
"
);
const
{
setRangesValues
,
setLastTimeUnitValue
,
setRangeSelectKey
,
setTimeUnitSelectKey
,
setFromBlock
,
setToBlock
,
setStartDate
,
setEndDate
,
setLastBlocksValue
,
}
=
searchRanges
;
const
handleCommentPermlinkSearch
=
async
()
=>
{
if
(
!
accountName
)
return
;
const
searchParams
=
await
getSearchParams
(
searchRanges
);
if
(
!
searchParams
)
return
;
const
commentPermlinksSearchProps
=
{
accountName
:
trimAccountName
(
accountName
),
commentType
:
localCommentType
,
pageNumber
:
permlinkPaginationPage
,
...
searchParams
,
};
setPermlinkSearchProps
(
commentPermlinksSearchProps
);
setRangesValues
(
commentPermlinksSearchProps
);
};
const
handleChangeCommentType
=
(
e
:
ChangeEvent
<
HTMLSelectElement
>
)
=>
{
const
{
target
:
{
value
},
}
=
e
;
setLocalCommentType
(
value
as
Explorer
.
CommentType
);
};
const
onSearchButtonClick
=
()
=>
{
setPermlinkPaginationPage
(
1
);
setCommentType
(
localCommentType
);
handleCommentPermlinkSearch
();
};
const
onResetButtonClick
=
async
()
=>
{
setFromBlock
(
undefined
);
setToBlock
(
undefined
);
setStartDate
(
undefined
);
setEndDate
(
undefined
);
setLastBlocksValue
(
undefined
);
setLastTimeUnitValue
(
DEFAULT_LAST_TIME_UNIT_VALUE
);
setRangeSelectKey
(
"
lastTime
"
);
setTimeUnitSelectKey
(
DEFAULT_TIME_UNIT_SELECT_KEY
);
setLocalCommentType
(
"
post
"
);
setCommentType
(
"
post
"
);
const
commentPermlinksSearchProps
=
{
accountName
:
trimAccountName
(
accountName
),
commentType
:
"
post
"
as
Explorer
.
CommentType
,
pageNumber
:
1
,
fromBlock
:
undefined
,
toBlock
:
undefined
,
startDate
:
moment
(
Date
.
now
()).
subtract
(
30
,
"
days
"
).
toDate
(),
endDate
:
undefined
,
lastBlocks
:
undefined
,
lastTime
:
30
,
rangeSelectKey
:
"
lastTime
"
,
timeUnit
:
"
days
"
,
};
setPermlinkSearchProps
(
commentPermlinksSearchProps
);
setRangesValues
(
commentPermlinksSearchProps
);
};
// Set account name and trigger initial search when
useEffect
(()
=>
{
if
(
!
accountName
)
{
setAccountName
(
accountNameFromRoute
);
}
},
[
accountName
,
accountNameFromRoute
]);
useEffect
(()
=>
{
if
(
!
accountName
)
return
;
handleCommentPermlinkSearch
();
// eslint-disable-next-line react-hooks/exhaustive-deps
},
[
accountName
]);
return
(
<>
<
SearchRanges
rangesProps
=
{
searchRanges
}
safeTimeRangeDisplay
/>
<
div
className
=
{
"
flex justify-start my-4
"
}
>
<
PostTypeSelector
showLabel
handleChange
=
{
handleChangeCommentType
}
commentType
=
{
localCommentType
}
/>
</
div
>
<
div
className
=
"flex justify-between items-center"
>
<
Button
data-testid
=
"search-button"
className
=
"mr-2 my-2"
onClick
=
{
onSearchButtonClick
}
disabled
=
{
!
accountName
}
>
Search
{
permlinkSearchDataLoading
&&
(
<
Loader2
className
=
"ml-2 animate-spin h-4 w-4 ..."
/>
)
}
</
Button
>
<
Button
onClick
=
{
onResetButtonClick
}
>
Clear
</
Button
>
</
div
>
</>
);
};
export
default
AccountCommentsPermlinkSearch
;
This diff is collapsed.
Click to expand it.
components/account/tabs/posts/PostsTabContent.tsx
+
2
−
2
View file @
b4310c25
import
CommentsPermlinkSearch
from
"
@/components/home/searches/CommentPermlinkSearch
"
;
import
CommentPermlinkSearchResults
from
"
@/components/home/searches/searchesResults/CommentPermlinkSearchResults
"
;
import
CommentPermlinkSearchResults
from
"
@/components/home/searches/searchesResults/CommentPermlinkSearchResults
"
;
import
{
Card
,
CardContent
,
CardHeader
,
CardTitle
}
from
"
@/components/ui/card
"
;
import
{
Card
,
CardContent
,
CardHeader
,
CardTitle
}
from
"
@/components/ui/card
"
;
import
{
TabsContent
}
from
"
@/components/ui/tabs
"
;
import
{
TabsContent
}
from
"
@/components/ui/tabs
"
;
import
AccountCommentsPermlinkSearch
from
"
./AccountCommentsPermlinkSearch
"
;
const
PostsTabContent
=
()
=>
{
const
PostsTabContent
=
()
=>
{
return
(
return
(
...
@@ -11,7 +11,7 @@ const PostsTabContent = () => {
...
@@ -11,7 +11,7 @@ const PostsTabContent = () => {
<
CardTitle
>
Post search
</
CardTitle
>
<
CardTitle
>
Post search
</
CardTitle
>
</
CardHeader
>
</
CardHeader
>
<
CardContent
>
<
CardContent
>
<
CommentsPermlinkSearch
/>
<
Account
CommentsPermlinkSearch
/>
</
CardContent
>
</
CardContent
>
</
Card
>
</
Card
>
<
CommentPermlinkSearchResults
/>
<
CommentPermlinkSearchResults
/>
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment