Quantcast
Channel: CSSタグが付けられた新着記事 - Qiita
Viewing all articles
Browse latest Browse all 8652

React MaterialUIでのスタイルの当て方3選 簡単に特徴とメリデメ

$
0
0

はじめに

私は今年からインターンをしていた会社に入社し、フロントエンドエンジニアとしてReact Reduxを使い開発を行っているものです。
HTML CSSは3ヶ月ほどかけて自社のランディングページを作成した時に触りました。初めてqiita書きます!

styled-components

特徴

  • 各コンポーネントごとに必要なcssを記載し適応させる
  • cssをコンポーネント毎に書くため、useStyles同様1ページのコード量は増えてしまう
  • 要素の命名を自由に変えられるためコンポーネント内での責任による命名ができる。
  • useStylesほどmaterialUIと密ではない

メリット

  • 1ファイルでコードとcssが完結する。
  • 要素内にstyle={}でcssを適応させるよりすっきりしてわかりやすい
  • 要素名が<Grid>とか<Button>とかじゃなくて、<ListWrapper>とか<FormSubmitButton>とかにできるのでかっこいい!!! + 見ただけで何をしているか理解することができる
  • intelliJを使っていますが、useStylesと違って、styleを当てている変数に飛べる。(useStylesはclassesに飛んじゃう)
  • devtoolを使ってスタイル変更の確認をしてコピペでスタイルが適応される

デメリット

  • 1ファイルで完結することの裏返しで、cssとコードが1ファイルに書かれるためコードが長くなってしまう
  • 予測変換が全く出ない。間違ったcssも赤く出てくれない。間違った値を入れても赤くしてくれない。
  • 疑似クラスがcssの記載の方法とは違ってる。私が未熟者だからですが、わかりづらい書き方している。
  • materialUIを使っているとたまにunexpectedなdivが入ってくるが、それに対応しずらい。

Example

styledComponent.tsx
import{Button,Grid,Paper,Typography}from"@material-ui/core";importReactfrom"react";importstyledfrom"styled-components";typeProps={};constStyledComponentModal:React.FC<Props>=()=>{return(<StyledComponentModalstyle={{display:styledComponentModalOpen?"block":"none"}}><ModalContentWrapper><Typographyvariant={"h4"}>StyledComponent</Typography>
<StyledTypographyvariant={"body1"}>hogehoge</StyledTypography>
<SubmitButton>SUBMIT</SubmitButton>
<StyledComponentUl><li>1li</li>
<li>2li</li>
</StyledComponentUl>
</ModalContentWrapper>
</StyledComponentModal>
);exportdefaultStyledComponentModal;constStyledComponentModal=styled(Paper)`
    width: 800px;
    height: 700px;
    position: absolute;
    top: 300px;
    background-color: white;
  `;constModalContentWrapper=styled(Grid)`
    display: flex;
    flex-direction: column;
    padding: 20px;
  `;constStyledTypography=styled(Typography)`
    letter-spacing: 1.4px;
    line-height: 1.6;
  `;constStyledComponentUl=styled.ul`//疑似クラス
    li { //
      color: orange;
    }
    li:nth-child(2):hover { //StyledComponentUl > li のhover時
      color: green;
    }
  `;constSubmitButton=styled(Button)`
    display: flex;
    justify-content: center;
    width: 100px;
    height: auto;
    background-color: #0066ff;
    color: white;
    :hover {
      color: black;
    }
  `;constSubmitButtonWrapper=styled(Grid)`
    display: flex;
    justify-content: center;
  `;

実行結果
スクリーンショット 2020-08-27 23.50.21.png

useStyles

特徴

  • 各コンポーネントごとに必要なcssを記載し適応させる
  • cssをコンポーネント毎に書くため、styledcomponents同様1ページのコード量は増えてしまう
  • コードの書き方はcssとは違い、CamelCaseでプロパティー名を書き、valueには''で囲わなければいけない
  • materialUIのexampleで使われている

メリット

  • 1ファイルでコードとcssが完結する。
  • materialUIのexampleに使用されているためコピペで大体使える
  • 予測変換機能がついている

デメリット

  • 1ファイルで完結することの裏返しで、cssとコードが1ファイルに書かれるためコードが長くなってしまう
  • JSSなので開発のdevtoolでstyleを確認してコピーして貼ることができない。(CamelCaseとsnake-caseの違い、valueが""で囲ってないと反応しない、ちょっとの差だけどだるい)
  • intelliJで指定しているclassNameに直接飛べない(classesに飛ぶ)
useStyles.tsx
import{Button,Grid,Paper,Typography}from"@material-ui/core";import{makeStyles}from"@material-ui/core/styles";importReactfrom"react";constuseStyles=makeStyles({useStylesModal:{width:"800px",height:"700px",position:"absolute",top:"300px"},modalContentWrapper:{display:"flex",flexDirection:"column",padding:"20px"},useStyleBody:{letterSpacing:"1.4px",lineHeight:"1.6"},row:{display:"flex",flexDirection:"row",justifyContent:"space-between"},useStylesRowTextField:{width:"49%"},fullTextField:{width:"100%"}constSubmitButton=styled(Button)`
    width: 100px;
    height: auto;
    background-color: #0066ff;
    color: white;
    : hover {
      color: black;
    }
  `;constSubmitButtonWrapper=styled(Grid)`
    display: flex;
    justify-content: center;
  `;});constUseStylesModal:React.FC<Props>=()=>{return(<PaperclassName={classes.useStylesModal}style={{display:useStylesModalOpen?"block":"none"}}><GridclassName={classes.modalContentWrapper}><Typographyvariant={"h4"}>UseStylesTestForm</Typography>
<Typographyvariant={"body1"}className={classes.useStyleBody}>hogehoge</Typography>
</Grid>
<GridclassName={classes.useStylesButtonWrapper}><ButtonclassName={classes.useStylesButton}>SUBMIT</Button>
</Grid>
</Paper>
);}exportdefaultUseStylesModal;

スクリーンショット 2020-08-28 1.30.14.png
ちょっとulないの子要素にたいしてスタイル適応できませんでした。消しました。すみません。

stylesProvider

特徴

  • 上で挙げた2つの方法とは違い、cssfileを別に用意して呼び出して使用する
  • app.tsxで<stylesProvider>で囲ってあげる必要がある
  • cssのコードを使いまわせることができる
  • ページ毎に一つのcssfileを作成すればページ内の同じスタイルがあるとすれば適用させてあげることができる

メリット

  • 予測変換がある
  • cssファイルを別で書くため1ファイルのコードの少なくスッキリする
  • cssの使い回しができる
  • 疑似クラス、mediaqueryの当て方がベーシックに書ける

デメリット

  • stylesProviderのトピックの記事が少ない
  • 1ファイルで完結しない(ページごとに)
app.tsx
import{StylesProvider}from"@material-ui/styles";importReactfrom"react";constApp=()=>{return(<StylesProviderinjectFirst><TopList/>;</StylesProvider>
);};exportdefaultApp;
stylesProvider.tsx
import{Button,Grid,Paper,Typography}from"@material-ui/core";import{StylesProvider}from"@material-ui/core/styles";importReact,{useState}from"react";import"./style.css";typeProps={};constStylesProviderModal:React.FC<Props>=()=>{return(<Paperstyle={{display:styledProviderModalOpen?"block":"none"}}className={"stylesProvider"}><GridclassName={"modalContentWrapper"}><Typographyvariant={"h4"}>StyledProviderModal</Typography>
<Typographyvariant={"body1"}className={"styledProviderBody"}>hogehoge</Typography>
<ulclassName={"stylesProviderUl"}><li>1li</li>
<li>2li</li>
<li>3li</li>
</ul>
</Grid>
</Paper>
);};
styles.css
.stylesProvider{width:800px;height:700px;position:absolute;top:300px;}.modalContentWrapper{display:flex;flex-direction:column;padding:20px;}.styledProviderBody{letter-spacing:1.4px;line-height:1.6;}.fullTextField{width:100%;}.row{display:flex;flex-direction:row;}.useStylesRowTextField{width:49%;}.stylesProviderUl>li:nth-child(2){color:red;}.stylesProviderUl>li:hover{color:green;}body{background:aliceblue;}

スクリーンショット 2020-08-28 3.49.19.png

個人的な感想

stylesProviderは実践で使用したことがないが、他2つの長所を合わせたようなものであった気がするし、
cssの再利用を考えた時に他の2つと比べて、秀でているところかなと思う。
まるっきりcssな為、cssの記法についてはいくらでもネットに転がっているので困ることがない。
mediaquery,疑似クラスで困ることもない!
めちゃめちゃ推したい。
ただ懸念点としては、英文、日本語共に記事がびっくりするほどなかった。

今後、stylesProviderを導入してみて、どれを使用していくか話し合いますがstylesProviderにならないかなあ。

デメリットなど知っている方がいましたら、意見が欲しいです!よろしくお願いします。


Viewing all articles
Browse latest Browse all 8652

Trending Articles



<script src="https://jsc.adskeeper.com/r/s/rssing.com.1596347.js" async> </script>