add toast and bgraham

This commit is contained in:
Youwen Wu 2024-02-15 10:32:55 -08:00
parent 19b4da3d42
commit b531ec40dc
2 changed files with 33 additions and 18 deletions

View file

@ -508,6 +508,15 @@ export const authors: Readonly<{ [key: string]: Author }> = {
image: '/img/profiles/cbordalo.jpg',
nationality: ['phl', 'usa'],
},
bgraham: {
name: {
first: 'Benjamin',
last: 'Graham',
},
affiliation: ['Student@srvhs'],
image: '/img/profiles/bgraham.jpg',
nationality: ['usa'],
},
}
export interface Affiliation {

View file

@ -5,6 +5,7 @@ import Link from 'next/link'
import { loadAuthors } from '@/app/db/loaders'
import { useSuspenseQuery } from '@tanstack/react-query'
import { epoch2date } from '@/app/utils/epoch2datestring'
import { toast } from 'react-toastify'
const VersionChooser = ({
doc,
@ -25,6 +26,28 @@ const VersionChooser = ({
const fileEnding = file === 'other' ? '' : `.${file}`
const [selectedRevision, setSelectedRevision] = useState<number>(latest) // Initialize the selected revision with the latest revision
const notifyCopied = () =>
toast('BibTeX copied to clipboard!', { type: 'success' })
const handleClick = () => {
const bibtex = `@article{
author={${authors
.map((a: string, i) => {
const author = data[a].name.first + ' ' + data[a].name.last
if (i === 0) return author
else if (i === authors.length - 1) return ` and ${author}`
else return `, ${author}`
})
.join('')}},
title={${doc.manifest.title}},
journal={eeXiv journal},
year={${date.getFullYear()}},
month={${date.toLocaleString('default', { month: 'short' })}},
url={${window.location.href}}
}`
navigator.clipboard.writeText(bibtex)
notifyCopied()
}
return (
<div>
@ -46,24 +69,7 @@ const VersionChooser = ({
</Link>
<button
className='ml-2 h-10 px-2.5 bg-slate-300 rounded-md'
onClick={() => {
const bibtex = `@article{
author={${authors
.map((a: string, i) => {
const author = data[a].name.first + ' ' + data[a].name.last
if (i === 0) return author
else if (i === authors.length - 1) return ` and ${author}`
else return `, ${author}`
})
.join('')}},
title={${doc.manifest.title}},
journal={eeXiv journal},
year={${date.getFullYear()}},
month={${date.toLocaleString('default', { month: 'short' })}},
url={${window.location.href}}
}`
navigator.clipboard.writeText(bibtex)
}}
onClick={handleClick}
>
Export BibTeX
</button>