blob: 36435cd9ce03344bc631c83209a1d14a3ba702ce (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
|
import React from 'react';
import { Fab, makeStyles } from '@material-ui/core';
import AddIcon from '@material-ui/icons/Add';
import { useNavigate } from 'react-router-dom';
import { useReadonly } from '../../common/util/permissions';
import dimensions from '../../common/theme/dimensions';
const useStyles = makeStyles((theme) => ({
fab: {
position: 'fixed',
bottom: theme.spacing(2),
right: theme.spacing(2),
[theme.breakpoints.down('sm')]: {
bottom: dimensions.bottomBarHeight + theme.spacing(2),
},
},
}));
const CollectionFab = ({ editPath, disabled }) => {
const classes = useStyles();
const navigate = useNavigate();
const readonly = useReadonly();
if (!readonly && !disabled) {
return (
<Fab size="medium" color="primary" className={classes.fab} onClick={() => navigate(editPath)}>
<AddIcon />
</Fab>
);
}
return '';
};
export default CollectionFab;
|