{ "version": 3, "sources": ["../../../../../../owl-nest/ulule/features/project/src/public/views/detail/tabs/news/News.tsx", "../../../../../../owl-nest/ulule/features/project/src/public/views/detail/tabs/news/component/User.tsx"], "sourcesContent": ["import * as React from 'react'\nimport * as Redux from 'react-redux'\nimport { Link as RouterLink } from 'react-router-dom'\nimport styled, { css } from 'styled-components'\n\nimport * as api from '@owl-nest/api-client/latest'\nimport * as dateUtils from '@owl-nest/date'\nimport { t, tn, tnc } from '@owl-nest/localize'\nimport * as model from '@owl-nest/models'\nimport { useAuth } from '@owl-nest/redux-wrapper/hooks'\nimport * as plume from '@ulule/owl-kit-components/next'\nimport { Reward } from '@owl-nest/models/src/reward'\nimport * as utils from '@owl-nest/utils'\nimport * as env from '@owl-nest/config'\n\nimport { RootState } from '../../../../../reducers'\n\nimport { useDisplayMode } from '../../../../hooks/useDisplayMode'\nimport { useNavigation } from '../../../../hooks/useNavigation'\nimport { PATHS } from '../../../../paths'\nimport { Project } from '../../../../models/project'\nimport * as projectModel from '../../../../models/project'\n\nimport { EditButton } from '../../components/EditButton'\nimport * as styles from '../../style'\n\nimport { User } from './component/User'\n\ntype NewsProps = {\n news: api.News\n full?: boolean\n}\n\nexport function News({ news, full = false }: NewsProps): React.ReactElement {\n const navigation = useNavigation()\n\n // Toggle expand NewsBody\n const [isExpanded, setIsExpanded] = React.useState(false)\n\n const targetRef = React.useRef(null)\n\n const [folded, setFolded] = React.useState<{ withText: boolean; withPicture: boolean }>({\n withText: false,\n withPicture: false,\n })\n\n React.useLayoutEffect(() => {\n if (targetRef.current && !full) {\n const height = targetRef.current.offsetHeight\n const children = targetRef.current.children\n if (children.length > 0) {\n let withText = height >= 150\n let withPicture = false\n\n // First child is always a

because of CKEditor\n const firstChild = children[0]\n if (firstChild.children.length > 0) {\n withText = firstChild.children[0].tagName !== 'IMG' && height >= 150\n withPicture = firstChild.children[0].tagName === 'IMG'\n }\n setFolded({ withText, withPicture })\n }\n }\n }, [])\n\n const formattedDate = dateUtils.format(new Date(news.date_publication ?? news.date_creation), 'dd MMMM yyyy')\n const project = Redux.useSelector((state) => state.application.project.data)\n\n const auth = useAuth()\n const isUserStaff = auth.type === 'loggedin' && auth.user.is_staff\n const isUserAllowed = Boolean(news.permissions.self?.includes('read'))\n const isNewsMasked = !isUserAllowed\n const canUserEdit = useDisplayMode(project) === 'edit' && !model.project.refused(project)\n const tag = news.author && model.user.tag(news.author, news.author.role)\n\n const projectTeamRoles = [api.UserRole.Owner, api.UserRole.Editor, api.UserRole.Moderator]\n const isProjectTeam = project.user_role && projectTeamRoles.includes(project.user_role)\n\n const hideComments =\n project.comments_enabled === api.ProjectCommentsPermission.NOONE && !isProjectTeam && !isUserStaff\n const disallowFirstComment =\n project.comments_enabled === api.ProjectCommentsPermission.NOONE ||\n (project.comments_enabled === api.ProjectCommentsPermission.SUPPORTERS && !isUserAllowed)\n const showCommentsLabel =\n !hideComments && (news.comments_count > 0 || (news.comments_count === 0 && !disallowFirstComment))\n\n const isScheduled = news.status === api.NewsStatus.SCHEDULED\n const isWaiting = news.status === api.NewsStatus.WAITING\n\n const userConfig = env.useUserEnv()\n\n return (\n \n {(news.audience_type == api.NewsAudienceType.SUPPORTERS || news.audience_type == api.NewsAudienceType.TIP) && (\n \n {news.rewards\n ? tnc(\n 'Publication only visible to backers of the reward [rewards]',\n 'Publication only visible to backers of the rewards [rewards]',\n news.rewards.length,\n {\n rewards: () => {\n if (news.rewards) {\n const rewardsToString = news.rewards.map((reward, index) => {\n const title = reward.title\n ? model.reward.title(reward as Reward)\n : utils.text.truncate(utils.text.stripTags(reward.description[userConfig.lang]), 50)\n return (\n news.rewards && (\n \n {`\"${title}\"`}\n {index === news.rewards.length - 2 ? (\n {` ${t('and')} `}\n ) : index < news.rewards.length - 1 ? (\n {`, `}\n ) : (\n ''\n )}\n \n )\n )\n })\n\n if (news.audience_type == api.NewsAudienceType.TIP) {\n rewardsToString.unshift(\n \n {`\"${t('Free donation')}\"`}\n {news.rewards.length > 1 ? {`, `} : {` ${t('and')} `}}\n ,\n )\n }\n\n return rewardsToString\n }\n },\n },\n )\n : news.audience_type == api.NewsAudienceType.TIP\n ? t('This post is only visible to free donators')\n : t('This post is only visible to contributors')}\n \n )}\n {news.audience_type == api.NewsAudienceType.PAYING && (\n {t('This post is only visible to contributors')}\n )}\n {news.audience_type == api.NewsAudienceType.FANS && (\n {t('This post is only visible to fans')}\n )}\n \n \n {isWaiting ? (\n <>\n \n {t('Draft (only visible by you)')}\n \n ) : isScheduled && news.date_schedule ? (\n <>\n {t('Scheduled')}\n {t('Post scheduled for %(date)s at %(time)s', {\n date: dateUtils.format(\n new Date(news.date_schedule),\n env.USER_COUNTRY === 'FR' ? 'dd/MM/yyyy' : 'MM/dd/yyyy',\n ),\n time: dateUtils.format(new Date(news.date_schedule), 'HH:mm'),\n })}\n \n ) : isNewsMasked ? (\n formattedDate\n ) : (\n \n {formattedDate}\n \n )}\n \n {canUserEdit && (\n \n \n \n )}\n \n \n {isNewsMasked ? (\n \n \n {(news.audience_type == api.NewsAudienceType.TIP ||\n news.audience_type == api.NewsAudienceType.SUPPORTERS) && (\n <>\n {t('This post is for backers only')}\n {!model.project.isFinished(project) && (\n \n {t('Back project')}\n \n )}\n \n )}\n {news.audience_type == api.NewsAudienceType.FANS && (\n <>\n {t('This post is for fans only')}\n \n )}\n \n ) : (\n <>\n {isWaiting ? (\n {model.i18n.get(news.title, 'en', '')}\n ) : (\n \n {model.i18n.get(news.title, 'en', '')}\n \n )}\n \n {(folded.withText || folded.withPicture) && !isExpanded && (\n setIsExpanded(true)} uppercase>\n {t('Read more')}\n \n )}\n \n )}\n \n {!isWaiting && (\n \n {news.author && (\n <>\n \n {showCommentsLabel && (\n \n \n \n {news.comments_count > 0\n ? tn('%(count)s comment', '%(count)s comments', news.comments_count, {\n count: news.comments_count,\n })\n : t('Write a comment')}\n \n \n )}\n \n )}\n \n )}\n \n )\n}\n\n// Block\nconst NewsBlock = styled.div`\n padding: 0 20px;\n background-color: ${plume.COLORS.PRIMARY_WHITE};\n box-shadow: ${plume.EFFECTS.SHADOW_2};\n border: 1px solid ${plume.COLORS.GREY_SHADE_5};\n margin-bottom: 40px;\n position: relative;\n\n &::before {\n content: '';\n position: absolute;\n z-index: -1;\n top: 0px;\n left: 50%;\n bottom: -40px;\n border: 1px dashed ${plume.COLORS.GREY_SHADE_4};\n background: ${plume.COLORS.PRIMARY_WHITE};\n }\n\n ${plume.Callout} {\n margin-top: 20px;\n }\n\n @media screen and ${plume.BREAKPOINTS.TABLET} {\n padding: 0 30px;\n }\n`\n\n// Header\nconst NewsHeader = styled.div`\n padding: 20px 0;\n position: relative;\n z-index: 1;\n`\n\nconst EditButtonWrapper = styled.div`\n position: absolute;\n right: 0px;\n top: 20px;\n`\n\nconst PublicationDate = styled(plume.styles.heading.XXXXXS)<{ masked: boolean }>`\n filter: ${({ masked }) => masked && 'blur(8px)'};\n pointer-events: ${({ masked }) => masked && 'none'};\n\n ${plume.glyphs.stroke.Unread} {\n vertical-align: baseline;\n margin-right: 5px;\n }\n`\n\nconst Title = styled(plume.styles.heading.L)<{ draft: boolean }>`\n display: inline-block;\n\n ${({ draft }) =>\n draft &&\n css`\n background-color: ${plume.COLORS.hexToRgb(plume.COLORS.BRAND_ACCENT_YELLOW, 0.3)};\n `}\n`\n\nconst ScheduledTag = styled(plume.Tag)`\n margin-right: 4px;\n`\n\n// Body\nconst NewsContent = styled(plume.WysiwygContent).attrs((props) => ({ ...props, as: plume.styles.copy.S }))``\n\nconst NewsBody = styled.div<{ foldedWithText: boolean; foldedWithPicture: boolean }>`\n padding: 0 0 18px;\n margin-top: -15px;\n max-height: ${({ foldedWithText }) => (foldedWithText ? '150px' : '100%')};\n overflow: hidden;\n position: relative;\n z-index: 0;\n margin-bottom: 20px;\n\n ${({ foldedWithPicture }) =>\n foldedWithPicture &&\n css`\n div + div {\n p + * {\n display: none;\n }\n }\n `}\n ${({ foldedWithText }) =>\n foldedWithText &&\n css`\n &::after {\n content: '';\n position: absolute;\n top: 0;\n left: 0;\n width: 100%;\n height: 100%;\n z-index: 10;\n background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, #ffffff 74%);\n }\n `}\n ${plume.styles.heading.L} {\n margin-bottom: 10px;\n }\n\n img {\n margin: 10px 0;\n }\n`\n\nconst BlurredBackground = styled(styles.Blurred)`\n justify-content: center;\n align-items: center;\n align-content: center;\n flex-direction: column;\n padding: 30px 0 0;\n filter: none;\n\n svg {\n fill: ${plume.COLORS.GREY_SHADE_3};\n }\n\n ${plume.styles.copy.M} {\n margin: 15px 0;\n }\n\n &::before {\n top: 20px;\n left: 0;\n filter: blur(8px);\n box-shadow:\n 40px 0 0 ${plume.COLORS.GREY_SHADE_5},\n 80px 0 0 ${plume.COLORS.GREY_SHADE_5},\n 120px 0 0 ${plume.COLORS.GREY_SHADE_5},\n 160px 0 0 ${plume.COLORS.GREY_SHADE_5},\n 0px 40px 0 ${plume.COLORS.GREY_SHADE_5},\n 40px 40px 0 ${plume.COLORS.GREY_SHADE_5},\n 80px 40px 0 ${plume.COLORS.GREY_SHADE_5},\n 120px 40px 0 ${plume.COLORS.GREY_SHADE_5},\n 160px 40px 0 ${plume.COLORS.GREY_SHADE_5},\n 200px 40px 0 ${plume.COLORS.GREY_SHADE_5},\n 240px 40px 0 ${plume.COLORS.GREY_SHADE_5},\n 260px 40px 0 ${plume.COLORS.GREY_SHADE_5},\n 300px 40px 0 ${plume.COLORS.GREY_SHADE_5},\n 0px 80px 0 ${plume.COLORS.GREY_SHADE_5},\n 40px 80px 0 ${plume.COLORS.GREY_SHADE_5},\n 80px 80px 0 ${plume.COLORS.GREY_SHADE_5},\n 120px 80px 0 ${plume.COLORS.GREY_SHADE_5},\n 160px 80px 0 ${plume.COLORS.GREY_SHADE_5},\n 200px 80px 0 ${plume.COLORS.GREY_SHADE_5},\n 240px 80px 0 ${plume.COLORS.GREY_SHADE_5},\n 0px 120px 0 ${plume.COLORS.GREY_SHADE_5},\n 40px 120px 0 ${plume.COLORS.GREY_SHADE_5},\n 80px 120px 0 ${plume.COLORS.GREY_SHADE_5},\n 120px 120px 0 ${plume.COLORS.GREY_SHADE_5},\n 160px 120px 0 ${plume.COLORS.GREY_SHADE_5},\n 200px 120px 0 ${plume.COLORS.GREY_SHADE_5},\n 240px 120px 0 ${plume.COLORS.GREY_SHADE_5},\n 260px 120px 0 ${plume.COLORS.GREY_SHADE_5};\n }\n`\n\nconst Expand = styled(plume.Link)`\n bottom: 0;\n left: calc(50% - 50px);\n position: absolute;\n z-index: 20;\n`\n\n//Footer\nconst NewsFooter = styled.div<{ masked?: boolean }>`\n margin: 20px 0;\n display: block;\n justify-content: space-between;\n align-items: center;\n filter: ${({ masked }) => masked && 'blur(8px)'};\n pointer-events: ${({ masked }) => masked && 'none'};\n\n @media screen and ${plume.BREAKPOINTS.TABLET} {\n display: flex;\n }\n`\nconst Creator = styled(plume.Link)`\n display: flex;\n flex-direction: row;\n align-items: center;\n\n ${plume.styles.image.Avatar} {\n margin-right: 5px;\n flex: none;\n }\n`\nconst CreatorName = styled.div`\n font-weight: 600;\n font-size: 16px;\n line-height: 22px;\n color: ${plume.COLORS.PRIMARY_BLACK};\n display: inline-block;\n margin-right: 5px;\n flex: none;\n`\n// TODO: FIXME: Should correspond to a predefined link style\nconst LinkWithIcon = styled.a<{ masked?: boolean }>`\n text-decoration: none;\n display: flex;\n align-items: center;\n padding: 10px 0 3px;\n\n &:hover {\n ${plume.glyphs.stroke.Bubble}, span {\n color: ${plume.COLORS.GREY_SHADE_2};\n fill: ${plume.COLORS.GREY_SHADE_2};\n }\n }\n\n ${plume.glyphs.stroke.Bubble} {\n margin-right: 5px;\n fill: ${plume.COLORS.GREY_SHADE_3};\n transition: 0.15s ease;\n }\n\n span {\n font-weight: 600;\n font-size: 13px;\n line-height: 18px;\n color: ${plume.COLORS.GREY_SHADE_3};\n transition: 0.15s ease;\n\n ${(props) => {\n if (props.masked) {\n return css`\n background: ${plume.COLORS.GREY_SHADE_4};\n border-radius: 3px;\n width: 96px;\n height: 8px;\n `\n }\n }}\n }\n\n @media screen and ${plume.BREAKPOINTS.TABLET} {\n padding: 3px 0;\n }\n`\n", "import * as React from 'react'\nimport styled from 'styled-components'\n\nimport * as api from '@owl-nest/api-client/latest'\nimport { styles as S, RoleTag, Link, COLORS } from '@ulule/owl-kit-components/next'\nimport * as model from '@owl-nest/models'\n\ntype UserProps = {\n user: api.PublicUser\n tag?: { backgroundColor?: model.user.RoleTagBackgroundColor; label: string }\n}\n\nexport function User({ user, tag }: UserProps): React.ReactElement {\n return (\n \n \n {model.user.username(user)}\n {tag && {tag.label}}\n \n )\n}\n\nconst Creator = styled(Link)`\n display: flex;\n flex-direction: row;\n align-items: center;\n justify-content: center;\n\n ${S.image.Avatar} {\n margin-right: 5px;\n flex: none;\n }\n`\nconst CreatorName = styled.div`\n font-weight: 600;\n font-size: 16px;\n line-height: 22px;\n color: ${COLORS.PRIMARY_GREY_900};\n display: inline-block;\n margin-right: 5px;\n flex: none;\n`\n"], "mappings": "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", "names": ["init_define_process_env", "init_sentry_release_injection_stub", "React", "init_define_process_env", "init_sentry_release_injection_stub", "React", "User", "user", "tag", "Creator", "styles_exports", "user_exports", "CreatorName", "RoleTag", "_a", "src_default", "Link", "__template", "_b", "colors_exports", "News", "news", "full", "_a", "_b", "_c", "navigation", "useNavigation", "isExpanded", "setIsExpanded", "targetRef", "folded", "setFolded", "height", "children", "withText", "withPicture", "firstChild", "formattedDate", "format", "project", "useSelector", "state", "auth", "useAuth", "isUserStaff", "isUserAllowed", "isNewsMasked", "canUserEdit", "useDisplayMode", "project_exports", "tag", "user_exports", "projectTeamRoles", "isProjectTeam", "hideComments", "disallowFirstComment", "showCommentsLabel", "isScheduled", "isWaiting", "userConfig", "useUserEnv", "NewsBlock", "Callout", "rewardsToString", "reward", "index", "title", "reward_exports", "text_exports", "NewsHeader", "PublicationDate", "glyphs_exports", "ScheduledTag", "USER_COUNTRY", "Link", "PATHS", "EditButtonWrapper", "EditButton", "NewsBody", "BlurredBackground", "styles_exports", "Title", "i18n_exports", "NewsContent", "Expand", "NewsFooter", "User", "LinkWithIcon", "__spreadProps", "__spreadValues", "src_default", "__template", "colors_exports", "effects_exports", "breakpoints_exports", "_d", "masked", "_e", "_f", "draft", "css", "_g", "Tag", "_h", "WysiwygContent", "props", "_i", "_j", "_k", "foldedWithText", "foldedWithPicture", "_l", "Blurred", "_m", "_n", "_o", "Creator", "_p", "CreatorName", "_q", "_r"] }