Source

atoms/story-elements/twitter-element/twitter-element.tsx

  1. import React from "react";
  2. import { StoryElementProps } from "../types";
  3. import { Twitter } from "../../twitter";
  4. import { TwitterTypes } from "../../twitter/types";
  5. import { withStoryAndConfig } from "../../../context";
  6. import get from "lodash.get";
  7. type TwitterElementProps = StoryElementProps & Omit<TwitterTypes, "data-tweetid">;
  8. export const TwitterElementBase = ({ element, story, config, ...props }: TwitterElementProps) => {
  9. const { metadata } = element;
  10. const twitterElementRender = get(config, ["opts", "render", "storyElementRender", "twitterElementRender"], null);
  11. const title = element.subtype || element.title || "";
  12. if (!(metadata && metadata["tweet-id"])) return null;
  13. return twitterElementRender ? (
  14. twitterElementRender({ story, config, element })
  15. ) : (
  16. <Twitter data-tweetid={metadata["tweet-id"]} {...props} title={title} />
  17. );
  18. };
  19. /**
  20. * TwitterElement is a story element.
  21. * The look of the TwitterElement can be changed using the render prop twitterElementRender. In case twitterElementRender is passed in the config, it is rendered. Otherwise a default TwitterElement is rendered.
  22. *
  23. * @param {Object} params object containing parameters passed to the render prop
  24. * @param {Object} params.story story object
  25. * @param {Object} params.config config object
  26. * @param {Object} params.element the story element. This is same as the story element found in the story API response
  27. *
  28. * ```javascript
  29. * ...
  30. * ampRoutes(app, {
  31. * render: {
  32. * storyElementRender: {
  33. * twitterElementRender: ({ story, config, element }) => <MyCustomTwitterElement story={story} config={config} storyElement={element} />
  34. * }
  35. * }
  36. * })
  37. * ...
  38. * ```
  39. *
  40. * @category StoryElements
  41. * @module TwitterElement
  42. * @component
  43. */
  44. export const TwitterElement = withStoryAndConfig(TwitterElementBase);