The project structure is as close to JHipster's React client as possible.
index.js
is the entrypoint of the app. It bootstraps React Native Navigation and sends the user to the launch screen.
Your app
folder is where most of the files are found in an Ignite JHipster.
Let's walk through them in more detail. Start with the config
folder and work your way down the walkthrough in order.
Initialize and configure things in this folder.
app-config.js
- configuration for your React Native app, contains the JHipster API url and app URL schemedebug-config.js
- define how you want your debug environment to actreactotron-config.js
- configures Reactotron in your project.redux-persist.js
- configures Redux Persist
Contains files for handling registration, password management, and user settings.
chat-screen.js
- shows live chat messages from other userschat-reducer.js
- chat state management
entities-screen.js
- lists the generated entities and a link to their screen
launch-screen.js
- this is the first screen shown in your application
login-screen.js
- the login screen, contains a login and password inputlogin-reducer.js
- login state managementlogin-sagas.js
- login logic for getting the response from the JHipster backend
Your primary and other navigation components reside here.
layouts.js
- contains the layout configuration of the app, registers all scenes to the Navigation library, and contains convenience methods for navigating to a specific screen
drawer-content.js
- contains the content of the Drawer component that opens from the left side of the screendrawer-button.js
- button used in the drawer-content container
Contains shared components such as alert-message
, full-button
, rounded-button
, and search-bar
.
Contains json files that mimic API responses for quicker development. These are used by the app/shared/services/fixture-api.js
object to mock API responses.
Contains actual images (usually png) used in your application. The images are loaded in app/shared/themes/images.js
Contains shared reducers such as account
, app-state
, and user
Contains shared sagas, similar to the shared reducers
Contains your API service and other important utilities for your application.
api.js
- main API service, giving you an interface to communicate with your back endfixture-api.js
- mocks your API service, making it faster to develop early on in your apprehydration.service.js
- part of the redux-persist implementation
Styling themes used throughout your app styles.
application.styles.js
- app-wide stylescolors.js
- defined colors for your appfonts.js
- defined fonts for your appimages.js
- loads and caches images used in your appmetrics.js
- useful measurements of things like searchBarHeight
Contains Detox E2E tests. These tests run on a device or emulator and follow steps described in the test files. They are very similar to Protractor or Selenium tests.
Contains sample Jest snapshot and unit tests for your application.
Storybook has been setup to show off components in the different states. Storybook is a great way to develop and test components outside of use in your app. View the Storybook when running on an emulator or local device via the "Storybook" option in the Side Menu. All stores are contained in the *.story.js
files along side the components.