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
41b4e753
Commit
41b4e753
authored
3 years ago
by
Pierre-Jean CHANCELLIER
Browse files
Options
Downloads
Patches
Plain Diff
factorisation de CertifList dans un nouveau composant CertifGroup
parent
cc2a291b
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
components/certif/Group.vue
+41
-0
41 additions, 0 deletions
components/certif/Group.vue
components/certif/List.vue
+10
-80
10 additions, 80 deletions
components/certif/List.vue
pages/membre.vue
+2
-2
2 additions, 2 deletions
pages/membre.vue
with
53 additions
and
82 deletions
components/certif/Group.vue
0 → 100644
+
41
−
0
View file @
41b4e753
<
template
>
<div>
<CertifList
:certifs=
"certifsPending"
:type=
"type"
/>
<hr
v-if=
"certifsPending.length > 0 && certifsNotPending.length > 0"
/>
<CertifList
:certifs=
"certifsNotPending"
:type=
"type"
class=
"pb-3"
:class=
"
{ 'pt-3': certifsPending.length > 0 }" />
</div>
</
template
>
<
script
>
export
default
{
props
:
{
certifs
:
Array
,
type
:
{
type
:
String
,
required
:
true
,
validator
:
function
(
value
)
{
const
types
=
[
"
received
"
,
"
sent
"
]
return
types
.
indexOf
(
value
)
!==
-
1
}
}
},
computed
:
{
certifsMapped
()
{
return
this
.
certifs
.
map
((
certif
)
=>
({
...
certif
,
...(
this
.
type
===
"
received
"
?
certif
.
from
:
certif
.
to
)
}))
},
certifsNotPending
()
{
return
this
.
certifsMapped
.
filter
((
el
)
=>
el
.
pending
==
false
)
},
certifsPending
()
{
return
this
.
certifsMapped
.
filter
((
el
)
=>
el
.
pending
==
true
)
}
}
}
</
script
>
This diff is collapsed.
Click to expand it.
components/certif/List.vue
+
10
−
80
View file @
41b4e753
<
template
>
<
template
>
<div
class=
"table-responsive pb-3"
>
<div
class=
"table-responsive"
>
<table
class=
"table table-striped table-hover"
v-if=
"certifsPending.length > 0"
>
<tbody>
<tr
v-for=
"certif in certifsPending"
:key=
"certif.uid + certif.expires_on"
@
click=
"
$router.push(
localePath(
{
name: 'membre',
query: { hash: certif.hash }
})
)
">
<th
scope=
"row"
class=
"py-1"
>
<div>
<div
class=
"d-flex"
>
<div
class=
"uid inline-block text-truncate"
>
<span
v-if=
"$favourites.list.includes(certif.uid)"
>
★
</span
>
{{
certif
.
uid
}}
</div>
<BadgeDanger
:limitDate=
"certif.received_certifications.limit"
:memberStatus=
"certif.status"
/>
</div>
<BadgeStatus
:membre=
"certif"
/>
<BadgeQuality
:quality=
"certif.quality.ratio"
v-if=
"!['REVOKED', 'NEWCOMER'].includes(certif.status)"
/>
<BadgeDispo
:isDispo=
"certif.minDatePassed"
:dateDispo=
"certif.minDate"
:certifs=
"certif.sent_certifications"
v-if=
"certif.status == 'MEMBER'"
/>
</div>
</th>
<td
class=
"text-right py-1"
>
<BadgeDate
:date=
"certif.expires_on"
styleDate=
"short"
/>
<small
class=
"d-block"
>
<span
class=
"badge badge-secondary"
>
{{
$t
(
"
traitement
"
)
}}
</span>
</small>
</td>
</tr>
</tbody>
</table>
<hr
v-if=
"certifsPending.length > 0 && certifsTriees.length > 0"
/>
<table
<table
class=
"table table-striped table-hover"
class=
"table table-striped table-hover"
v-if=
"certifsTriees.length > 0"
>
v-if=
"certifsTriees.length > 0"
>
...
@@ -72,7 +23,7 @@
...
@@ -72,7 +23,7 @@
<tbody>
<tbody>
<tr
<tr
v-for=
"certif in certifsTriees"
v-for=
"certif in certifsTriees"
:key=
"certif.uid
+ certif.expires_on
"
:key=
"certif.uid"
@
click=
"
@
click=
"
$router.push(
$router.push(
localePath(
{
localePath(
{
...
@@ -97,7 +48,7 @@
...
@@ -97,7 +48,7 @@
<BadgeStatus
:membre=
"certif"
/>
<BadgeStatus
:membre=
"certif"
/>
<BadgeQuality
<BadgeQuality
:quality=
"certif.quality.ratio"
:quality=
"certif.quality.ratio"
v-if=
"
certif.status != 'REVOKED'
"
/>
v-if=
"
!['REVOKED', 'NEWCOMER'].includes(certif.status)
"
/>
<BadgeDispo
<BadgeDispo
:isDispo=
"certif.minDatePassed"
:isDispo=
"certif.minDatePassed"
:dateDispo=
"certif.minDate"
:dateDispo=
"certif.minDate"
...
@@ -107,6 +58,9 @@
...
@@ -107,6 +58,9 @@
</th>
</th>
<td
class=
"text-right py-1"
>
<td
class=
"text-right py-1"
>
<BadgeDate
:date=
"certif.expires_on"
styleDate=
"short"
/>
<BadgeDate
:date=
"certif.expires_on"
styleDate=
"short"
/>
<small
class=
"d-block"
v-if=
"certif.pending"
>
<span
class=
"badge badge-secondary"
>
{{
$t
(
"
traitement
"
)
}}
</span>
</small>
</td>
</td>
</tr>
</tr>
</tbody>
</tbody>
...
@@ -114,7 +68,7 @@
...
@@ -114,7 +68,7 @@
<BtnPagination
<BtnPagination
:currentPage.sync=
"currentPage"
:currentPage.sync=
"currentPage"
:pageSize=
"pageSize"
:pageSize=
"pageSize"
:arrayLength=
"certifs.length
- certifsPending.length
"
/>
:arrayLength=
"certifs.length"
/>
</div>
</div>
</
template
>
</
template
>
...
@@ -129,15 +83,7 @@ export default {
...
@@ -129,15 +83,7 @@ export default {
}
}
},
},
props
:
{
props
:
{
certifs
:
Array
,
certifs
:
Array
type
:
{
type
:
String
,
required
:
true
,
validator
:
function
(
value
)
{
const
types
=
[
"
received
"
,
"
sent
"
]
return
types
.
indexOf
(
value
)
!==
-
1
}
}
},
},
methods
:
{
methods
:
{
sort
(
s
)
{
sort
(
s
)
{
...
@@ -152,40 +98,24 @@ export default {
...
@@ -152,40 +98,24 @@ export default {
return
this
.
certifs
return
this
.
certifs
.
sort
((
a
,
b
)
=>
{
.
sort
((
a
,
b
)
=>
{
let
modifier
=
this
.
currentSortDir
===
"
desc
"
?
-
1
:
1
let
modifier
=
this
.
currentSortDir
===
"
desc
"
?
-
1
:
1
let
sens
=
this
.
type
==
"
received
"
?
"
from
"
:
"
to
"
if
(
this
.
currentSort
==
"
expires_on
"
)
{
if
(
this
.
currentSort
==
"
expires_on
"
)
{
if
(
a
[
"
expires_on
"
]
<
b
[
"
expires_on
"
])
return
-
1
*
modifier
if
(
a
[
"
expires_on
"
]
<
b
[
"
expires_on
"
])
return
-
1
*
modifier
if
(
a
[
"
expires_on
"
]
>
b
[
"
expires_on
"
])
return
1
*
modifier
if
(
a
[
"
expires_on
"
]
>
b
[
"
expires_on
"
])
return
1
*
modifier
}
else
{
}
else
{
if
(
a
[
sens
][
"
uid
"
].
toLowerCase
()
<
b
[
sens
][
"
uid
"
].
toLowerCase
())
if
(
a
[
"
uid
"
].
toLowerCase
()
<
b
[
"
uid
"
].
toLowerCase
())
return
-
1
*
modifier
return
-
1
*
modifier
if
(
a
[
sens
][
"
uid
"
].
toLowerCase
()
>
b
[
sens
][
"
uid
"
].
toLowerCase
())
if
(
a
[
"
uid
"
].
toLowerCase
()
>
b
[
"
uid
"
].
toLowerCase
())
return
1
*
modifier
return
1
*
modifier
}
}
return
0
return
0
})
})
.
filter
((
el
)
=>
el
.
pending
==
false
)
.
filter
((
row
,
index
)
=>
{
.
filter
((
row
,
index
)
=>
{
let
start
=
(
this
.
currentPage
-
1
)
*
this
.
pageSize
let
start
=
(
this
.
currentPage
-
1
)
*
this
.
pageSize
let
end
=
this
.
currentPage
*
this
.
pageSize
let
end
=
this
.
currentPage
*
this
.
pageSize
if
(
index
>=
start
&&
index
<
end
)
return
true
if
(
index
>=
start
&&
index
<
end
)
return
true
})
})
.
map
((
certif
)
=>
({
...
certif
,
...(
this
.
type
===
"
received
"
?
certif
.
from
:
certif
.
to
)
}))
},
certifsPending
()
{
return
this
.
certifs
.
slice
()
.
sort
((
a
,
b
)
=>
a
.
expires_on
-
b
.
expires_on
)
.
filter
((
el
)
=>
el
.
pending
==
true
)
.
map
((
certif
)
=>
({
...
certif
,
...(
this
.
type
===
"
received
"
?
certif
.
from
:
certif
.
to
)
}))
}
}
}
}
}
}
...
...
This diff is collapsed.
Click to expand it.
pages/membre.vue
+
2
−
2
View file @
41b4e753
...
@@ -36,7 +36,7 @@
...
@@ -36,7 +36,7 @@
:limitDate=
"idFromHash.received_certifications.limit"
:limitDate=
"idFromHash.received_certifications.limit"
:memberStatus=
"idFromHash.status"
/>
:memberStatus=
"idFromHash.status"
/>
</h3>
</h3>
<Certif
List
<Certif
Group
:certifs=
"idFromHash.received_certifications.certifications"
:certifs=
"idFromHash.received_certifications.certifications"
type=
"received"
/>
type=
"received"
/>
</div>
</div>
...
@@ -50,7 +50,7 @@
...
@@ -50,7 +50,7 @@
}}
</span
}}
</span
>
)
>
)
</h3>
</h3>
<Certif
List
<Certif
Group
:certifs=
"idFromHash.sent_certifications"
:certifs=
"idFromHash.sent_certifications"
type=
"sent"
/>
type=
"sent"
/>
</div>
</div>
...
...
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