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
Merge requests
!360
implement RC delegations box related to issue 285
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
implement RC delegations box related to issue 285
mcfarhat-285-add_rc_delegations
into
develop
Overview
0
Commits
1
Pipelines
2
Changes
4
Merged
mcfarhat
requested to merge
mcfarhat-285-add_rc_delegations
into
develop
8 months ago
Overview
0
Commits
1
Pipelines
2
Changes
4
Expand
implementing change per issue
#285 (closed)
0
0
Merge request reports
Compare
develop
version 1
5381bebc
8 months ago
develop (base)
and
latest version
latest version
daa56dba
1 commit,
8 months ago
version 1
5381bebc
1 commit,
8 months ago
4 files
+
128
−
0
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
4
Search (e.g. *.vue) (Ctrl+P)
api/common/useRcDelegations.ts
0 → 100644
+
18
−
0
Options
import
{
useQuery
}
from
"
@tanstack/react-query
"
;
import
fetchingService
from
"
@/services/FetchingService
"
;
const
useRcDelegations
=
(
delegatorAccount
:
string
,
limit
:
number
)
=>
{
const
{
data
:
rcDelegationsData
,
isLoading
:
isRcDelegationsLoading
,
isError
:
isRcDelegationsError
,
}
=
useQuery
({
queryKey
:
[
"
RcDelegations
"
,
delegatorAccount
,
limit
],
queryFn
:
()
=>
fetchingService
.
getRcDelegations
(
delegatorAccount
,
limit
),
refetchOnWindowFocus
:
false
,
});
return
{
rcDelegationsData
,
isRcDelegationsLoading
,
isRcDelegationsError
};
};
export
default
useRcDelegations
;
\ No newline at end of file
Loading