...

/

Adding Last Seen and User Typing Features to the Application

Adding Last Seen and User Typing Features to the Application

Learn how to implement last seen and user typing features in Vue.js application.

Introduction

In this lesson, we will use subscriptions to implement the last seen and user typing features. Both features require real-time response, although we will delay the responses. To prevent sending requests continuously, we use intervals. When we designed our schema in the user table, we provisioned for lastSeen and userTyping. We will use these fields to implement the user typing and last seen functionalities.

Press + to interact
type User @model {
id: ID!
email: String!
phone: String!
image: String
username: String
lastSeen: String
userTyping: String
updatedAt: String
createdAt: String
contact: [Contact] @hasMany
conversation: [Conversation] @hasMany
message: [Message] @hasMany
}

Adding the

...