import * as React from 'react';
import { applyTheme } from 'bumbag/utils/applyTheme';
import { renderHook } from '@testing-library/react-hooks';
import { Template } from '../Template';
import { Text } from '../../Text';
import render from '../../utils/_tests/render';
describe('props', () => {
it('should render correctly', () => {
const { container } = render(
Hello world
);
expect(container.firstChild).toMatchSnapshot();
});
it('should render correctly with CSS props', () => {
const { container } = render(
Hello world
);
expect(container.firstChild).toMatchSnapshot();
});
});
describe('composition', () => {
describe('hook', () => {
it('should return with Template props', () => {
const { result } = renderHook(() => Template.useProps());
expect(result.current).toMatchSnapshot();
});
});
describe('render props', () => {
it('should render correctly', () => {
const { container } = render(
{(TemplateProps) => (
Hello world
)}
);
expect(container.firstChild).toMatchSnapshot();
});
});
});
describe('theming', () => {
it('Template.styles.base should render correctly', () => {
const { container } = render(
hello world
,
{
// @ts-ignore REMOVE THIS
theme: { Template: { styles: { base: { backgroundColor: 'red' } } } },
}
);
expect(container.firstChild).toMatchSnapshot();
});
it('Template.styles.base should render correctly', () => {
const { container } = render(
Hello world
,
{
theme: {
// @ts-ignore REMOVE THIS
Template: { styles: { base: (props) => ({ backgroundColor: props.color }) } },
},
}
);
expect(container.firstChild).toMatchSnapshot();
});
});
describe('overrides', () => {
it('should render correctly', () => {
const { container } = render(
Hello world
);
expect(container.firstChild).toMatchSnapshot();
});
});
describe('applyTheme', () => {
it('renders correctly', () => {
const Card = applyTheme(Template, {
styles: {
base: {
backgroundColor: 'red',
},
},
defaultProps: {
altitude: '100',
padding: 'major-2',
},
});
const { container } = render();
expect(container.firstChild).toMatchSnapshot();
});
});
describe('variants', () => {
it('styles.base should render correctly', () => {
const { container } = render(
Hello world
,
{
theme: {
// @ts-ignore REMOVE THIS
Template: {
variants: { test: { styles: { base: { backgroundColor: 'red' } } } },
},
},
}
);
expect(container.firstChild).toMatchSnapshot();
});
it('renders correctly for overrides', () => {
const { container } = render(
Hello world
);
expect(container.firstChild).toMatchSnapshot();
});
it('renders correctly for applyTheme', () => {
const Card = applyTheme(Template, {
defaultProps: {
altitude: '100',
padding: 'major-2',
},
variants: {
test: {
defaultProps: {
color: 'red',
},
},
},
});
const { container } = render();
expect(container.firstChild).toMatchSnapshot();
});
});
describe('modes', () => {
it('should render correctly when colorMode is set globally', () => {
const { container } = render(
Hello world
,
{
colorMode: 'test',
theme: {
// @ts-ignore DELETE ME
Template: {
modes: {
test: {
styles: { base: { backgroundColor: 'red' } },
defaultProps: { color: 'primaryTint' },
},
},
},
},
}
);
expect(container.firstChild).toMatchSnapshot();
});
it('should render correctly when colorMode set as prop', () => {
const { container } = render(
Hello world
,
{
theme: {
// @ts-ignore DELETE ME
Template: {
modes: {
test: {
styles: { base: { backgroundColor: 'red' } },
defaultProps: { color: 'primaryTint' },
},
},
},
},
}
);
expect(container.firstChild).toMatchSnapshot();
});
it('renders correctly for overrides', () => {
const { container } = render(
Hello world
);
expect(container.firstChild).toMatchSnapshot();
});
it('renders correctly for applyTheme', () => {
const Card = applyTheme(Template, {
defaultProps: {
altitude: '100',
padding: 'major-2',
},
modes: {
test: {
styles: { base: { backgroundColor: 'red' } },
defaultProps: { color: 'primaryTint' },
},
},
});
const { container } = render();
expect(container.firstChild).toMatchSnapshot();
});
});
describe('defaultProps', () => {
it('should render correctly for color', () => {
const { container } = render(
hello world
,
{
// @ts-ignore REMOVE THIS
theme: { Template: { defaultProps: { color: 'primary' } } },
}
);
expect(container.firstChild).toMatchSnapshot();
});
});