123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281 |
- <template>
- <view class="single_settings_container">
- <custom-nav-bar title="好友设置" />
- <view class="row_wrap">
- <view class="setting_row info_row">
- <view @click="toUserCard" class="user_info">
- <my-avatar :src="storeCurrentConversation.faceURL" :desc="storeCurrentConversation.showName" size="46" />
- </view>
- <view @click="invite2group" class="action">
- <image style="width: 46px; height: 46px" src="https://bjyjb-1362704775.cos.ap-chongqing.myqcloud.com/shop/image/single_setting_add.png" alt="" />
- </view>
- </view>
- <view class="setting_row">
- <search-action-row />
- </view>
- <view class="setting_row">
- <setting-item title="置顶联系人" :loading="switchLoading.pin" @switch="changePin" :switchValue="storeCurrentConversation.isPinned" is_switch :border="false" />
- <setting-item
- title="消息免打扰"
- :loading="switchLoading.opt"
- @switch="changeOpt($event, 2)"
- :switchValue="storeCurrentConversation.recvMsgOpt === 2"
- is_switch
- :border="false"
- />
- </view>
- <view class="setting_row">
- <!-- <setting-item
- title="阅后即焚"
- :loading="switchLoading.readLimit"
- @switch="changeReadLimit"
- :switchValue="storeCurrentConversation.isPrivateChat"
- is_switch
- :border="false"
- />
- <setting-item v-if="storeCurrentConversation.isPrivateChat" title="时间设置" @click="chooseReadLimitTime" :border="false">
- <text style="color: #999">{{ storeCurrentConversation.burnDuration || 30 }}s</text>
- </setting-item>
- <setting-item
- title="定期销毁消息记录"
- :loading="switchLoading.readLimit"
- @switch="changeMsgDestruct"
- :switchValue="storeCurrentConversation.isMsgDestruct"
- is_switch
- :border="false"
- /> -->
- <setting-item v-if="storeCurrentConversation.isMsgDestruct" title="定期销毁时间设置" @click="chooseMsgDestructTime" :border="false">
- <text style="color: #999">{{ parseTime(storeCurrentConversation.msgDestructTime) }}</text>
- </setting-item>
- <!-- <setting-item title="好友消息设置" :border="false" /> -->
- </view>
- <view class="setting_row">
- <setting-item @click="toSetBg" title="设置聊天背景" :border="false" />
- <setting-item @click="toSetFontSize" title="字体大小" :border="false" />
- </view>
- <view class="setting_row" style="margin-bottom: 10vh">
- <setting-item @click="() => (showConfirm = true)" title="清空聊天记录" :border="false" />
- </view>
- <u-modal content="确定要清空聊天记录吗?" asyncClose :show="showConfirm" showCancelButton @confirm="confirmClear" @cancel="() => (showConfirm = false)"></u-modal>
- <u-picker :show="showMsgDestructTime" ref="uPicker" :columns="columns" @confirm="confirmMsgDestructTime" @cancel="() => (showMsgDestructTime = false)"></u-picker>
- </view>
- </view>
- </template>
- <script>
- import { mapGetters } from 'vuex';
- import IMSDK, { MessageReceiveOptType } from 'openim-uniapp-polyfill';
- import CustomNavBar from '../../../components/CustomNavBar/index.vue';
- import MyAvatar from '../../../components/MyAvatar/index.vue';
- import SettingItem from '../../../components/SettingItem/index.vue';
- import SearchActionRow from './components/SearchActionRow.vue';
- export default {
- components: {
- CustomNavBar,
- MyAvatar,
- SettingItem,
- SearchActionRow
- },
- props: {},
- data() {
- return {
- switchLoading: {
- pin: false,
- opt: false,
- readLimit: false,
- msgDestruct: false
- },
- showConfirm: false,
- showMsgDestructTime: false,
- columns: [
- [1, 2, 3, 4, 5, 6, 7],
- ['天', '周', '月']
- ]
- };
- },
- computed: {
- ...mapGetters(['storeCurrentConversation']),
- parseTime() {
- return function (seconds) {
- const dayInSeconds = 86400;
- if (seconds <= 7 * dayInSeconds) {
- const days = Math.ceil(seconds / dayInSeconds);
- return `${days}天`;
- } else if (seconds <= 7 * 7 * dayInSeconds) {
- const weeks = Math.ceil(seconds / (7 * dayInSeconds));
- return `${weeks}周`;
- } else {
- const months = Math.ceil(seconds / (30 * dayInSeconds));
- return `${months}月`;
- }
- };
- }
- },
- methods: {
- toUserCard() {
- uni.navigateTo({
- url: `/pages_im/pages/common/userCard/index?sourceID=${this.storeCurrentConversation.userID}`
- });
- },
- invite2group() {
- const checkedMemberList = JSON.stringify([
- {
- userID: this.storeCurrentConversation.userID,
- faceURL: this.storeCurrentConversation.faceURL,
- nickname: this.storeCurrentConversation.showName
- }
- ]);
- uni.navigateTo({
- url: `/pages_im/pages/common/createGroup/index?checkedMemberList=${checkedMemberList}`
- });
- },
- changePin(isPinned) {
- this.switchLoading.pin = true;
- IMSDK.asyncApi(IMSDK.IMMethods.PinConversation, IMSDK.uuid(), {
- conversationID: this.storeCurrentConversation.conversationID,
- isPinned
- })
- .then(() => uni.$u.toast('操作成功'))
- .catch(() => uni.$u.toast('操作失败'))
- .finally(() => (this.switchLoading.pin = false));
- },
- changeOpt(notNomal, type) {
- this.switchLoading.opt = true;
- IMSDK.asyncApi(IMSDK.IMMethods.SetConversationRecvMessageOpt, IMSDK.uuid(), {
- conversationID: this.storeCurrentConversation.conversationID,
- opt: notNomal ? type : MessageReceiveOptType.Nomal
- })
- .then(() => uni.$u.toast('操作成功'))
- .catch(() => uni.$u.toast('操作失败'))
- .finally(() => (this.switchLoading.opt = false));
- },
- changeReadLimit(isLimit) {
- this.switchLoading.readLimit = true;
- IMSDK.asyncApi(IMSDK.IMMethods.SetConversationPrivateChat, IMSDK.uuid(), {
- conversationID: this.storeCurrentConversation.conversationID,
- isPrivate: isLimit
- })
- .then(() => uni.$u.toast('操作成功'))
- .catch(() => uni.$u.toast('操作失败'))
- .finally(() => (this.switchLoading.readLimit = false));
- },
- changeMsgDestruct(isLimit) {
- this.switchLoading.msgDestruct = true;
- IMSDK.asyncApi('setConversationIsMsgDestruct', IMSDK.uuid(), {
- conversationID: this.storeCurrentConversation.conversationID,
- isMsgDestruct: isLimit
- })
- .then(() => uni.$u.toast('操作成功'))
- .catch((err) => {
- console.log(err);
- uni.$u.toast('操作失败');
- })
- .finally(() => (this.switchLoading.msgDestruct = false));
- },
- confirmClear() {
- IMSDK.asyncApi(IMSDK.IMMethods.ClearConversationAndDeleteAllMsg, IMSDK.uuid(), this.storeCurrentConversation.conversationID)
- .then(() => {
- uni.$u.toast('操作成功');
- this.$store.commit('message/SET_HISTORY_MESSAGE_LIST', []);
- this.$store.commit('message/SET_PREVIEW_IMAGE_LIST', []);
- })
- .catch(() => uni.$u.toast('操作失败'))
- .finally(() => (this.showConfirm = false));
- },
- chooseReadLimitTime() {
- uni.showActionSheet({
- itemList: ['1天', '1小时', '5分钟', '30s'],
- success: ({ tapIndex }) => {
- let sec = 30;
- if (tapIndex === 0) {
- sec = 86400;
- }
- if (tapIndex === 1) {
- sec = 3600;
- }
- if (tapIndex === 2) {
- sec = 300;
- }
- IMSDK.asyncApi(IMSDK.IMMethods.SetConversationBurnDuration, IMSDK.uuid(), {
- conversationID: this.storeCurrentConversation.conversationID,
- burnDuration: sec
- })
- .then((res) => {
- console.log(res);
- })
- .catch(() => uni.$u.toast('操作失败'));
- }
- });
- },
- chooseMsgDestructTime() {
- this.showMsgDestructTime = true;
- },
- confirmMsgDestructTime(e) {
- console.log('confirm', e.value, e.value[0], e.value[1]);
- let time = 86400;
- if (e.value[1] == '周') time *= 7;
- if (e.value[1] == '月') time *= 30;
- console.log(e.value[0] * time);
- IMSDK.asyncApi('setConversationMsgDestructTime', IMSDK.uuid(), {
- conversationID: this.storeCurrentConversation.conversationID,
- msgDestructTime: e.value[0] * time
- })
- .then((res) => {
- console.log(res);
- })
- .catch(() => uni.$u.toast('操作失败'));
- this.showMsgDestructTime = false;
- },
- toSetBg() {
- uni.$u.route('/pages_im/pages/conversation/setChatBackgroup/index');
- },
- toSetFontSize() {
- uni.$u.route('/pages_im/pages/conversation/setFontSize/index');
- }
- }
- };
- </script>
- <style lang="scss" scoped>
- .single_settings_container {
- @include colBox(false);
- height: 100vh;
- background-color: #f6f6f6;
- .row_wrap {
- flex: 1;
- overflow-y: auto;
- }
- .setting_row {
- margin: 24rpx 24rpx 0 24rpx;
- background: #fff;
- border-radius: 6px;
- overflow: hidden;
- }
- .info_row {
- display: flex;
- align-items: center;
- padding: 44rpx;
- .user_info {
- @include colBox(false);
- margin-right: 36rpx;
- .user_name {
- margin-top: 20rpx;
- color: #666;
- }
- }
- }
- }
- </style>
|