fleet/frontend
Zachary Wasserman ca84f84078
Add query editor support for control-return (#1979)
- Control-return in the editor will now run the query

Closes #1631
2019-01-15 11:06:52 -08:00
..
app_constants Fixed problem where changed port didn't trigger validation (#1451) 2017-03-29 22:29:08 -05:00
components Add query editor support for control-return (#1979) 2019-01-15 11:06:52 -08:00
interfaces Fix React deprecation warnings (#1976) 2019-01-06 17:25:33 -08:00
kolide Allow update of settings page without enabling SMTP (#1903) 2018-09-07 15:37:35 -07:00
layouts/CoreLayout Fix React deprecation warnings (#1976) 2019-01-06 17:25:33 -08:00
pages Add query editor support for control-return (#1979) 2019-01-15 11:06:52 -08:00
redux Remove decorators and osquery config from the UI (#1769) 2018-05-08 11:03:32 -06:00
router Remove decorators and osquery config from the UI (#1769) 2018-05-08 11:03:32 -06:00
styles Upgrade Bourbon to 5.1.0 and fix deprecation warnings (#1973) 2019-01-03 12:46:55 -08:00
templates Update favicon with flat Kolide logo (#1849) 2018-06-26 09:13:40 -07:00
test Add query editor support for control-return (#1979) 2019-01-15 11:06:52 -08:00
utilities Expose API Token in UI (#1868) 2018-07-17 11:27:30 -07:00
.test.setup.js Upgrade React to version 16 (#1983) 2019-01-14 13:45:28 -08:00
index.jsx Cleaning JavaScript imports and if statements (#327) 2016-10-19 16:22:18 -04:00
index.scss Rearranging Files & Killing Off colors.js (#482) 2016-11-15 12:52:17 -06:00
osquery_tables.json Add osquery table data from master (#1884) 2018-08-06 11:30:50 -06:00
README.md Remove references to public docs site (#1559) 2017-10-12 09:45:59 -06:00

Kolide Front-End

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

Running the Kolide web app

For details instruction on building and serving the Kolide web application consult the Development Documentation

Directory Structure

Component directories in the Kolide 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 Kolide 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.

kolide

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

layouts

The Kolide 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 Kolide 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 Kolide form visit the Kolide Form Documentation.

API Client

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