overleaf-cep/services/web/frontend/js/features/share-project-modal/components/member-privileges.tsx
Tim Down 905cc5d45f Move project context out of scope value store (#26615)
* Refactor project context to not use scope store

* Fix Cypress tests for project context changes

* Fix frontend React Testing Library tests for project context changes

* Remove redundant code

* Fix some project types in tests

* Remove unused import and fix a type

* Throw an error if updating the project in the project context before joining the project

* Fix some review panel tests

* Remove unused imports

GitOrigin-RevId: 2f0c928b651f387aa980c29aef7d1ba0649790a7
2025-07-10 08:06:31 +00:00

24 lines
469 B
TypeScript

import { ProjectMember } from '@/shared/context/types/project-metadata'
import { useTranslation } from 'react-i18next'
export default function MemberPrivileges({
privileges,
}: {
privileges: ProjectMember['privileges']
}) {
const { t } = useTranslation()
switch (privileges) {
case 'readAndWrite':
return t('editor')
case 'readOnly':
return t('viewer')
case 'review':
return t('reviewer')
default:
return null
}
}