import React from "react";
import styled from "styled-components";
import { StoryElementProps } from "../../types";
import { withStoryAndConfig } from "../../../../context";
import get from "lodash.get";
export const StyledBigfact = styled.div<StoryElementProps>`
.bigfact-description {
color: ${(props) => props.theme.color.mono6};
line-height: ${(props) => props.theme.font.lineHeight.level5};
font-size: ${(props) => props.theme.font.size.xs};
margin-top: 10px;
}
`;
export const BigfactBase = ({ element, story, config }: StoryElementProps) => {
const bigfactElementRender = get(config, ["opts", "render", "storyElementRender", "bigfactElementRender"], null);
return bigfactElementRender ? (
bigfactElementRender({ story, config, element })
) : (
<StyledBigfact
element={element}
story={story}
config={config}
as="div"
dangerouslySetInnerHTML={{ __html: element.text || "" }}
/>
);
};
/**
* Bigfact is a story element.
* The look of the Bigfact can be changed using the render prop bigfactElementRender. In case bigfactElementRender is passed in the config, it is rendered. Otherwise a default Bigfact is rendered.
*
* @param {Object} params object containing parameters passed to the render prop
* @param {Object} params.story story object
* @param {Object} params.config config object
* @param {Object} params.element the story element. This is same as the story element found in the story API response
*
* ```javascript
* ...
* ampRoutes(app, {
* render: {
* storyElementRender: {
* bigfactElementRender: ({ story, config, element }) => <MyCustomBigfact story={story} config={config} storyElement={element} />
* }
* }
* })
* ...
* ```
*
* @category StoryElements
* @module Bigfact
* @component
*/
export const Bigfact = withStoryAndConfig(BigfactBase);
Source