0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

react-admin の ImageField でサイズを指定する

Posted at

TL;DR

  • react-admin の ImageField でサイズを指定する

カスタムコンポーネント

import { ImageField } from "react-admin";
import PropTypes from "prop-types";
import { makeStyles } from "@material-ui/core/styles";

const useStyles = (width: number) => makeStyles({ image: { width } })();

export const MyImageField = ({ width = 480, ...props }) => {
  const classes = useStyles(width);
  return <ImageField {...props} classes={classes} />;
};

MyImageField.defaultProps = {
  addLabel: true,
  textAlign: "center",
};

MyImageField.propTypes = {
  width: PropTypes.number,
};

使い方

import { MyImageField } from "../MyImageField";

const list = (props) => (
  <List>
    <Datagrid>
      <MyImageField source="photo.src" width={80} />
    </Datagrid>
  </List>
);

参考

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?