38c56a8a98 | ||
---|---|---|
.circleci | ||
.github | ||
public | ||
scripts | ||
src | ||
stories/setup | ||
.dockerignore | ||
.env | ||
.env.common-local | ||
.env.dev | ||
.env.olympia | ||
.env.stage | ||
.eslintrc | ||
.gitignore | ||
.node-dev.json | ||
.prettierignore | ||
.prettierrc | ||
.yarnrc | ||
Dockerfile | ||
LICENSE.txt | ||
README.md | ||
codecov.yml | ||
package.json | ||
tsconfig.json | ||
version.json | ||
yarn.lock |
README.md
addons-code-manager
This is a web application to manage add-on source code, such as reviewing code for add-ons submitted to https://addons.mozilla.org. This project was bootstrapped with Create React App.
Requirements
- You need Node 16 which is the current LTS (long term support) release.
- You need yarn to manage dependencies and run commands.
Getting started
- Clone this repository
- Type
yarn
to install everything - Type
yarn dev
to launch the test suite, development servers, and all other development processes in stmux. Open http://localhost:3000 to view the development site. Press CTRL-a-? for help.
All available commands are documented below.
Read our contributing guidelines to get started on your first patch.
Prettier
We use Prettier to automatically format our JavaScript code and stop all the on-going debates over styles. As a developer, you have to run it (with yarn prettier-dev
) before submitting a Pull Request.
TypeScript
All code is written in TypeScript. Currently, errors in test files won't be reported until you try to submit a pull request. Because of this, consider configuring your editor for error reporting.
CSS
All styles are written in the SASS pre-processor language as css modules.
Example: for a component like StarIcon/index.tsx
, you'd create its module as StarIcon/styles.module.scss
. You would import it at the top and reference it as a module. As an example, here is a simple stylesheet:
.container {
padding: 12px;
}
You would reference this CSS class in your component like this:
import * as React from 'react';
import styles from './styles.module.scss';
const StarIcon = () => {
return <div className={styles.container} />;
};
export default StarIcon;
Storybook
We use storybook to visualize the look and feel of our React components. Our Storybook is deployed on GitHub Pages: https://mozilla.github.io/addons-code-manager/.
Launch the development server like this:
yarn storybook
When developing a new component, always add a story for it. If you were creating a component like src/components/StarIcon/index.tsx
then you'd put its story in stories/StarIcon.stories.tsx
. The storybook server will automatically load files having the .stories.tsx
suffix in this directory.
To update our Storybook, checkout gh-pages
branch, run yarn storybook-build
, commit and push the result to that branch.
Configuration
You can configure the app by defining environment variables in .env
files, the standard way to configure Create React App, but read on below because there are some differences.
- How to override an environment variable for local development
- Define it in
.env.common-local
. This differs from how Create React App wants you to do it. If you put an environment variable in.env.local
, it will get erased because we are generating this file when the app starts.
- Define it in
- How to define a new environment variable
- Add it to
.env
with theREACT_APP_
prefix.
- Add it to
- How to override an environment variable for a hosted site
- Define the variable in the corresponding puppet config file. To define a variable for
code.addons-dev.allizom.org
, for example, you'd updateamo.code_manager.dev.yaml
. Adding a variable to.env.dev
will do nothing since that only affects theyarn dev
command.
- Define the variable in the corresponding puppet config file. To define a variable for
Profiling performance
Here are some tips for solving performance problems in addition to what's already in the official docs.
- First, ask yourself if there is a real performance problem. If you need to simulate a slow CPU in the profiler just to see anything dramatic, it might be too early to start profiling!
- Try to profile against a production build, if possible, with something like
yarn start-local-dev
. The overhead of a development build could be misleading. - If you want to see execution timing grouped by React component, you will need a development build.
- Use Chrome so you can get React integration, if needed. This is a helpful guide for looking at the execution of React components in the User Timing section.
- When a React component is taking a long time to render and you don't see any other components underneath it, it's time to switch away from the User Timing tab of the profiler to the Main tab so you can look at actual function executions. Clicking on a function will give you information about its source.
- You can try using the React devtool extension for profiling but it doesn't provide a great timeline so it's hard to visualize overall slowness.
Setting up VSCode
If you want to use VSCode to develop Code Manager, some manual configuration is required. This is due to a security feature bug that prevents automatically applying a local config file.
- Make sure you've installed all dependencies as documented.
- Open the root folder in VSCode.
- Open any TypeScript file and click the TypeScript version number from the bottom status bar. Choose the option Use Workspace Version to make sure you are developing with the correct version of TypeScript.
All Available Commands
In the project directory, you can run the following commands. There are a few commands not mentioned here (see package.json
) but those are only used by internal processes.
yarn build
This builds the app for production to the build
folder.
It correctly bundles React in production mode and optimizes the build for the best performance. The build is minified and the filenames include the hashes. Your app is ready to be deployed!
Note: for this project, we use a node server (see scripts/server.js
).
yarn dev
This runs all development processes in a single column using stmux. Open http://localhost:3000 to view the development site. Press CTRL-a-? for help.
yarn dev-2col
This runs all development processes in two columns using stmux. Open http://localhost:3000 to view the development site. Press CTRL-a-? for help.
yarn dev-servers
This starts all development servers using stmux, connected to the -dev AMO API.
Open http://localhost:3000 to view it in the browser. Press CTRL-a-? for help.
yarn eject
This runs the eject command. Hopefully we won't ever need this 😭
yarn eslint
This runs ESLint to discover problems within our codebase without executing it. ESLint also enforces some patterns and practices.
yarn lint
This runs all the lint commands at once.
yarn olympia
A prerequisite to run this command is to install addons-server locally.
This runs all development processes in a single column using stmux. Open http://olympia.test:5000 to view the development site. Press CTRL-a-? for help. The application is configured to use a local AMO API.
Known issue: it is possible to login/logout but the login process will redirect you to the AMO frontend (http://olympia.test) instead of http://olympia.test:5000. You will have to manually go to code-manager, after that there should be no other authentication problem.
yarn prettier
This runs Prettier to automatically format the entire codebase.
yarn prettier-dev
This runs Prettier on only your changed files. This is intended for development.
yarn stage
This runs all development processes in a single column using stmux. Open http://localhost:3000 to view the development site. Press CTRL-a-? for help. The application is configured to use the stage AMO API.
yarn start-local-dev
This builds the app for production to the build
folder (see yarn build
command), configured with the -dev AMO API. It also starts a production server that serves the application (configured for local usage).
Open http://localhost:3000 to view it in the browser.
yarn start-local-prod
This builds the app for production to the build
folder (see yarn build
command), configured with the production AMO API. It also starts a production server that serves the application (configured for local usage).
Open http://localhost:3000 to view it in the browser.
⚠️ It is currently not possible to authenticate users.
yarn start-local-stage
This builds the app for production to the build
folder (see yarn build
command), configured with the stage AMO API. It also starts a production server that serves the application (configured for local usage).
Open http://localhost:3000 to view it in the browser.
yarn test
This launches Jest in the interactive watch mode.
See the section about running tests for more information.
yarn type-coverage
This will check how much of the codebase is protect by safe static types and fail if it's below the configured threshold.
yarn typecheck
This checks for TypeScript errors in all files, including test files.
You'd think that build
does this but it does not check test files. See create-react-app issue 5626.
Learn More
You can learn more in the Create React App documentation.
To learn React, check out the React documentation.