Skip to content
Snippets Groups Projects
Commit 41b4e753 authored by Pierre-Jean CHANCELLIER's avatar Pierre-Jean CHANCELLIER
Browse files

factorisation de CertifList dans un nouveau composant CertifGroup

parent cc2a291b
No related branches found
No related tags found
No related merge requests found
<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>
<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)"
>&nbsp;</span
>{{ certif.uid }}
</div>
&nbsp;
<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)
}))
} }
} }
} }
......
...@@ -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>
<CertifList <CertifGroup
: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>
<CertifList <CertifGroup
:certifs="idFromHash.sent_certifications" :certifs="idFromHash.sent_certifications"
type="sent" /> type="sent" />
</div> </div>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment