| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147 |
- <template>
- <view class="tab-page friend">
- <nav-bar add search @add="onAddNewFriends" @search="showSearch = !showSearch">好友</nav-bar>
- <view class="nav-bar" v-if="showSearch">
- <view class="nav-search">
- <uni-search-bar v-model="searchText" radius="100" cancelButton="none"
- placeholder="点击搜索好友"></uni-search-bar>
- </view>
- </view>
- <view class="friend-tip" v-if="friendIdx.length == 0">
- 温馨提示:您现在还没有任何好友,快点击右上方'+'按钮添加好友吧~
- </view>
- <view class="friend-items" v-else>
- <up-index-list :index-list="friendIdx">
- <template v-for="(friends, i) in friendGroups">
- <up-index-item>
- <up-index-anchor :text="friendIdx[i] == '*' ? '在线' : friendIdx[i]"></up-index-anchor>
- <view v-for="(friend, idx) in friends" :key="idx">
- <friend-item :friend="friend"></friend-item>
- </view>
- </up-index-item>
- </template>
- </up-index-list>
- </view>
- </view>
- </template>
- <script>
- import { pinyin } from 'pinyin-pro';
- export default {
- data() {
- return {
- showSearch: false,
- searchText: ''
- }
- },
- methods: {
- onAddNewFriends() {
- uni.navigateTo({
- url: "/pages/friend/friend-add"
- })
- },
- firstLetter(strText) {
- // 使用pinyin-pro库将中文转换为拼音
- let pinyinOptions = {
- toneType: 'none', // 无声调
- type: 'normal' // 普通拼音
- };
- let pyText = pinyin(strText, pinyinOptions);
- return pyText[0];
- },
- isEnglish(character) {
- return /^[A-Za-z]+$/.test(character);
- }
- },
- computed: {
- friendGroupMap() {
- // 按首字母分组
- let groupMap = new Map();
- this.friendStore.friends.forEach((f) => {
- if (f.deleted || (this.searchText && !f.nickName.includes(this.searchText))) {
- return;
- }
- let letter = this.firstLetter(f.nickName).toUpperCase();
- // 非英文一律为#组
- if (!this.isEnglish(letter)) {
- letter = "#"
- }
- if (f.online) {
- letter = '*'
- }
- if (groupMap.has(letter)) {
- groupMap.get(letter).push(f);
- } else {
- groupMap.set(letter, [f]);
- }
- })
- // 排序
- let arrayObj = Array.from(groupMap);
- arrayObj.sort((a, b) => {
- // #组在最后面
- if (a[0] == '#' || b[0] == '#') {
- return b[0].localeCompare(a[0])
- }
- return a[0].localeCompare(b[0])
- })
- groupMap = new Map(arrayObj.map(i => [i[0], i[1]]));
- return groupMap;
- },
- friendIdx() {
- return Array.from(this.friendGroupMap.keys());
- },
- friendGroups() {
- return Array.from(this.friendGroupMap.values());
- }
- }
- }
- </script>
- <style lang="scss" scoped>
- .friend {
- position: relative;
- display: flex;
- flex-direction: column;
- :deep(.u-index-anchor) {
- height: 60rpx !important;
- background-color: unset !important;
- border-bottom: none !important;
- }
- :deep(.u-index-anchor__text) {
- color: $im-text-color !important;
- }
- :deep(.u-index-list__letter__item) {
- width: 48rpx !important;
- height: 48rpx !important;
- }
- :deep(.u-index-list__letter__item__index) {
- font-size: $im-font-size-small !important;
- }
- .friend-tip {
- position: absolute;
- top: 400rpx;
- padding: 50rpx;
- text-align: center;
- line-height: 50rpx;
- color: $im-text-color-lighter;
- }
- .friend-items {
- flex: 1;
- padding: 0;
- overflow: hidden;
- position: relative;
- .scroll-bar {
- height: 100%;
- }
- }
- }
- </style>
|