保誠-保戶業務員媒合平台
HelenHuang
2022-06-09 9bdb95c9e34cef640534e5e5a1e2225a80442000
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
<template>
    <div>
        <div class="pam-cus-tabs mb-30">
            <div
                class="cus-tab-item"
                :class="{'is-active': activeTabName === 'consultantList'}"
                @click="clickTab('consultantList')"
            >顧問清單
                <span class="p">({{consultantList.length}})</span>
            </div>
            <div
                class="cus-tab-item"
                :class="{'is-active': activeTabName === 'contactedList'}"
                @click="clickTab('contactedList')"
            >已聯絡
                <span class="p">({{contactedList.length}})</span>
            </div>
        </div>
 
        <NuxtChild
            :contactedList="contactedList"
            :consultantList="consultantList"
        ></NuxtChild>
 
    </div>
</template>
 
<script lang='ts'>
import { Vue, Component, Watch, State, Action } from 'nuxt-property-decorator';
 
import authService from '~/shared/services/auth.service';
import { Consultant, ConsultantWithAppointmentId } from '~/shared/models/consultant.model';
 
@Component
export default class myConsultantList extends Vue {
 
    @State('myConsultantList')
    myConsultantList!: Consultant[];
 
    @State('myAppointmentGroupByConsultantList')
    myAppointmentGroupByConsultantList!: ConsultantWithAppointmentId[];
 
    @Action
    storeConsultantList!: any;
 
    activeTabName : string                        = 'consultantList';
    consultantList: Consultant[]                  = [];
    contactedList : ConsultantWithAppointmentId[] = [];
 
    //////////////////////////////////////////////////////////////////////
 
    beforeRouteEnter(to: any, from: any, next: any) {
      next((vm: any) => {
        if (to.name === 'myConsultantList') {
            vm.$router.push('myConsultantList/consultantList');
          return;
        }
      })
    }
 
    mounted() {
      this.storeConsultantList();
 
      if (this.$route.name) {
        this.activeTabName = this.$route.name.split('-')[1]
      }
    }
 
    //////////////////////////////////////////////////////////////////////
 
    @Watch('myConsultantList')
    onMyConsultantListChange() {
        this.setList();
    }
 
    @Watch('myAppointmentGroupByConsultantList')
    omMyAppointmentGroupByConsultantList() {
      this.setContactedList();
    }
 
    private setList() {
 
    // format consultant list
      this.consultantList = (this.myConsultantList || [])
        .filter(item => item.contactStatus !== 'contacted')
        .map((item) => ({ ...item, formatDate: new Date(item.updateTime || item.createTime)}))
        .sort((preItem, nextItem) => +nextItem.formatDate - +preItem.formatDate );
    }
 
    private setContactedList() {
      // reset contacted list
      this.contactedList = [];
 
      if (authService.isUserLogin()) {
        this.myAppointmentGroupByConsultantList.filter((consultant) => consultant.appointments!.length)
          .forEach((consultant) => {
            consultant.appointments!.forEach((appointment) => {
              const consultantWithAppointmentId: ConsultantWithAppointmentId = {
                ...consultant,
                appointmentId: appointment.id,
                appointmentDate: appointment.appointmentDate,
                appointmentScore: appointment.satisfactionScore,
                appointmentStatus: appointment.communicateStatus,
                appointmentLastModifiedDate: appointment.lastModifiedDate
              };
              this.contactedList.push(consultantWithAppointmentId);
            })
          });
 
        this.contactedList = this.contactedList
          .filter((appointment) => appointment['appointmentStatus'] !== 'reserved')
          .map((appointment) => ({ ...appointment, sortTime: new Date(appointment.appointmentLastModifiedDate)}))
          .sort((preAppointment, nextAppointment) => +nextAppointment.sortTime - +preAppointment.sortTime);
      }
    }
 
    //////////////////////////////////////////////////////////////////////
 
    clickTab(path: string) {
        this.activeTabName = path;
        this.$router.push('/myConsultantList/' + this.activeTabName)
    }
 
 
}
</script>