Upgrade to Pro — share decks privately, control downloads, hide ads and more …

EmotionでReactをstylingすればモテるかもしれない

 EmotionでReactをstylingすればモテるかもしれない

Emotion使うとモテるかもしれないという話。React LT会 @Informetis (2019-05-29) で発表。

Matsuo Obu

May 29, 2019
Tweet

More Decks by Matsuo Obu

Other Decks in Technology

Transcript

  1. 自己紹介 - CSS in JS のライブラリ - 高性能:パフォーマンスがいい - 多機能:色々な方法でstylingできる

    - 大人気:★ 8,000 over - とてもエモーショナルなロゴですね emotion-js / emotion
  2. Emotionのstyling いろいろ - css prop (Object styles) - css prop

    (String styles) - Styled Components (String styles) - Styled Components (Object styles)
  3. css prop (Object styles) const textStyle = { color: "red"

    }; const Page = () => ( <div css={textStyle}>Emotion でモテモテ</div> ); Inline stylesと同じ要領のstyling cssプロパティに指定する
  4. @emotion/coreのcss関数を使うと CSSと同じように書ける css prop (String styles) import { css }

    from "@emotion/core" ; const textStyle = css` color: blue; `; const Page = () => ( <div css={textStyle}>Emotion でモテモテ</div> );
  5. styleの共通化はこんな感じに書ける const baseStyleSt = css` color: black; `; const textStyleSt

    = css` ${baseStyleSt}; font-size: .8rem; color: blue; `; const baseStyleOb = { color: "black", }; const textStyleOb = { ...baseStyleOb, fontSize: ".8rem", color: "blue", }; String Styles Object Styles
  6. Styled Components (String styles) styled-componentsと同じ要領で書ける import styled from "@emotion/styled" ;

    const MoteText = styled.div` color: yellow; `; const Page = () => ( <MoteText>Emotionでモテモテ</MoteText> );
  7. Styled Components (Object styles) import styled from "@emotion/styled" ; const

    MoteText = styled.div({ color: "green", }); const Page = () => ( <MoteText>Emotionでモテモテ</MoteText> ); styled-componentsと同じ要領で書ける
  8. $ npm install --save @emotion/core 導入方法 (css props) /** @jsx

    jsx */ import { jsx, css } from "@emotion/core" ; @emotion/core パッケージをインストール 各ページファイルでプラグマを書いて Reactの代わりに jsx モジュールをimportする
  9. $ npm install --save @emotion/styled 導入方法 (Styled Components) import React

    from "react"; import styled from "@emotion/styled" ; @emotion/styled パッケージをインストール styledだけを使う場合は、プラグマは必要なし styled-components と同じ使用感