fleet/frontend
noahtalerman 0255638f0b
Add persistence to saved columns in "Hosts" table after user logs out (#1131)
- Add `removeItem` method so that we only remove the `auth_token`, and not the saved columns, from `localStorage` when the user logs out
2021-06-18 10:32:51 -04:00
..
__mocks__ add prettier and have it format all fleet application code (#625) 2021-04-12 14:32:25 +01:00
app_constants add new permission routes and messaging (#915) 2021-06-04 14:00:14 +01:00
components AuthenticatedRoutes conditionally reroutes api_only user (#1123) 2021-06-18 10:08:50 -04:00
fleet Agent options added to organization settings (#1120) 2021-06-17 13:47:15 -07:00
interfaces Agent options added to organization settings (#1120) 2021-06-17 13:47:15 -07:00
layouts/CoreLayout Bring new style variables from teams into master (#707) 2021-04-30 17:32:50 -04:00
pages AuthenticatedRoutes conditionally reroutes api_only user (#1123) 2021-06-18 10:08:50 -04:00
redux Add persistence to saved columns in "Hosts" table after user logs out (#1131) 2021-06-18 10:32:51 -04:00
router 403 Page for API Only User (#1102) 2021-06-17 11:11:28 -04:00
styles Rename frontend icon component (#982) 2021-06-06 18:56:30 -07:00
templates Add robots noindex to frontend HTML head (#892) 2021-05-28 11:41:24 -07:00
test Host Details Page: Remove enroll secret (#1124) 2021-06-17 16:28:59 -04:00
typings Merge master into teams 2021-04-14 17:52:15 +01:00
utilities Add persistence to saved columns in "Hosts" table after user logs out (#1131) 2021-06-18 10:32:51 -04:00
index.jsx add prettier and have it format all fleet application code (#625) 2021-04-12 14:32:25 +01:00
index.scss add prettier and have it format all fleet application code (#625) 2021-04-12 14:32:25 +01:00
osquery_tables.json add prettier and have it format all fleet application code (#625) 2021-04-12 14:32:25 +01:00
public-path.js add prettier and have it format all fleet application code (#625) 2021-04-12 14:32:25 +01:00
README.md Rename main frontend directory (#977) 2021-06-06 17:30:54 -07:00

Fleet Front-End

The Fleet front-end is a Single Page Application using React and Redux.

Running the Fleet web app

For details instruction on building and serving the Fleet web application consult the Contribution documentation

Directory Structure

Component directories in the Fleet front-end application encapsulate the entire component, including files for the component, helper functions, styles, and tests. The typical directory structure for a component is as follows:

|-- ComponentName
|  |-- _styles.scss
|  |-- ComponentName.jsx
|  |-- ComponentName.tests.jsx
|  |-- helpers.js
|  |-- helpers.tests.js
|  |-- index.js
  • _styles.scss: The component css styles
  • ComponentName.jsx: The React component
  • ComponentName.tests.jsx: The React component tests
  • helpers.js: Helper functions used by the component
  • helpers.tests.js: Tests for the component's helper functions
  • index.js: Exports the React component
    • This file is helpful as it allows other components to import the component by it's directory name. Without this file the component name would have to be duplicated during imports (components/ComponentName vs. components/ComponentName/ComponentName).

app_constants

The app_constants directory exports the constants used in the app. Examples include the app's URL paths, settings, and http statuses. When building features that require constants, the constants should be added here for accessibility throughout the application.

components

The component directory contains the React components rendered by pages. They are typically not connected to the redux state but receive props from their parent components to render data and handle user interactions.

interfaces

Files in the interfaces directory are used to specify the PropTypes for a reusable Fleet entity. This is designed to DRY up the code and increase re-usability. These interfaces are imported into component files and implemented when defining the component's PropTypes.

fleet

The default export of the fleet directory is the API client. More info can be found at the API client documentation page.

layouts

The Fleet application has only 1 layout, the Core Layout. The Layout is rendered from the router and are used to set up the general app UI (header, sidebar) and render child components. The child components rendered by the layout are typically page components.

pages

Page components are React components typically rendered from the router. These components are connected to redux state and are used to gather data from redux and pass that data to child components (located in the components directory. As connected components, Pages are also used to dispatch actions. Actions dispatched from Pages are intended to update redux state and oftentimes include making a call to the Fleet API.

redux

The redux directory holds all of the application's redux middleware, actions, and reducers. The redux directory also creates the store which is used in the router. More information about the redux configuration can be found at the Redux Documentation page

router

The router directory is where the react router lives. The router decides which component will render at a given URL. Components rendered from the router are typically located in the pages directory. The router directory also holds a paths file which holds the application paths as string constants for reference throughout the app. These paths are typically referenced from the App Constants object.

styles

The styles directory contains the general app style setup and variables. It includes variables for the app color hex codes, fonts (families, weights and sizes), and padding.

templates

The templates directory contains the HTML file that renders the React application via including the bundle.js and bundle.css files. The HTML page also includes the HTML element in which the React application is mounted.

test

The test directory includes test helpers, API request mocks, and stubbed data entities for use in test files. More on test helpers, stubs, and request mocks here.

utilities

The utilities directory contains re-usable functions for use throughout the application. The functions include helpers to convert an array of objects to CSV, debounce functions to prevent multiple form submissions, format API errors, etc.

Forms

For details on creating a Fleet form visit the Fleet Form Documentation.

API Client

For details on the Fleet API Client visit the Fleet API Client Documentation.