Slide 57
Slide 57 text
Custom Invocation の使いどころ
• JavaScript から Server Actions をトリガーしたい、
あるいは Server Actions 前後に必ず何らかの処理を⾏いたいケース
• Progressive Enhancement は機能しない
• サイボウズ Of
fi
ce では、エラーハンドリングの兼ね合いで
Custom Invocation での導⼊から始めた
React 'use server' のドキュメントで記載のある利⽤例としては
ローディング表⽰ / OptimisticUpdate / 予期しないエラーのハンドリング など
🔗 https://react.dev/reference/react/use-server#calling-a-server-action-outside-of-form
> When using a Server Action outside of a form, call the Server Action in a transition,
> which allows you to display a loading indicator,
> show optimistic state updates, and handle unexpected errors.
ちなみに...