123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216 |
- <template>
- <div class="user-detail-container">
- <div class="header">
- <div>
- <h2>{{ name }}</h2>
- <p>你好,野火</p>
- </div>
- <div>
- <img class="avatar" :src="sharedStateContact.currentFriend.portrait">
- </div>
- </div>
- <div class="content">
- <ul>
- <li>
- <label>{{ $t('common.alias') }}</label>
- <div class="alias">
- <input type="text" ref="input" :value="sharedStateContact.currentFriend.friendAlias" placeholder="备注名" @keyup.enter="updateFriendAlias"/>
- </div>
- </li>
- <li>
- <label>{{ $t('common.wfc_id') }}</label>
- <p class="single-line">{{ user.name }}</p>
- </li>
- <li>
- <label>{{ $t('common.area') }}</label>
- <p>{{ $t('common.unknown') }}</p>
- </li>
- <li>
- <label>{{ $t('common.label') }}</label>
- <p>{{ $t('misc.test_user') }}</p>
- </li>
- </ul>
- </div>
- <div class="footer">
- <a v-if="isFriend" @click="this.chat">{{ $t('message.send_message') }}</a>
- <a v-else-if="!isSelf" @click="addFriend">添加好友</a>
- </div>
- </div>
- </template>
- <script>
- import store from "../../store";
- import ConversationType from "../../wfc/model/conversationType";
- import Conversation from "../../wfc/model/conversation";
- import wfc from "../../wfc/client/wfc";
- export default {
- name: "UserDetailPage",
- data() {
- return {
- sharedStateContact: store.state.contact,
- user: store.state.contact.currentFriend,
- }
- },
- mounted() {
- wfc.getUserInfo(this.user.uid, true);
- // uni.setNavigationBarTitle({
- // title:this.user._displayName,
- // });
- },
- onUnload() {
- store.setCurrentFriend(null);
- },
- methods: {
- chat() {
- let conversation = new Conversation(ConversationType.Single, this.user.uid, 0);
- store.setCurrentConversation(conversation);
- this.$go2ConversationPage();
- },
- updateFriendAlias() {
- let friendAlias = this.$refs.input.value;
- if (friendAlias.trim() && friendAlias !== this.sharedStateContact.currentFriend.friendAlias) {
- wfc.setFriendAlias(this.user.uid, friendAlias,
- () => {
- // do nothing
- console.log('setFriendAlias success', this.user, friendAlias);
- },
- (error) => {
- // do nothing
- })
- }
- },
- addFriend(){
- let userInfo = wfc.getUserInfo(wfc.getUserId());
- let reason = '你好,我是' + userInfo.displayName;
- wfc.sendFriendRequest(this.user.uid, reason, '', () => {
- uni.showToast({
- title: '好友请求发送成 ',
- icon: 'none'
- });
- setTimeout(() => {
- uni.navigateBack({
- delta: 1
- })
- }, 1000)
- }, err => {
- uni.showToast({
- title: '好友请求发送失败 ' + err,
- icon: 'none'
- });
- })
- }
- },
- computed: {
- name: function () {
- let name;
- let friend = this.sharedStateContact.currentFriend;
- if (friend.displayName) {
- name = friend.displayName;
- } else {
- name = friend.name;
- }
- // side
- (async () => {
- wfc.getUserInfo(friend.uid, true)
- })();
- return name;
- },
- isFriend() {
- return wfc.isMyFriend(this.user.uid);
- },
- isSelf(){
- return this.user.uid === wfc.getUserId();
- }
- }
- }
- </script>
- <style lang="css" scoped>
- .user-detail-container {
- margin-left: 30px;
- margin-right: 30px;
- border-top-right-radius: var(--main-border-radius);
- border-bottom-right-radius: var(--main-border-radius);
- }
- .header {
- margin-top: 30px;
- display: flex;
- justify-content: space-between;
- align-items: center;
- padding-bottom: 15px;
- border-bottom: 1px solid #e6e6e6;
- }
- .header .avatar {
- width: 80px;
- height: 80px;
- border-radius: 2px;
- }
- .header h2 {
- font-size: 20px;
- font-style: normal;
- font-weight: normal;
- margin-bottom: 5px;
- }
- .content {
- width: 100%;
- text-align: left;
- }
- .content ul {
- list-style: none;
- margin: 20px 0;
- }
- .content ul li {
- margin-left: 0;
- height: 40px;
- line-height: 40px;
- display: flex;
- }
- .content ul li label {
- margin-right: 20px;
- width: 50px;
- text-align: justify;
- text-align-last: justify;
- }
- .content ul li .alias > input {
- width: 100%;
- border: none;
- height: 20px;
- }
- .content ul li > div {
- display: inline-block;
- flex: 1;
- }
- .footer {
- display: flex;
- justify-content: center;
- }
- .footer a {
- margin-top: 30px;
- color: white;
- padding: 10px 40px;
- background-color: #7497f1;
- border-radius: 5px;
- border: 1px solid transparent;
- }
- .footer a:active {
- background-color: #4168e0;
- }
- </style>
|