UNPKG

box-ui-elements-mlh

Version:
172 lines (122 loc) 7.2 kB
# Development Setup Our development setup assumes a LINUX/BSD environemnt. ## Project Setup 1. Install Node v10.0.0 or higher. 2. Install Yarn package manager `https://yarnpkg.com/en/docs/install` v1.10 or higher. 3. Fork the upstream repo `https://github.com/box/box-ui-elements` via github. 4. Clone your fork locally `git clone git@github.com:[YOUR GITHUB USERNAME]/box-ui-elements.git`. 5. Navigate to the cloned folder `cd box-ui-elements`. 6. Add the upstream repo to your remotes `git remote add upstream git@github.com:box/box-ui-elements.git`. 7. Verify your remotes are properly set up `git remote -v`. You should pull updates from the `upstream` box repo and push changes to your fork `origin`. ## Examples Page (aka the Style Guide) A published version of the style guide can be seen at https://opensource.box.com/box-ui-elements/. The style guide uses **_live_** demo data within the UI Elements. Due to security restrictions this data is read-only. You can run a local version of the style guide as follows: 1. Start the style guide server via `yarn start` (or via `yarn start:examples:legacy`, to include support for IE 11). 2. Navigate to `http://localhost:6060/` to see the UI Elements in action. If testing on a different machine or VM, you can instead use the IP address shown on your terminal window. **_NOTE:_** _This note applies to testing top level UI Elements only and not the lower level components. If you want to use your own live data for the style guide, then start the style guide server using [your own developer auth token](https://developer.box.com/docs/authenticate-with-developer-token) and a file or folder ID via_ - `TOKEN=<YOUR_TOKEN> FILEID=<YOUR_FILE_ID> yarn start` or - `TOKEN=<YOUR_TOKEN> FOLDERID=<YOUR_FOLDER_ID> yarn start` ## Testing UI Elements in a Parent Project ### Webpack Setup `box-ui-elements` must use the same `react` and `react-dom` instances as the parent application for React hooks to work properly. Application repositories must add the following webpack `resolve` alias configuration to satify this requirement: ```js // webpack.config.js { ... resolve: { alias: { 'react': path.resolve('node_modules/react'), 'react-dom': path.resolve('node_modules/react-dom'), } } ... } ``` This will ensure that `box-ui-elements` does not use it's own `react` and `react-dom` modules when linked. Improper setup is the primary reason for "**Invalid Hook**" errors due to React version mismatch. We also recommend using `yarn resolutions` to fix the version of `react` and `react-dom` in your application: ```js // package.json { ... "resolutions": { "react": "16.9.0", "react-dom": "16.9.0" }, ... } ``` ### Linking `box-ui-elements` To test the Box UI Elements with your own project use local Yarn linking. 1. In the UI Elements project run `yarn link` as a one time setup. 2. In UI Elements project run `yarn start:npm` which starts a local npm build in watch mode. 3. In your parent project run `yarn link box-ui-elements` every time you plan to use the local linked version. 4. Run your parent project's build. ## Common Script Commands - `yarn start` to launch a local style guide examples server. Uses demo live data for Elements. - `yarn start:examples:legacy` same as above, but with IE 11 support. - `yarn start:npm` to symlink Elements via `yarn link` to a parent project. - `yarn start:dev` to launch a local webpack dev server. Uses your own data for Elements. - `yarn lint` to lint js and css. - `yarn lint:js --fix` to lint js and fix issues. - `yarn lint:css --fix` to lint styles and fix issues. - `yarn test` to launch tests with jest. - `yarn test --watch` to launch tests with jest in watch mode. - `yarn test --coverage` to launch tests with jest with coverage. - `yarn release` to run a release. For more script commands see `package.json`. Test coverage reports are available under reports/coverage. ## Best Practices ### `import * as React from 'react'` You should always use this syntax over `import React, { ... } from 'react'` because it automatically includes flow types. Consequently, you must use the `React` prefix for related functions and components. - ~~`Component`~~ => `React.Component` - ~~`useState`~~ => `React.useState` For more information, please see https://flow.org/en/docs/react/components/#toc-class-components ## Useful Plugins Install the following plugins in your preferred editor - Editor Config (standardizes basic editor configuration) - ESLint (Javascript linting) - Stylelint (CSS linting) - Prettier (Javscript formatting) - Sass (Stylesheets) - Babel (Transpiler) ## Testing Embedded UI Elements With Your Data Under most circumstances you should be using the style guide as mentioned earlier. This section is primarily for testing the Box UI Elements embedded in a custom HTML page with your own box data and auth token. For this, launch a local webpack dev server via `yarn start:dev` and navigate to `http://localhost:8080/`. HTML test files for local development are located inside the [test folder](http://localhost:8080/test). 1. Open a test file, such as http://localhost:8080/test/sidebar.html 2. When prompted, enter a file id and developer token. 1. Developer tokens can be created at https://app.box.com/developers/console. 2. Select `Custom App` and choose `Oauth 2.0 with JWT (Server Authentication)`. 3. Select `View Your App` > `Configuration` > `CORS Domains` and add `http://localhost:8080` to the domain whitelist. Save the configuration. 4. The developer token will be regenerated once the configuration is saved. Copy the token and paste into the prompt in the localhost test page. The token will be valid for an hour; return to the app configuration page to generate a new token. 5. For additional information about developing on the Box Platform, see the [Platform docs](https://developer.box.com/docs/box-ui-elements#section-using-the-box-ui-elements). ## Unit Testing ### `jest` and `enzyme` The project uses the `jest` testing framework and `enzyme` for component testing. Please refer to the relevant documentation pages for tutorials and troubleshooting: - Jest: https://jestjs.io - Enzyme: https://airbnb.io/enzyme/ ### Testing Hooks with `enzyme` Most hooks can be tested with `shallow` rendering except for lifecycle hooks such as `useEffect` and `useLayoutEffect`. To test a `useEffect` hook, you must use `act()` from `react-dom/test-utils` and `mount()` from `enzyme`. ```jsx import { act } from 'react-dom/test-utils'; test('something happens', () => { let wrapper; // Perform initial render act(() => { wrapper = mount(<SomeComponent foo="bar">Content</SomeComponent>); }); // Assert expect(wrapper...); // Perform re-render act(() => { // Update props to exercise lifecycle methods wrapper.setProps({ foo: 'baz' }); }); // Update wrapper - This must be after act() wrapper.update(); // Assert expect(wrapper...); } ``` See [React Testing Recipes](https://reactjs.org/docs/testing-recipes.html) for more examples.