The FxA Admin Panel is an internal resource for FxA Admins to access a set of convenience tools.
Outside of local development, this application is protected by SSO, a VPN connection, and "guest list" login wall to ensure those without administrator privileges cannot access the service.
yarn start|stop|restart
to start, stop, and restart the server as a PM2 processyarn build
to create a production buildyarn test
to run unit testsyarn storybook
to run Storybook
This service will automatically spin up when yarn start
is ran from the root directory. A small Express server serves a React application and exposes the server config file for the client to consume via a meta tag.
The React dev server runs at localhost:8092 which can be useful when building components if you'd like an auto page refresh on file changes, however, the Express server that serves the React application and proxies its static resources runs at localhost:8091. Develop on :8091
if you need access to anything set in the server configuration file, including the URI for connecting to the fxa-admin-server
.
API calls are done through Apollo Client with GraphQL to communicate with the fxa-admin-server
. See its documentation to connect to the playground, a place to view the API docs and schema, and to write and test queries and mutations before using them in a component.
You can import React components from other packages into this project. This is currently restricted to fxa-react
:
// e.g. assuming the component HelloWorld exists
import HelloWorld from 'fxa-react/components/HelloWorld';
See the fxa-react
section of the fxa-settings
docs for more info on sharing or moving components into this package.
This package uses Jest to test both the frontend and server. By default yarn test
will run all test scripts:
yarn test:frontend
will test the React App frontend undersrc/
yarn test:server
will test the Express server underserver/
Test specific tests with the following commands:
# Test frontend tests for the component AccountSearch
yarn test:frontend AccountSearch
# Grep frontend tests for "displays the error"
yarn test:frontend -t "displays the error"
# Test server tests for the file server/lib/csp
yarn test:server server/lib/csp
# Grep server tests for "simple server routes"
yarn test:server -t "simple server routes"
Refer to Jest's CLI documentation for more advanced test configuration.
This project uses Storybook to show each screen without requiring a full stack.
In local development, yarn storybook
will start a Storybook server at http://localhost:6009 with hot module replacement to reflect live changes. Storybook provides a way to document and visually show various component states and application routes. Storybook builds from pull requests and commits can be found at https://mozilla-fxa.github.io/storybooks/.
MPL-2.0