Source

atoms/author/author.tsx

  1. import React from "react";
  2. import get from "lodash.get";
  3. import styled from "styled-components";
  4. import { Author as AuthorTypesStory } from "../../types/story";
  5. import { AuthorProps } from "./types";
  6. import { Spacer } from "../spacer";
  7. const StyledAuthor = styled.div`
  8. font-family: ${(props) => props.theme.font.family.secondary};
  9. font-size: ${(props) => props.theme.font.size.tiny};
  10. font-weight: bold;
  11. display: flex;
  12. align-items: center;
  13. `;
  14. export const getAuthorNames = (authors: AuthorTypesStory[]) =>
  15. authors.reduce((acc, author, index) => {
  16. if (authors.length === 1) {
  17. return `${author.name}`;
  18. } else if (index === authors.length - 2) {
  19. return `${acc} ${author.name}`;
  20. } else if (index === authors.length - 1) {
  21. return `${acc} & ${author.name}`;
  22. } else if (index < authors.length) {
  23. return `${acc} ${author.name},`;
  24. }
  25. return "";
  26. }, "");
  27. /**
  28. * Author Component - displays all authors passed as an array
  29. *
  30. * @category Atoms
  31. * @module Author
  32. * @component
  33. * @param {AuthorProps} props
  34. * @param {Author[]} props.authors Array containing details about all authors of the story. Comes from Story API
  35. * @param {(string | React.Component)} props.prepend Optional. Used to prepend either some string or a component containing some icon to authors.
  36. *
  37. */
  38. const Author = ({ authors, prepend, story, config, theme }: AuthorProps) => {
  39. const authorCardRender = get(config, ["opts", "render", "authorCardRender"], null);
  40. if (authorCardRender && typeof authorCardRender === "function") return authorCardRender({ story, config, theme });
  41. return (
  42. <StyledAuthor>
  43. {prepend && prepend}
  44. {prepend && <Spacer token="xxs" align="horizontal" />}
  45. {getAuthorNames(authors)}
  46. </StyledAuthor>
  47. );
  48. };
  49. /**
  50. *
  51. * ### How to pass custom Author component from the app?
  52. * ...
  53. * ...
  54. * ampRoutes(app, {
  55. * ...
  56. * ...
  57. * render: {
  58. * authorCardRender: ({ story, config, theme }) => {
  59. * const authorSettings =
  60. * get(
  61. * config,
  62. * ["additionalConfig", "story", `${camelCase(storyType)}-story`, "settings", "authorDetails"],
  63. * {}
  64. * ) || {};
  65. * const authorStyle = get(authorSettings, ["template"], "default");
  66. * if (authorStyle !== "default") return null;
  67. * const { enableLocalization = false, localizedElements = {} } = get(
  68. * config,
  69. * ["additionalConfig", "general", "localization"],
  70. * {}
  71. * );
  72. * const localizedElementData = enableLocalization ? localizedElements : {};
  73. * const { buttonLabels = {} } = localizedElementData;
  74. * const { authorLabel: localizedAuthorLabel, guestAuthorLabel: localizedGuestAuthorLabel } = buttonLabels;
  75. * const authorConfig = {
  76. * ...authorSettings,
  77. * localizedAuthorLabel,
  78. * localizedGuestAuthorLabel,
  79. * };
  80. * return <AuthorCard authors={story.authors} config={authorConfig} theme={theme} />;
  81. * }
  82. * },
  83. * }
  84. * ...
  85. * ...
  86. * ```
  87. *
  88. * @category Molecules
  89. * @module Author
  90. * @component
  91. */
  92. export { Author };