Themes are implemented in Typescript. That's because our goal is to share variables between Grafana TypeScript and Sass code. Theme definitions are located in the following files:
- packages/grafana-ui/src/themes/dark.ts
- packages/grafana-ui/src/themes/default.ts
- packages/grafana-ui/src/themes/light.ts
The default.ts
file holds common variables like typography and spacing definitions, while [light|dark].ts
primarily specify colors used in themes.
This section provides usage guidelines.
Here's how to use Grafana themes in React components.
import { ThemeContext } from '@grafana/ui';
<ThemeContext.Consumer>{theme => <Foo theme={theme} />}</ThemeContext.Consumer>;
or
import React, { useContext } from 'react';
import { ThemeContext } from '@grafana/ui';
const Foo: React.FunctionComponent<FooProps> = () => {
const theme = useContext(ThemeContext);
// Your component has access to the theme variables now
}
With this method your component will be automatically wrapped in ThemeContext.Consumer
and provided with current theme via theme
prop. Components used with withTheme
must implement the Themeable
interface.
import { ThemeContext, Themeable } from '@grafana/ui';
interface FooProps extends Themeable {}
const Foo: React.FunctionComponent<FooProps> = () => ...
export default withTheme(Foo);
When implementing snapshot tests for components that use the withTheme
HOC, the snapshot will contain the entire theme object. Any change to the theme renders the snapshot outdated.
To make your snapshot theme independent, use the mockThemeContext
helper function:
import { mockThemeContext } from '@grafana/ui';
import { MyComponent } from './MyComponent';
describe('MyComponent', () => {
let restoreThemeContext;
beforeAll(() => {
// Create ThemeContext mock before any snapshot test is executed
restoreThemeContext = mockThemeContext({ type: GrafanaThemeType.Dark });
});
afterAll(() => {
// Make sure the theme is restored after snapshot tests are performed
restoreThemeContext();
});
it('renders correctyl', () => {
const wrapper = mount(<MyComponent />)
expect(wrapper).toMatchSnapshot();
});
});
Using themes in Storybook
All stories are wrapped with ThemeContext.Provider
using a global decorator. To render a Themeable
component that isn't wrapped by a withTheme
HOC, either create a new component in your story, or use the renderComponentWithTheme
helper.
// Foo.story.tsx
const FooWithTheme = withTheme(Foo);
FooStories.add('Story' () => {
return <FooWithTheme />
});
// Bar.story.tsx
BarStories.add('Story' () => {
return renderComponentWithTheme(Bar, /* pass props here */)
});
There should be very few cases where a theme would be used in an Angular context. For this purpose, there is a function available that retrieves the current theme:
import { getCurrentTheme } from app/core/utils/ConfigProvider
Angular components should be migrated to React, or if that's not possible at the moment, styled using Sass.
This section provides insight into frequently-asked questions.
For the following to apply you need to run
yarn dev
task.
[_variables|_variables.dark|_variables.light].generated.scss
files are the ones that are referenced in the main Sass files for Sass variables to be available. These files are automatically generated and should never be modified by hand!
If you need to modify a Sass variable value you need to modify the corresponding Typescript file that is the source of the variables:
_variables.generated.scss
- modifygrafana-ui/src/themes/default.ts
_variables.light.generated.scss
- modifygrafana-ui/src/themes/light.ts
_variables.dark.generated.scss
- modifygrafana-ui/src/themes/dark.ts
_variables.generated.scss
- modifygrafana-ui/src/themes/_variables.scss.tmpl.ts
_variables.light.generated.scss
- modifygrafana-ui/src/themes/_variables.light.scss.tmpl.ts
_variables.dark.generated.scss
- modifygrafana-ui/src/themes/_variables.dark.scss.tmpl.ts
This section describes limitations with Grafana's theming system.
By default all react2angular directives have ThemeContext.Provider
ensured. But, there are cases where we create another React tree via ReactDOM.render
. This happens in the case of graph legend rendering and the ReactContainer
directive. In such cases theme consumption will fail. To make sure theme context is available in such cases, you need to wrap your rendered component with ThemeContext.Provider using the provideTheme
function:
// graph.ts
import { provideTheme } from 'app/core/utils/ConfigProvider';
// Create component with ThemeContext.Provider first.
// Otherwise React will create new components every time it renders!
const LegendWithThemeProvider = provideTheme(Legend);
const legendReactElem = React.createElement(LegendWithThemeProvider, legendProps);
ReactDOM.render(legendReactElem, this.legendElem, () => this.renderPanel());
provideTheme
makes current theme available via ThemeContext by checking if user has lightTheme
set in her boot data.