mirror of
https://github.com/overleaf/overleaf.git
synced 2024-10-31 21:21:03 -04:00
ad3c66b36e
GitOrigin-RevId: cab09354cf4b325a1ea3814a8c4c49fac7c831be
76 lines
1.9 KiB
JavaScript
76 lines
1.9 KiB
JavaScript
import App from '../../../base'
|
|
import { react2angular } from 'react2angular'
|
|
|
|
import ShareProjectModal from '../components/share-project-modal'
|
|
import { rootContext } from '../../../shared/context/root-context'
|
|
import { listProjectInvites, listProjectMembers } from '../utils/api'
|
|
|
|
App.component(
|
|
'shareProjectModal',
|
|
react2angular(
|
|
rootContext.use(ShareProjectModal),
|
|
Object.keys(ShareProjectModal.propTypes)
|
|
)
|
|
)
|
|
|
|
export default App.controller(
|
|
'ReactShareProjectModalController',
|
|
function ($scope, eventTracking, ide) {
|
|
$scope.isAdmin = false
|
|
$scope.show = false
|
|
|
|
$scope.handleHide = () => {
|
|
$scope.$applyAsync(() => {
|
|
$scope.show = false
|
|
})
|
|
}
|
|
|
|
$scope.openShareProjectModal = isAdmin => {
|
|
eventTracking.sendMBOnce('ide-open-share-modal-once')
|
|
$scope.$applyAsync(() => {
|
|
$scope.isAdmin = isAdmin
|
|
$scope.show = true
|
|
})
|
|
}
|
|
|
|
/* tokens */
|
|
|
|
ide.socket.on('project:tokens:changed', data => {
|
|
if (data.tokens != null) {
|
|
$scope.$applyAsync(() => {
|
|
$scope.project.tokens = data.tokens
|
|
})
|
|
}
|
|
})
|
|
|
|
ide.socket.on('project:membership:changed', data => {
|
|
if (data.members) {
|
|
listProjectMembers($scope.project)
|
|
.then(({ members }) => {
|
|
if (members) {
|
|
$scope.$applyAsync(() => {
|
|
$scope.project.members = members
|
|
})
|
|
}
|
|
})
|
|
.catch(() => {
|
|
console.error('Error fetching members for project')
|
|
})
|
|
}
|
|
|
|
if (data.invites) {
|
|
listProjectInvites($scope.project)
|
|
.then(({ invites }) => {
|
|
if (invites) {
|
|
$scope.$applyAsync(() => {
|
|
$scope.project.invites = invites
|
|
})
|
|
}
|
|
})
|
|
.catch(() => {
|
|
console.error('Error fetching invites for project')
|
|
})
|
|
}
|
|
})
|
|
}
|
|
)
|