The Word Processor component allows multiple users to work on the same document simultaneously. This can be done in real time so that collaborators can see the changes as they are made. Collaborative editing can be a great way to improve efficiency, as it allows team members to work together on a document without having to wait for others to finish their changes.
The Word Processor component allows multiple users to connect and edit the same document simultaneously using the SignalR connection.
initializeSignalR = (): void => {
// SignalR connection
this.connection = new HubConnectionBuilder().withUrl(this.serviceUrl + 'documenteditorhub', {
skipNegotiation: true,
transport: HttpTransportType.WebSockets
}).withAutomaticReconnect().build();
//Event handler for signalR connection
this.connection.on('dataReceived', this.onDataRecived.bind(this));
this.connection.onclose(async () => {
if (this.connection && this.connection.state === HubConnectionState.Disconnected) {
alert('Connection lost. Please relod the browser to continue.');
}
});
}
Word Processor is also available in Blazor, React, Vue, and JavaScript frameworks. Check out the different Word Processor platforms from the links below,
The Angular Word Processor works well with all modern web browsers such as Chrome, Firefox, Microsoft Edge, Safari, and Opera.