Architecture Overview

GoodData.UI follows principles of the layered architecture and draws a clean line between the different UI components and the backend server that calculates the data to render. The UI components integrate with a backend server through an interface that we call Analytical Backend.

The Analytical Backend is designed as a Service Provider Interface (SPI) with clearly defined contracts that you can implement to work even with your own arbitrary backend. For now, the full documentation of the SPI is provided only at the code level. For more information, see the @gooddata/sdk-backend-spi package.

GoodData.UI comes with a full implementation of the Analytical Backend SPI for GoodData Cloud and GoodData.CN. GoodData.UI uses the tiger codename, for these two GoodData products, in all developer-facing artifacts and APIs. We find that it can better withstand the test of time.

GoodData Platform uses the bear codename in all developer-facing artifacts and APIs. This codename can only be found in GoodData.UI versions 9.x and lower. GoodData Platform is no longer supported by GoodData.UI version 10 or newer.

The Analytical Backend abstraction ultimately allows you to develop applications that can be backend-agnostic.

PackageContents
@gooddata/api-client-tigerThe REST API client for GoodData Cloud and GoodData.CN
@gooddata/sdk-backend-tigerThe analytical backend implementation for GoodData Cloud and GoodData.CN
@gooddata/sdk-modelThe APIs and models used to construct inputs to executions and charts
@gooddata/sdk-uiThe React infrastructure and headless components such as the Execute component
@gooddata/sdk-ui-chartsThe React components for all charts
@gooddata/sdk-ui-geoThe React components for the Geo Pushpin Chart component
@gooddata/sdk-ui-pivotThe React component for the Pivot Table component
@gooddata/sdk-ui-filtersThe filtering components
@gooddata/sdk-ui-extThe components for embedding visualizations created in Analytical Designer
@gooddata/sdk-ui-allAn umbrella package that depends on all sdk-ui- packages and re-exports their public API