web-apps/apps/common/mobile/lib/controller/collaboration/Collaboration.jsx

34 lines
1.6 KiB
React
Raw Normal View History

2020-09-29 18:59:57 +00:00
import React, { Component } from 'react'
import {observer, inject} from "mobx-react"
2020-08-31 17:31:05 +00:00
2020-09-29 18:59:57 +00:00
class CollaborationController extends Component {
constructor(props){
2021-02-11 23:34:01 +00:00
super(props);
2020-09-29 18:59:57 +00:00
2021-02-18 15:40:54 +00:00
Common.Notifications.on('configOptionsFill', () => {
const api = Common.EditorApi.get();
2020-09-29 18:59:57 +00:00
// this.api = api;
api.asc_registerCallback('asc_onAuthParticipantsChanged', this.onChangeEditUsers.bind(this));
api.asc_registerCallback('asc_onParticipantsChanged', this.onChangeEditUsers.bind(this));
// this.api.asc_registerCallback('asc_onAddComment', _.bind(this.onApiAddComment, this));
// this.api.asc_registerCallback('asc_onAddComments', _.bind(this.onApiAddComments, this));
// this.api.asc_registerCallback('asc_onChangeCommentData', _.bind(this.onApiChangeCommentData, this));
// this.api.asc_registerCallback('asc_onRemoveComment', _.bind(this.onApiRemoveComment, this));
// this.api.asc_registerCallback('asc_onRemoveComments', _.bind(this.onApiRemoveComments, this));
// this.api.asc_registerCallback('asc_onShowComment', _.bind(this.apiShowComments, this));
// this.api.asc_registerCallback('asc_onHideComment', _.bind(this.apiHideComments, this));
});
}
onChangeEditUsers(users) {
const storeUsers = this.props.users;
storeUsers.reset(users);
2021-02-18 15:40:54 +00:00
storeUsers.setCurrentUser(this.props.storeAppOptions.user.id);
2020-09-29 18:59:57 +00:00
};
2020-09-29 18:59:57 +00:00
render() {
return null
2020-08-31 17:31:05 +00:00
}
2021-02-11 23:34:01 +00:00
}
2020-08-31 17:31:05 +00:00
2021-02-18 15:40:54 +00:00
export default inject('users', 'storeAppOptions')(observer(CollaborationController));