mirror of
https://github.com/yu-i-i/overleaf-cep.git
synced 2025-07-29 05:00:06 +02:00

* 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
31 lines
869 B
TypeScript
31 lines
869 B
TypeScript
import { useTranslation } from 'react-i18next'
|
|
import { useProjectContext } from '../../../shared/context/project-context'
|
|
import * as eventTracking from '../../../infrastructure/event-tracking'
|
|
import { isSmallDevice } from '../../../infrastructure/event-tracking'
|
|
import MaterialIcon from '@/shared/components/material-icon'
|
|
|
|
export default function DownloadSource() {
|
|
const { t } = useTranslation()
|
|
const { projectId } = useProjectContext()
|
|
|
|
function sendDownloadEvent() {
|
|
eventTracking.sendMB('download-zip-button-click', {
|
|
projectId,
|
|
location: 'left-menu',
|
|
isSmallDevice,
|
|
})
|
|
}
|
|
|
|
return (
|
|
<a
|
|
href={`/project/${projectId}/download/zip`}
|
|
target="_blank"
|
|
rel="noreferrer"
|
|
onClick={sendDownloadEvent}
|
|
>
|
|
<MaterialIcon type="folder_zip" size="2x" />
|
|
<br />
|
|
{t('source')}
|
|
</a>
|
|
)
|
|
}
|