84 lines
2.1 KiB
JavaScript
84 lines
2.1 KiB
JavaScript
import React from 'react'
|
|
import PropTypes from 'prop-types'
|
|
|
|
import {
|
|
Button,
|
|
Box,
|
|
Typography,
|
|
Dialog,
|
|
DialogActions,
|
|
DialogContent,
|
|
DialogContentText,
|
|
DialogTitle
|
|
} from '@material-ui/core'
|
|
|
|
import MizikBadjMeni from './mizik-badj-meni'
|
|
|
|
export default function AwtisBiyografi({alias, teks, biyografi, esByografiOuve, meteEsByografiOuve}) {
|
|
const handleClose = () => {
|
|
meteEsByografiOuve(false)
|
|
}
|
|
|
|
const descriptionElementRef = React.useRef(null)
|
|
React.useEffect(() => {
|
|
if (esByografiOuve) {
|
|
const {current: descriptionElement} = descriptionElementRef
|
|
if (descriptionElement !== null) {
|
|
descriptionElement.focus()
|
|
}
|
|
}
|
|
}, [esByografiOuve])
|
|
|
|
return (
|
|
<div>
|
|
<Dialog
|
|
scroll='paper'
|
|
open={esByografiOuve}
|
|
aria-labelledby='scroll-dialog-title'
|
|
aria-describedby='scroll-dialog-description'
|
|
onClose={handleClose}
|
|
>
|
|
<Box display='flex' justifyContent='center' alignItems='center'>
|
|
<DialogTitle id='scroll-dialog-title' align='center'>{alias}</DialogTitle>
|
|
<MizikBadjMeni teks={teks} />
|
|
</Box>
|
|
<DialogContent dividers>
|
|
<DialogContentText
|
|
ref={descriptionElementRef}
|
|
align='justify'
|
|
id='scroll-dialog-description'
|
|
tabIndex={-1}
|
|
>
|
|
{biyografi ? (
|
|
<Typography component='span'>
|
|
{biyografi}
|
|
</Typography>
|
|
) : (
|
|
<Typography component='span'>
|
|
Pas de biobraphie disponible
|
|
</Typography>
|
|
)}
|
|
</DialogContentText>
|
|
</DialogContent>
|
|
<DialogActions style={{margin: 'auto'}}>
|
|
<Button variant='outlined' color='primary' onClick={handleClose}>
|
|
Fèmen
|
|
</Button>
|
|
</DialogActions>
|
|
</Dialog>
|
|
</div>
|
|
)
|
|
}
|
|
|
|
AwtisBiyografi.propTypes = {
|
|
alias: PropTypes.string.isRequired,
|
|
teks: PropTypes.array.isRequired,
|
|
biyografi: PropTypes.string,
|
|
esByografiOuve: PropTypes.bool.isRequired,
|
|
meteEsByografiOuve: PropTypes.func.isRequired
|
|
}
|
|
|
|
AwtisBiyografi.defaultProps = {
|
|
biyografi: null
|
|
}
|