Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
wotwizard-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
Service Desk
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
clients
wotwizard-ui
Commits
0e33db56
Commit
0e33db56
authored
3 years ago
by
Hugo Trentesaux
Browse files
Options
Downloads
Patches
Plain Diff
add details to user query
parent
0d78b873
No related branches found
No related tags found
1 merge request
!1
Add user query
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
pages/hash/:hash.vue
+124
-7
124 additions, 7 deletions
pages/hash/:hash.vue
with
124 additions
and
7 deletions
pages/hash/:hash.vue
+
124
−
7
View file @
0e33db56
<
template
>
<
template
>
<main
class=
"content"
>
<main
class=
"content"
>
<h2
class=
"display-2 text-center mb-5"
>
{{
idFromHash
.
uid
}}
</h2>
<div
<div
class=
"row"
>
class=
"spinner-border text-primary mx-auto d-block mb-3"
<ul>
role=
"status"
<li>
{{
idFromHash
.
uid
}}
</li>
v-if=
"$apollo.queries.idFromHash.loading"
<li>
{{
idFromHash
.
pubkey
}}
</li>
>
<li>
{{
idFromHash
.
status
}}
</li>
<span
class=
"sr-only"
>
Loading...
</span>
</ul>
</div>
<div
v-if=
"!$apollo.queries.idFromHash.loading"
>
<h2
class=
"display-2 text-center mb-5"
>
{{
idFromHash
.
uid
}}
</h2>
<div
class=
"row"
>
<div
class=
"col-8 m-auto"
>
<div
class=
"table-responsive"
>
<table
class=
"table striped"
>
<tr>
<td>
uid
</td>
<td>
{{
idFromHash
.
uid
}}
</td>
</tr>
<tr>
<td>
pubkey
</td>
<td>
{{
idFromHash
.
pubkey
}}
</td>
</tr>
<tr>
<td>
status
</td>
<td>
{{
idFromHash
.
status
}}
</td>
</tr>
<tr>
<td>
membership_pending
</td>
<td>
{{
idFromHash
.
membership_pending
}}
</td>
</tr>
<tr>
<td>
membership_pending_block
</td>
<td>
{{
idFromHash
.
membership_pending_block
}}
</td>
</tr>
<tr>
<td>
membership_pending_limitDate
</td>
<td>
{{
idFromHash
.
membership_pending_limitDate
}}
</td>
</tr>
<tr>
<td>
id_written_block
</td>
<td>
{{
idFromHash
.
id_written_block
.
number
}}
</td>
</tr>
<tr>
<td>
lastApplication
</td>
<td>
{{
idFromHash
.
lastApplication
.
number
}}
</td>
</tr>
<tr>
<td>
limitDate
</td>
<td>
{{
idFromHash
.
limitDate
}}
</td>
</tr>
<tr>
<td>
isLeaving
</td>
<td>
{{
idFromHash
.
isLeaving
}}
</td>
</tr>
<tr>
<td>
sentry
</td>
<td>
{{
idFromHash
.
sentry
}}
</td>
</tr>
<tr>
<td>
received_certifications
</td>
<td>
{{
idFromHash
.
received_certifications
.
limit
}}
</td>
</tr>
<tr>
<td>
distance
</td>
<td>
{{
idFromHash
.
distance
.
value
.
ratio
}}
</td>
</tr>
<tr>
<td>
distanceE
</td>
<td>
{{
idFromHash
.
distanceE
.
value
.
ratio
}}
</td>
</tr>
<tr>
<td>
quality
</td>
<td>
{{
idFromHash
.
quality
.
ratio
}}
</td>
</tr>
<tr>
<td>
qualityE
</td>
<td>
{{
idFromHash
.
qualityE
.
ratio
}}
</td>
</tr>
<tr>
<td>
minDate
</td>
<td>
{{
idFromHash
.
minDate
}}
</td>
</tr>
<tr>
<td>
minDatePassed
</td>
<td>
{{
idFromHash
.
minDatePassed
}}
</td>
</tr>
</table>
</div>
</div>
</div>
</div>
</div>
</main>
</main>
</
template
>
</
template
>
...
@@ -31,6 +113,41 @@ export default {
...
@@ -31,6 +113,41 @@ export default {
uid
uid
status
status
hash
hash
membership_pending
membership_pending_block {
number
}
membership_pending_limitDate
id_written_block {
number
}
lastApplication {
number
}
limitDate
isLeaving
sentry
received_certifications {
limit
}
distance {
value {
ratio
}
}
distanceE {
value {
ratio
}
}
quality {
ratio
}
qualityE {
ratio
}
minDate
minDatePassed
}
}
}
}
`
,
`
,
...
...
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