diff --git a/src/assets/typing-indicator.svg b/src/assets/typing-indicator.svg new file mode 100644 index 0000000..78796d5 --- /dev/null +++ b/src/assets/typing-indicator.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/src/components/app/LeftPanel.vue b/src/components/app/LeftPanel.vue index 1a09101..c033296 100644 --- a/src/components/app/LeftPanel.vue +++ b/src/components/app/LeftPanel.vue @@ -3,7 +3,8 @@
- + +
@@ -14,13 +15,15 @@ import MyMiniInformation from '../../components/app/MyMiniInformation.vue' import PendingFriends from './relationships/PendingFriends.vue' import AddFriendPanel from './relationships/AddFriendPanel.vue' -import Friends from './relationships/Friends.vue' +import OnlineFriends from './relationships/OnlineFriends.vue' +import OfflineFriends from './relationships/OfflineFriends.vue' export default { components: { MyMiniInformation, PendingFriends, AddFriendPanel, - Friends + OnlineFriends, + OfflineFriends } } diff --git a/src/components/app/MessageTemplate.vue b/src/components/app/MessageTemplate.vue index 7041865..b1e481f 100644 --- a/src/components/app/MessageTemplate.vue +++ b/src/components/app/MessageTemplate.vue @@ -1,42 +1,40 @@ diff --git a/src/components/app/RightPanel.vue b/src/components/app/RightPanel.vue index 3922eae..d47b989 100644 --- a/src/components/app/RightPanel.vue +++ b/src/components/app/RightPanel.vue @@ -8,7 +8,8 @@
Welcome back!{{channelName}}
-
+ +
@@ -29,23 +30,30 @@ + + diff --git a/src/components/app/relationships/OfflineFriends.vue b/src/components/app/relationships/OfflineFriends.vue new file mode 100644 index 0000000..0c00ddb --- /dev/null +++ b/src/components/app/relationships/OfflineFriends.vue @@ -0,0 +1,64 @@ + + + + + + diff --git a/src/components/app/relationships/Friends.vue b/src/components/app/relationships/OnlineFriends.vue similarity index 87% rename from src/components/app/relationships/Friends.vue rename to src/components/app/relationships/OnlineFriends.vue index 6bc1b3d..0cbd9ed 100644 --- a/src/components/app/relationships/Friends.vue +++ b/src/components/app/relationships/OnlineFriends.vue @@ -1,7 +1,7 @@