mirror of
https://github.com/overleaf/overleaf.git
synced 2024-11-07 20:31:06 -05:00
1be43911b4
Set Prettier's "trailingComma" setting to "es5" GitOrigin-RevId: 9f14150511929a855b27467ad17be6ab262fe5d5
26 lines
648 B
JavaScript
26 lines
648 B
JavaScript
import App from '../../../base'
|
|
import { react2angular } from 'react2angular'
|
|
import { rootContext } from '../../../shared/context/root-context'
|
|
|
|
import ChatPane from '../components/chat-pane'
|
|
|
|
App.controller('ReactChatController', function ($scope, ide) {
|
|
$scope.chatIsOpen = ide.$scope.ui.chatOpen
|
|
|
|
ide.$scope.$watch('ui.chatOpen', newValue => {
|
|
$scope.$applyAsync(() => {
|
|
$scope.chatIsOpen = newValue
|
|
})
|
|
})
|
|
|
|
$scope.resetUnreadMessages = () =>
|
|
ide.$scope.$broadcast('chat:resetUnreadMessages')
|
|
})
|
|
|
|
App.component(
|
|
'chat',
|
|
react2angular(rootContext.use(ChatPane), [
|
|
'resetUnreadMessages',
|
|
'chatIsOpen',
|
|
])
|
|
)
|