# quilt_rails A turn-key solution for integrating Quilt client-side libraries into your Rails app, with support for server-side-rendering using [`@shopify/react-server`](https://www.npmjs.com/package/@shopify/react-server), integration with [`@shopify/sewing-kit`](https://github.com/Shopify/sewing-kit) for building, testing and linting, and front-end performance tracking through [`@shopify/performance`](https://www.npmjs.com/package/@shopify/performance). ## Table of Contents - [Server-side-rendering](#server-side-rendering) - [Quick start](#quick-start) - [Generate Rails boilerplate](#generate-rails-boilerplate) - [Add Ruby dependencies](#add-ruby-dependencies) - [Generate app boilerplate](#generate-app-boilerplate) - [Try it out](#try-it-out) - [Manual Install](#manual-installation) - [Application Layout](#application-layout) - [Advanced Use](#advanced-use) - [Testing](#testing) - [Interacting with the request and response in React code](#interacting-with-the-request-and-response-in-react-code) - [Dealing with isomorphic state](#dealing-with-isomorphic-state) - [Customizing the Node server](#customizing-the-node-server) - [Fixing rejected CSRF tokens for new user sessions](#fixing-rejected-csrf-tokens-for-new-user-sessions) - [Performance tracking a React app](#performance-tracking-a-react-app) - [API](#api) ## Server-side-rendering 🗒 This guide is focused on internal Shopify developers with access to [`dev`](https://github.com/Shopify/dev) and [@shopify/sewing-kit](https://github.com/Shopify/sewing-kit). A similar setup can be achieved using the [manual installation](./docs/manual-installation) , and following the [react-server-webpack-plugin](../../packages/react-server-webpack-plugin/README.md) guide. Apps not running on Shopify infrastructure should [disable server-side GraphQL queries](./docs/FAQ.md) to avoid scalability issue. ### Quick start Using the magic of generators, we can spin up a basic app with a few console commands. #### Generate Rails boilerplate With access to [`dev`](https://github.com/Shopify/dev), you can use `dev init` to scaffold out a Rails application. When prompted, choose `rails`. This will generate a basic Rails application scaffold. Alternatively, you can use [`rails new .`](https://guides.rubyonrails.org/command_line.html#rails-new) to do the same. In either case, remove [`webpacker`](./docs/FAQ.md#i-run-into-webpacker-issue-while-setting-up-quilt_rails) before continuing. #### Add Ruby dependencies `bundle add sewing_kit quilt_rails` This will install our ruby dependencies and update the project's gemfile. #### Generate app boilerplate `rails generate quilt_rails:install` This will install Node dependencies, provide a basic React app (in TypeScript), and mount the Quilt engine in `config/routes.rb`. Basic linting and format configurations are also generated. #### Try it out ```sh dev up dev server ``` Will run the application, starting up both servers and compiling assets. ### Manual installation Follow [this guide](./docs/manual-installation) on how to do manual setup without the generator. ### Advanced use #### Testing For fast tests with consistent results, test front-end components using the tools provided by sewing-kit instead of Rails integration tests. Use [`sewing-kit test`](https://github.com/Shopify/sewing-kit/blob/master/docs/commands/test.md#L3) to run all `.test.{js|ts}x` files in the `app/ui` directory. [Jest](https://jestjs.io/) is used as a test runner, with customization available via [its sewing-kit plugin](https://github.com/Shopify/sewing-kit/blob/master/docs/plugins/jest.md). For testing React applications we provide and support [`@shopify/react-testing`](https://github.com/Shopify/quilt/tree/master/packages/react-testing). ##### Example Given a component `MyComponent.tsx` ```tsx // app/ui/components/MyComponent/MyComponent.tsx export function MyComponent({name}: {name: string}) { return
Hello, {name}!
; } ``` A test would be written using Jest and `@shopify/react-testing`'s `mount` feature. ```tsx // app/ui/components/MyComponent/tests/MyComponent.test.tsx import {MyComponent} from '../MyComponent'; describe('MyComponent', () => { it('greets the given named person', () => { const wrapper = mount(); // toContainReactText is a custom matcher provided by @shopify/react-testing/matchers expect(wrapper).toContainReactText('Hello, Kokusho'); }); }); ``` ##### Customizing the test environment Often you will want to hook up custom polyfills, global mocks, or other logic that needs to run either before the initialization of the test environment, or once for each test suite. By default, sewing-kit will look for such test setup files under `/app/ui/tests`. Check out the [documentation](https://github.com/Shopify/sewing-kit/blob/master/docs/plugins/jest.md#smart-defaults) for more details. ##### Interacting with the request and response in React code React-server sets up [@shopify/react-network](https://github.com/Shopify/quilt/blob/master/packages/react-network) automatically, so most interactions with the request or response can be done from inside the React app. ##### Example: getting headers ```tsx // app/ui/index.tsx import React from 'react'; import {useRequestHeader} from '@shopify/react-network'; function App() { // get `some-header` from the request that was sent through Rails const someHeaderICareAbout = useRequestHeader('some-header'); return ( <>

My application ❤️

{someHeaderICareAbout}
); } export default App; ``` ##### Example: sending custom headers from Rails controller In some cases you may want to send custom headers from Rails to your React server. Quilt facilitates this case by providing consumers with a `headers` argument on the `render_react` call. ```ruby class ReactController < ApplicationController include Quilt::ReactRenderable def index render_react(headers: {'x-custom-header': 'header-value-a'}) end end ``` Headers can be accessed during server-side-rendering with the `useRequestHeader` hook from `@shopify/react-network`. ```tsx // app/ui/index.tsx import React from 'react'; import {useRequestHeader} from '@shopify/react-network'; function App() { const header = useRequestHeader('x-custom-header'); return

Data: {header}

; } export default App; ``` ##### Example: sending custom data from Rails controller In some cases you may want to send basic data from Rails to your React server. Quilt facilitates this case by providing consumers with a `data` argument on the `render_react` call. **Note:** The data passed should be data that is unlikely or will never change over the course of the session before they render any React components. ```ruby class ReactController < ApplicationController include Quilt::ReactRenderable def index render_react(data: {'some_id': 123}) end end ``` If using the webpack plugin, this will be automatically passed into your application as the `data` prop. ```tsx // app/ui/index.tsx import React from 'react'; function App({data}: {data: Record}) { // Logs {"some_id":123} console.log(data); return

Data: {data}

; } export default App; ``` ##### Example: redirecting ```tsx // app/ui/index.tsx import React from 'react'; import {useRedirect} from '@shopify/react-network'; function App() { // redirect to google as soon as we render useRedirect('www.google.com'); return

My application ❤️

; } export default App; ``` #### Isomorphic state With SSR enabled React apps, state must be serialized on the server and deserialized on the client to keep it consistent. When using `@shopify/react-server`, the best tool for this job is [`@shopify/react-html`](https://github.com/Shopify/quilt/tree/master/packages/react-html)'s [`useSerialized`](https://github.com/Shopify/quilt/tree/master/packages/react-html#in-your-application-code) hook. `useSerialized` can be used to implement [universal-providers](https://github.com/Shopify/quilt/tree/master/packages/react-universal-provider#what-is-a-universal-provider-), allowing application code to manage what is persisted between the server and client without adding any custom code to client or server entrypoints. We offer some for common use cases such as [CSRF](https://github.com/Shopify/quilt/tree/master/packages/react-csrf-universal-provider), [GraphQL](https://github.com/Shopify/quilt/tree/master/packages/react-graphql-universal-provider), [I18n](https://github.com/Shopify/quilt/tree/master/packages/react-i18n-universal-provider), and the [Shopify App Bridge](https://github.com/Shopify/quilt/tree/master/packages/react-app-bridge-universal-provider). #### Customizing the Node server By default, sewing-kit bundles in [`@shopify/react-server-webpack-plugin`](../../packages/react-server-webpack-plugin/README.md) for `quilt_rails` applications to get apps up and running fast without needing to manually write any Node server code. If what it provides is not sufficient, a completely custom server can be defined by adding a `server.js` or `server.ts` file to the `app/ui` folder. The simplest way to customize the server is to export the object created by [`@shopify/react-server`](../../packages/react-server/README.md#node-usage)'s `createServer` call in `server.ts` file. ``` └── appeon └── ui └─- app.{js|ts}x └─- index.{js|ts} └─- server.{js|ts}x ``` #### Fixing rejected CSRF tokens for new user sessions When a React component sends HTTP requests back to a Rails endpoint (e.g., `/graphql`), Rails may throw a `Can't verify CSRF token authenticity` exception. This stems from the Rails CSRF tokens not persisting until after the first `UiController` call ends. If your API **does not** require session data, the easiest way to deal with this is to use `protect_from_forgery with: :null_session`. This will work for APIs that either have no authentication requirements, or use header based authentication. ##### Example ```rb class GraphqlController < ApplicationController protect_from_forgery with: :null_session def execute # Get GraphQL query, etc result = MySchema.execute(query, operation_name: operation_name, variables: variables, context: context) render(json: result) end end ``` If your API **does** require session data, you can follow these steps: - Add an `x-shopify-react-xhr` header to all GraphQL requests with a value of 1 (this is done automatically if you are using `@shopify/react-graphql-universal-provider`) - Add a `protect_from_forgery with: Quilt::HeaderCsrfStrategy` override to your controllers ##### Example ```rb class GraphqlController < ApplicationController protect_from_forgery with: Quilt::HeaderCsrfStrategy def execute # Get GraphQL query, etc result = MySchema.execute(query, operation_name: operation_name, variables: variables, context: context) render(json: result) end end ``` ## Performance tracking a React app To setup performance tracking with your React app with `quilt_rails`. Follow details guide [here](./docs/performance-tracking). ## API Find all features this gem offer in this [API doc](./docs/api). ## FAQ Find your [here](./docs/FAQ).