mirror of
https://github.com/overleaf/overleaf.git
synced 2024-11-07 20:31:06 -05:00
b2e74464a2
editor events GitOrigin-RevId: 8d74576d4f8117ecca47402afcc9cee229dd0dca
29 lines
772 B
TypeScript
29 lines
772 B
TypeScript
import { useTranslation } from 'react-i18next'
|
|
import { useProjectContext } from '../../../shared/context/project-context'
|
|
import Icon from '../../../shared/components/icon'
|
|
import * as eventTracking from '../../../infrastructure/event-tracking'
|
|
|
|
export default function DownloadSource() {
|
|
const { t } = useTranslation()
|
|
const { _id: projectId } = useProjectContext()
|
|
|
|
function sendDownloadEvent() {
|
|
eventTracking.sendMB('download-zip-button-click', {
|
|
projectId,
|
|
location: 'left-menu',
|
|
})
|
|
}
|
|
|
|
return (
|
|
<a
|
|
href={`/project/${projectId}/download/zip`}
|
|
target="_blank"
|
|
rel="noreferrer"
|
|
onClick={sendDownloadEvent}
|
|
>
|
|
<Icon type="file-archive-o" modifier="2x" />
|
|
<br />
|
|
{t('source')}
|
|
</a>
|
|
)
|
|
}
|