1
0
mirror of https://github.com/ansible/awx.git synced 2024-11-01 08:21:15 +03:00
Go to file
2019-01-23 16:53:02 -05:00
__mocks__ test fixup 2019-01-03 17:53:37 -05:00
__tests__ More cleanup based on pr feedback. Adds org notif list page and tests 2019-01-23 16:53:02 -05:00
build/locales update portal mode to my view and update translations 2019-01-07 15:23:31 -05:00
dist use a few more pf-core components 2018-09-26 21:39:04 -04:00
images Add help dropdown and about modal 2018-11-19 22:53:05 -05:00
src More cleanup based on pr feedback. Adds org notif list page and tests 2019-01-23 16:53:02 -05:00
.eslintrc add jest and enzyme testing dependencies and update infrastructure configuration to make testing work 2018-10-24 16:50:08 -04:00
.gitignore Moves locales out of src and into build dir. Changes npm commands from extract/compile to extract-strings/compile-strings 2018-12-12 11:28:29 -05:00
.linguirc Moves locales out of src and into build dir. Changes npm commands from extract/compile to extract-strings/compile-strings 2018-12-12 11:28:29 -05:00
babel.config.js Add support for i18n using lingui 2018-12-10 10:17:00 -05:00
CONTRIBUTING.md Add a contributing doc to our repo. 2018-12-18 10:30:48 -05:00
jest.config.js Add support for i18n using lingui 2018-12-10 10:17:00 -05:00
jest.setup.js remove setTimeout hack for testing api.login Login.jsx handlers 2018-10-31 12:04:59 -04:00
package-lock.json update webpack-dev-server 2019-01-04 15:12:57 -05:00
package.json update webpack-dev-server 2019-01-04 15:12:57 -05:00
README.md Update readme to fix display of unit test commands 2018-12-20 09:52:03 -05:00
webpack.config.js make default dev server target overridable with env vars 2019-01-03 17:52:46 -05:00

AWX-PF

Requirements

  • node 8.x LTS, npm 5.x LTS, make, git

Usage

  • git clone git@github.com:ansible/awx-pf.git
  • cd awx-pf
  • npm install
  • npm start
  • visit https://127.0.0.1:3001/

note: These instructions assume you have the awx development api server up and running at localhost:8043.

Unit Tests

To run the unit tests on files that you've changed:

  • npm test

To run a single test (in this case the login page test):

  • npm test -- __tests__/pages/Login.jsx

note: Once the test watcher is up and running you can hit a to run all the tests

Internationalization

Internationalization leans on the lingui project. Official documentation here. We use this libary to mark our strings for translation. For common React use cases see this link. If you want to see this in action you'll need to take the following steps:

  1. npm run add-locale to add the language that you want to translate to (we should only have to do this once and the commit to repo afaik). Example: npm run add-locale en es fr # Add English, Spanish and French locale
  2. npm run extract-strings to create .po files for each language specified. The .po files will be placed in src/locales but this is configurable.
  3. Open up the .po file for the language you want to test and add some translations. In production we would pass this .po file off to the translation team.
  4. Once you've edited your .po file (or we've gotten a .po file back from the translation team) run npm run compile-strings. This command takes the .po files and turns them into a minified JSON object and can be seen in the messages.js file in each locale directory. These files get loaded at the App root level (see: App.jsx).
  5. Change the language in your browser and reload the page. You should see your specified translations in place of English strings.