group-list.vue
5.99 KB
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
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
<template>
<div class="list-container"
v-loading="hideSearchLoading"
element-loading-text="拼命搜索中"
element-loading-background="rgba(0, 0, 0, 0.8)">
<div class="header-bar">
<el-input v-model="search" size="mini" placeholder="筛选群名" prefix-icon="el-icon-search"/>
<!-- <el-autocomplete-->
<!-- :value-key="'groupID'"-->
<!-- :debounce="500"-->
<!-- size="mini"-->
<!-- v-model="groupID"-->
<!-- placeholder="输入群ID搜索"-->
<!-- :fetch-suggestions="searchGroupByID"-->
<!-- class="group-seach-bar"-->
<!-- prefix-icon="el-icon-search"-->
<!-- :hide-loading="hideSearchLoading"-->
<!-- @input="hideSearchLoading = false"-->
<!-- @select="applyJoinGroup"-->
<!-- ></el-autocomplete>-->
<!-- <button title="创建群组" @click="showCreateGroupModel">-->
<!-- <i class="tim-icon-add"></i>-->
<!-- </button>-->
</div>
<div class="group-container" v-infinite-scroll="fetch" :infinite-scroll-immediate="true"
:infinite-scroll-delay="100"
style="height: calc(80vh - 60px)">
<group-item v-for="group in groupList" :key="group.esm_id" :group="group"/>
<!-- <el-dialog title="创建群组" :visible="createGroupModelVisible" @close="closeCreateGroupModel" width="30%">-->
<!-- <create-group></create-group>-->
<!-- </el-dialog>-->
</div>
</div>
</template>
<script>
import {mapState} from 'vuex'
// import CreateGroup from './create-group.vue'
import GroupItem from './group-item.vue'
import Helper from '../../utils/helper'
export default {
data() {
return {
groupID: '',
hideSearchLoading: false,
search: '',
page: 1,
size: 15,
}
},
components: {
GroupItem
// ElDialog: Dialog,
// CreateGroup,
// ElAutocomplete: Autocomplete
},
mounted() {
},
computed: {
groupList: function () {
return this.$store.state.group.groupList
},
...mapState({
createGroupModelVisible: state => {
return state.group.createGroupModelVisible
}
})
},
created() {
this.fetch()
},
methods: {
fetch() {
Helper.groupList({
activityNameLike: this.search, size: this.size, page: this.page
}).then(res => {
this.onGroupUpdated(this.groupList.concat(res.data))
++this.page
}).finally(() => {
this.hideSearchLoading = false
})
},
onGroupUpdated(groupList) {
this.$store.dispatch('updateGroupList', groupList)
},
createGroup() {
},
closeCreateGroupModel() {
this.$store.commit('updateCreateGroupModelVisible', false)
},
searchGroupByID(queryString, showInSearchResult) {
if (queryString.trim().length > 0) {
this.hideSearchLoading = false
this.tim
.searchGroupByID(queryString)
.then(({data: {group}}) => {
showInSearchResult([group])
})
.catch(() => {
this.$store.commit('showMessage', {
message: '没有找到该群',
type: 'error'
})
})
} else {
this.hideSearchLoading = true
}
},
showCreateGroupModel() {
this.$store.commit('updateCreateGroupModelVisible', true)
},
applyJoinGroup(group) {
this.tim
.joinGroup({groupID: group.groupID})
.then(async res => {
switch (res.data.status) {
case this.TIM.TYPES.JOIN_STATUS_WAIT_APPROVAL:
this.$store.commit('showMessage', {
message: '申请成功,等待群管理员确认。',
type: 'info'
})
break
case this.TIM.TYPES.JOIN_STATUS_SUCCESS:
await this.$store.dispatch(
'checkoutConversation',
`GROUP${res.data.group.groupID}`
)
this.$store.commit('showMessage', {
message: '加群成功',
type: 'success'
})
break
case this.TIM.TYPES.JOIN_STATUS_ALREADY_IN_GROUP:
this.$store.commit('showMessage', {
message: '您已经是群成员了,请勿重复加群哦!',
type: 'info'
})
break
default:
break
}
})
.catch(error => {
this.$store.commit('showMessage', {
message: error.message,
type: 'error'
})
})
}
},
watch: {
'search'() {
this.fetch()
}
}
}
</script>
<style lang="stylus" scoped>
.list-container
height 100%
width 100%
display flex
flex-direction column
.group-container
overflow-y scroll
.header-bar
display: flex;
flex-shrink 0
height 50px
border-bottom 1px solid $background-deep-dark
padding 10px 10px 10px 20px
>>> .el-input
input
color $first
border none
border-radius 30px
background-color $deep-background !important
&::placeholder
color $font-dark
.el-icon-search
color $font-dark
button
float right
display: inline-block;
cursor: pointer;
background $background-deep-dark
border: none
color: $font-dark;
box-sizing: border-box;
transition: .3s;
-moz-user-select: none;
-webkit-user-select: none;
-ms-user-select: none;
margin: 0
padding 0
width 30px
height 30px
line-height 34px
font-size: 24px;
text-align: center;
white-space: nowrap;
border-radius: 50%
outline 0
flex-shrink 0
&:hover
transform: rotate(360deg);
color $light-primary
.scroll-container
overflow-y scroll
flex 1
</style>