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

Remixの凄みを紹介したい

 Remixの凄みを紹介したい

AijiUejima

May 26, 2022
Tweet

More Decks by AijiUejima

Other Decks in Technology

Transcript

  1. Who am I ? Uejima Aiji | Twitter: @aiji42_dev 🏢

    株式会社エイチームライフデザイン 🧘 リードエンジニア 🥑 最近の活動 CloudflareでISRを実現したり CSRなサイトをPrerenderでSSRぽくしたり PrismaからSupabase APIを叩くミドルウェア作っ たり 社内でフロントエンド版ISSUCON開催したり
  2. loader とaction Next.js の getServerSideProps や API Routes のようなもの loader

    action ページコンポネントと同一ファイルに定義可能 GETアクセス時のデータフェッチを定義 ページ(コンポネント)からはuseLoaderDataで取得し、 useFetcherで再フェッチ可能 POSTやDELETEなどのミューテーションを定義する useSubmit やuseFormAction、form要素からリクエストする // app/routes/posts/$slug.tsx export const loader = async ({ params }) => { const post = await db.post.findUnique({ where: params.slug }) return { post } } export const action = async ({ request, params }) => { if (request.method === 'POST') { await db.post.create({ ... }) } if (request.method === 'DELETE') { await db.post.delete({ ... }) } if (request.method === 'PATCH') { await db.post.update({ ... }) } } const Page: FC = () => { const { post } = useLoaderData() return ... } export default Page
  3. ディレクトリ構成やファイル名がそのままURLになるという点 は、Next.jsのpagesとよく似ている app/ ├── routes/ │ ├── blog/ │ │

    ├── $postId.tsx │ │ ├── categories.tsx │ │ ├── index.tsx │ └── about.tsx │ └── blog.tsx │ └── index.tsx └── root.tsx
  4. URL Matched Route / app/routes/index.tsx /about app/routes/about.tsx │ └── about.tsx

    │ └── index.tsx app/ ├── routes/ │ ├── blog/ │ │ ├── $postId.tsx │ │ ├── categories.tsx │ │ ├── index.tsx │ └── blog.tsx └── root.tsx
  5. ディレクトリの入れ子はそのままURLに変換される $(ドルマーク)をつけると、 パラメータとしてloader/actionで扱える URL Matched Route /blog app/routes/blog/index.tsx /blog/categories app/routes/blog/categories.tsx

    /blog/my-post app/routes/blog/$postId.tsx │ │ ├── $postId.tsx │ │ ├── categories.tsx │ │ ├── index.tsx app/ ├── routes/ │ ├── blog/ │ └── about.tsx │ └── blog.tsx │ └── index.tsx └── root.tsx
  6. root.tsxがトップレイヤレイアウト ディレクトリと同一名ファイルが子レイアウト URL Matched Route Layout / app/routes/index.tsx app/root.tsx /about

    app/routes/about.tsx app/root.tsx /blog app/routes/blog/index.tsx app/routes/blog.tsx /blog/categories app/routes/blog/categories.tsx app/routes/blog.tsx /blog/my-post app/routes/blog/$postId.tsx app/routes/blog.tsx │ ├── blog/ │ └── blog.tsx └── root.tsx app/ ├── routes/ │ │ ├── $postId.tsx │ │ ├── categories.tsx │ │ ├── index.tsx │ └── about.tsx │ └── index.tsx
  7. ダブルアンダースコアで始めると URL化されないレイアウトルートになる (pathless layout routes) ディレクトリ構造の代わりにドットでも表現可能 Catch all route (*)

    │ ├── __authed/ │ ├── __authed.tsx app/ ├── routes/ │ │ ├── dashboard.tsx │ │ └── $userId/ │ │ │ └── profile.tsx └── root.tsx │ ├── blog.$slug.tsx app/ ├── routes/ │ ├── blog.tsx └── root.tsx │ └── $.tsx app/ ├── routes/ │ ├── blog/ │ │ ├── $postId.tsx │ │ ├── categories.tsx │ │ ├── index.tsx └── root.tsx
  8. ドキュメントで紹介されている例 https://example.com/sales/invices/102000 こんな感じのダッシュボード app/ ├── routes/ │ ├── sales/ │

    │ ├── invoices/ │ │ │ └── $id.tsx │ │ ├── invoices.tsx │ └── sales.tsx └── root.tsx
  9. root.tsxがトップレイヤレイアウト Outletコンポネント部分がレンダリング時に 子レイアウト・子ページになる └── root.tsx app/ ├── routes/ │ ├──

    sales/ │ │ ├── invoices/ │ │ │ └── $id.tsx │ │ ├── invoices.tsx │ └── sales.tsx export default function Root() { return ( <Sidebar> <Outlet /> </Sidebar> ) }
  10. ディレクトリと同一名ファイルで子レイアウトを定義 │ ├── sales/ │ └── sales.tsx app/ ├── routes/

    │ │ ├── invoices/ │ │ │ └── $id.tsx │ │ ├── invoices.tsx └── root.tsx export default function Sales() { return ( <> <h1>Sles</h1> <Tabs /> <Outlet /> </> ) }
  11. layoutにもloaderを設置可能 │ │ ├── invoices/ │ │ ├── invoices.tsx app/

    ├── routes/ │ ├── sales/ │ │ │ └── $id.tsx │ └── sales.tsx └── root.tsx export const loader = async () => { const overview = await fetch(...).then((res) => res.json()) // ... return { overviewData, inviceListData } } export default function InvoiceList() { const { overviewData, inviceListData } = useLoaderData() return ( <> <Overview data={overviewData}> <InvoiceList items={inviceListData} > <Outlet /> </InvoiceList> </> ) }
  12. 各ページ・レイアウトにごとに ErrorBoundaryを定義可能 │ │ │ └── $id.tsx app/ ├── routes/

    │ ├── sales/ │ │ ├── invoices/ │ │ ├── invoices.tsx │ └── sales.tsx └── root.tsx export const loader = async ({ params }) => { const data = await db.invoice.findOne({ where: { id: params.id } }) return { data } } export default function Invoice() { const { data } = useLoaderData() return ( <InvoiceItem data={data} /> ) } export function ErrorBoundary({ error }) { return ( <ErrorMessage>{error.message}</ErrorMessage> ) }
  13. エラーの伝搬を留めることができる フォールバックが最小限になる │ │ │ └── $id.tsx app/ ├── routes/

    │ ├── sales/ │ │ ├── invoices/ │ │ ├── invoices.tsx │ └── sales.tsx └── root.tsx export const loader = async ({ params }) => { const data = await db.invoice.findOne({ where: { id: params.id } }) return { data } } export default function Invoice() { const { data } = useLoaderData() return ( <InvoiceItem data={data} /> ) } export function ErrorBoundary({ error }) { return ( <ErrorMessage>{error.message}</ErrorMessage> ) }
  14. Remix の特徴 ③ マルチランタイム Node / web worker / Deno

    Vercel / Netlify / Cloudflare Workers・Pages, etc もちろんセルフホスト可能
  15. React が向かう先 - Server component / Streaming render コンポネントのレンダリングをServerサイドで行うようになる 従来のSSRとはことなり、コンポネントの粒度で解決し、さらにストリームで返却する

    src: https://mxstbr.com/thoughts/streaming-ssr/ 各コンポネントでデータフェッチの処理を持ち、非同期的・自律的に解決する 同時接続数は爆発的に増加し、そしてラウンドトリップによるレイテンシが無視できなくなることが予想できる
  16. Remix の特徴 ④ Form とヘルパー 前述のactionと通信を行うための、Formコンポネントや多数のヘ ルパーを備えている 特に useTransition はフォームのsubmitの状態

    (idle / submitting / loading)を管理したり submit中のデータを取り扱うことが可能なので、楽観的UIの実装 も容易 0:00
  17. remix-validated-form https://www.remix-validated-form.io/ remix-validated-formとzodを使用するとactionとコン ポネントを一体化できる クライアントとサーバとでバリデーションを共通化でき るだけでなく エラーメッセージの返却・レンダリング、例外処理の実 装から開放される 別のデータソースと通信して別途バリデーションするな ど、サーバサイドオンリーなバリデーションもかんたん

    に追加可能 import { ValidatedForm } from "remix-validated-form"; import { withZod } from "@remix-validated-form/with-zod"; export const validator = withZod( // your zod role ); export const action = async ({ request }) => { const result = await validator.validate(await request.formData()); if (result.error) return validationError(result.error); const { firstName, lastName, email } = result.data; // Do something with the data }; export default function MyPage() { return ( <ValidatedForm validator={validator} method="post"> <FormInput name="firstName" label="First Name" /> <FormInput name="lastName" label="Last Name" /> <FormInput name="email" label="Email" /> <SubmitButton /> </ValidatedForm> ); }
  18. remix-auth https://github.com/sergiodxa/remix-auth (サンプルコードはremix-auth-supabase) 認証方法・認可ルール・フォールバックルールなどを簡単に設 定・制御できる クライアント側には一切ロジックが露出しない export const loader =

    async ({ request }) => supabaseStrategy.checkSession(request, { successRedirect: '/private' }); export const action = async ({ request }) => authenticator.authenticate('sb', request, { successRedirect: '/private', failureRedirect: '/login' }); export default function LoginPage() { return ( <Form method="post"> <input type="email" name="email" /> <input type="password" name="password" /> <button>Sign In</button> </Form> ); }
  19. React Router で構築されたSPAサイトをSSRに移行したい、SEO対策したい React Routeの思想をベースに構築されているため、大きく構造を変えずに移行できる 複数ページに渡るエントリーフォームを簡単に実装したい 前述の通り、remix-validated-formとzodで簡単に作れる ステートライブラリも不要 MVCなWebフレームワーク(Rails)使ってた人は比較的とっつきやすい(と個人的には思う) 管理画面やダッシュボードをフルスクラッチしたい

    React Adminの導入を試みたが、データスキーム・ビジネスロジックに適したアダプターがなかったなど Nested Routes と remix-validated-form, remix-auth を駆使する loader/actionを各フォームやデータフィードと1対1で配置し、UIとデータロジックをそれぞれで凝縮 テスタビリティの向上にもつながる
  20. next-runtime https://next-runtime.meijer.ws/getting-started/1- introduction getServerSidePropsを拡張し、リクエストメソッドごとに 実装を書き分けることができる フォームのアクションをapi routesにせず、自パスに向けれ ば、擬似的なloader/actionになる 楽観的UIのためのヘルパーやCookieを取り扱うヘルパーな どが用意されており、かなりRemixに似ている

    というか、Remixをインスパイアされて実装したと作者がドキュメントで 明言している import { handle, json, Form, useFormSubmit } from 'next-runtime'; export const getServerSideProps = handle({ async get() { return json({ name: 'smeijer' }); }, async post({ req: { body } }) { await db.comments.insert(body); return json({ message: 'thanks for your comment!' }); }, }); export default function MyPage({ name, message }) { const { isSubmitting } = useFormSubmit(); if (message) return <p>{message}</p>; return ( <Form method="post"> <input name="name" defaultValue={name} /> <input name="message" /> <button type="submit" disabled={pending}> {isSubmitting ? 'submitting' : 'submit'} </button> </Form> ); }