mirror of
https://gitlab.com/CIEFWorldwideSdnBhd/exchange-2.0.git
synced 2026-08-19 04:23:55 +00:00
163 lines
7.8 KiB
Vue
163 lines
7.8 KiB
Vue
<template>
|
|
<transition-component group enter-class="animate__animated animate__fadeInUp animate__delay-1 animate__faster p-r-30" leave-class="animate__animated animate__fadeOutDown animate__faster p-r-30" style="min-height: 300px;width:100%">
|
|
<loading-component style="height: 200px; top: 0;" key="1" color="success" v-show="isLoading"></loading-component>
|
|
<div class="row" key="2" v-show="!$store.getters.isLoading(section)">
|
|
<div class="col">
|
|
<div class="row">
|
|
<div class="col">
|
|
<div class="row align-items-center justify-content-center p-t-50 p-b-50" v-show="!$store.getters.getListData(section).length && !isLoading && emptyListSection">
|
|
<div class="col-10">
|
|
<div class="row align-items-center justify-content-center hint-text">
|
|
<div class="col-4 hint-text"><img src="/images/not-found-illustration.png" class="w-100 hint-text"/></div>
|
|
</div>
|
|
<div class="row text-center">
|
|
<div class="col">
|
|
<div class="row m-t-20">
|
|
<div class="col">
|
|
<p class="all-caps no-margin fs-11" style="letter-spacing: 2px;">Nothing To Show Here</p>
|
|
</div>
|
|
</div>
|
|
<div class="row m-t-5 align-items-center justify-content-center">
|
|
<div class="col">
|
|
<small class="fs-9 muted all-caps font-lato" style="letter-spacing: 2px">There is no results found, Try adjusting your filters to find what you are looking for.</small>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<div class="row" v-show="!isLoading">
|
|
<div class="col">
|
|
<div class="list disable-text-selection" data-check-all="checkAll">
|
|
<div class="row" ref="list" v-for="item in $store.getters.getListData(section)" v-bind:key="item.id" :data="item">
|
|
<div class="col">
|
|
<slot name="list" :data="item"></slot>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<div class="row" v-show="!isLoading">
|
|
<div class="col">
|
|
<pagination-component :section="section" class="mb-5" ref="pagination"></pagination-component>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</transition-component>
|
|
</template>
|
|
|
|
<script>
|
|
import requestV2 from '../../../general/mixins/aws/requestV2'
|
|
export default {
|
|
props: {
|
|
section:{
|
|
type: String,
|
|
required: true
|
|
},
|
|
endpoint: {
|
|
type: String,
|
|
required: true
|
|
},
|
|
options: {
|
|
default () {
|
|
return {}
|
|
}
|
|
},
|
|
emptyListSection: {
|
|
type: Boolean,
|
|
default: true,
|
|
}
|
|
},
|
|
data(){
|
|
return {
|
|
filters: this.options,
|
|
isLoading: false,
|
|
}
|
|
},
|
|
created(){
|
|
this.setDecoratorDefault();
|
|
this.$store.dispatch('updateListQueue', {'name': this.section, 'page': 1, 'filters': this.filters}); //cief todo: Uncaught (in promise) null
|
|
},
|
|
computed: {
|
|
pendingList () {
|
|
return this.$store.getters.isInCompleteQueue(this.section);
|
|
},
|
|
getJob() {
|
|
return this.$store.getters.getJob(this.section);
|
|
},
|
|
getJobAttemptCount() {
|
|
return this.$store.getters.getJobAttemptCount(this.section);
|
|
},
|
|
},
|
|
watch: {
|
|
pendingList(inComplete){
|
|
if(inComplete){
|
|
this.fetchList();
|
|
}
|
|
},
|
|
getJobAttemptCount(newValue, oldValue) {
|
|
// console.log('Old value:', JSON.stringify(oldValue));
|
|
// console.log('New value:', JSON.stringify(newValue));
|
|
if(this.getJob){
|
|
this.fetchJobResult(this.getJob.isLastAttempt);
|
|
}
|
|
}
|
|
},
|
|
methods: {
|
|
fetchList(){
|
|
let listDecorators = this.$store.getters.getListDetails(this.section);
|
|
let url = this.endpoint + '?page=' + listDecorators.page + '&filters=' + JSON.stringify(listDecorators.filters);
|
|
this.isLoading = true;
|
|
this.$store.dispatch('submitJobRequest', {'url': url, 'name': this.section});
|
|
},
|
|
//cief todo: remove?
|
|
// updateFilters(filters){
|
|
// this.filters = filters;
|
|
// this.setDecoratorDefault();
|
|
// console.log('updateFilters');
|
|
// this.submit(this.endpoint + '?page=1&filters=' + JSON.stringify(this.filters), 'get', this.section, false, false); //cief todo: Uncaught (in promise) null
|
|
// },
|
|
successHandler(response){
|
|
let result = JSON.parse(response.payload.data.result);
|
|
result.meta = {
|
|
current_page: result.meta.current_page,
|
|
first_page_url: result.meta.first_page_url,
|
|
from: result.meta.from,
|
|
last_page: result.meta.last_page,
|
|
last_page_url: result.meta.last_page_url,
|
|
next_page_url: result.meta.next_page_url,
|
|
path: result.meta.path,
|
|
per_page: result.meta.per_page,
|
|
prev_page_url: result.meta.prev_page_url,
|
|
to: result.meta.to,
|
|
total: result.meta.total
|
|
};
|
|
this.$store.dispatch('completeList', {'name': this.section, 'data': result.data});
|
|
this.$store.dispatch('stopPollingJobResultByJobId', {'jobId': this.getJob.jobId});
|
|
this.$refs.pagination.makePagination(result.meta, result.links);
|
|
this.isLoading = false;
|
|
},
|
|
errorHandler(error){
|
|
// console.log("Error: " + JSON.stringify(error));
|
|
this.$store.dispatch('updatePollingJobResultByJobId', {'jobId': this.getJob.jobId, 'isPolling': false, 'isFetchingResult': false });
|
|
},
|
|
fetchJobResult(jobId, isLastAttempt = false) {
|
|
this.$store.dispatch('updatePollingJobResultByJobId', {'jobId': this.getJob.jobId, 'isFetchingResult': true });
|
|
try {
|
|
let anotherEndpoint = route('api.job.fetch', this.getJob.jobId);
|
|
if(isLastAttempt){
|
|
anotherEndpoint = route('api.job.fetch.last.attempt', this.getJob.jobId, isLastAttempt);
|
|
}
|
|
this.poll(anotherEndpoint, 'get', this.section, false, false); //cief todo: Uncaught (in promise) null
|
|
} catch (error) {
|
|
console.error('Error fetchJobResult', error);
|
|
}
|
|
}
|
|
},
|
|
mixins: [requestV2]
|
|
}
|
|
</script>
|