{ "version": 3, "sources": ["../../../../../../owl-nest/ulule/features/project/src/public/views/detail/components/Comments/index.tsx", "../../../../../../owl-nest/ulule/features/project/src/public/views/detail/components/Comments/CommentForm.tsx", "../../../../../../owl-nest/ulule/features/project/src/public/views/detail/components/Comments/CommentList.tsx", "../../../../../../owl-nest/ulule/features/project/src/public/views/detail/components/Comments/CommentNode.tsx", "../../../../../../owl-nest/ulule/features/project/src/public/views/detail/components/Comments/Comment.tsx"], "sourcesContent": ["import * as React from 'react'\nimport styled from 'styled-components'\nimport * as Redux from 'react-redux'\n\nimport { t } from '@owl-nest/localize'\nimport { styles as S } from '@ulule/owl-kit-components/next'\nimport * as plume from '@ulule/owl-kit-components/next'\nimport * as api from '@owl-nest/api-client/latest'\nimport { useAuth } from '@owl-nest/redux-wrapper/hooks'\n\nimport { State as CommentState } from '../../../../../reducers/comments'\nimport { RootState } from '../../../../../reducers'\n\nimport { CommentForm, CommentFormValue } from './CommentForm'\nimport { CommentList } from './CommentList'\nimport { Project } from '../../../../models/project'\n\ntype CommentsProps = {\n rootList: CommentState['list']['root']\n onRootSubmit: (values: CommentFormValue) => Promise\n onLoadMore: (next: string) => void\n autoFocus?: boolean\n}\n\nconst Connect = React.lazy(async () => ({ default: (await import('../../../../components/Connect')).Connect }))\n\nexport function Comments({\n rootList,\n onRootSubmit,\n onLoadMore,\n autoFocus,\n}: CommentsProps): React.ReactElement {\n const project = Redux.useSelector((state) => state.application.project.data)\n const auth = useAuth()\n\n return (\n <>\n <>\n {auth.type === 'loggedin' ? (\n <>\n {project.comments_allowed && (\n \n )}\n \n ) : (\n }>\n \n {t('Login to leave a comment')}\n \n \n \n )}\n \n {rootList && }\n \n )\n}\n\ntype RootCommentFormProps = {\n user: api.AuthenticatedUser\n onSubmit: (values: CommentFormValue) => Promise\n autoFocus?: boolean\n}\n\nfunction RootCommentForm({\n user,\n onSubmit,\n autoFocus,\n}: RootCommentFormProps): React.ReactElement {\n return \n}\n\nconst ConnectWrapper = styled.div`\n max-width: 430px;\n margin: 0 auto 30px;\n\n ${S.heading.M} {\n text-align: center;\n margin-bottom: 30px;\n }\n`\n", "import * as React from 'react'\nimport * as formik from 'formik'\nimport * as yup from 'yup'\nimport styled from 'styled-components'\n\nimport * as ds from '@ulule/owl-kit-components/next'\nimport { COLORS, styles as S } from '@ulule/owl-kit-components/next'\nimport * as model from '@owl-nest/models'\nimport { t } from '@owl-nest/localize'\nimport * as api from '@owl-nest/api-client/latest'\n\ntype CommentFormProps = {\n user: api.AuthenticatedUser\n onSubmit: (values: CommentFormValue) => Promise\n onCancel?: () => void\n submitLabel?: React.ReactNode\n autoFocus?: boolean\n id?: string\n}\n\nexport type CommentFormValue = {\n comment: string\n}\n\nconst schema = yup.object().shape({\n comment: yup.string().max(500).required(),\n})\n\nexport function CommentForm({\n user,\n onSubmit,\n onCancel,\n submitLabel,\n autoFocus = false,\n}: CommentFormProps): React.ReactElement {\n const initialValues = {\n comment: '',\n }\n\n const [isOpen, setIsOpen] = React.useState(false)\n\n const textareaResetRef = React.useRef<() => void>(null)\n\n return (\n \n initialValues={initialValues}\n validate={validate}\n onSubmit={submit}\n validateOnChange={false}\n validateOnBlur={false}\n >\n {(formikBag) => {\n return (\n \n \n
\n \n {({ field, meta }: formik.FieldProps) => {\n return (\n \n )\n }}\n \n {submitLabel}\n {onCancel && !formikBag.isSubmitting && (\n \n {t('Cancel')}\n \n )}\n \n {t('Comments are public, we invite you to be careful.')}{' '}\n setIsOpen(!isOpen)}>\n {t('Learn why')}.\n \n \n {isOpen && (\n <>\n {t('IMPORTANT: Through your comment, you could:')}\n \n {t(\n 'reveal information about you, which can sometimes be sensitive or very personal (religious or philosophical beliefs, sexual orientation, political opinions, state of health, etc.)',\n )}\n \n \n {t(\n 'Once your comment is published, this information will be public and available to all. We invite you to be careful in writing your comments, to protect your privacy',\n )}\n \n \n )}\n
\n
\n )\n }}\n \n )\n\n async function submit(values: CommentFormValue, helpers: formik.FormikHelpers): Promise {\n await onSubmit(values)\n textareaResetRef.current && textareaResetRef.current()\n helpers.resetForm()\n }\n\n function validate(values: CommentFormValue): Promise> {\n const validation = schema.validate(values)\n return validation.then(\n () => ({}),\n (err) => {\n // send flash message\n return formik.yupToFormErrors(err)\n },\n )\n }\n}\n\nconst PrivacyToggle = styled(ds.LinkAsButton)`\n padding: 0;\n`\n\nconst Form = styled.form`\n ${S.button.Button}, ${ds.LinkAsButton} {\n margin: -10px 0 4px;\n }\n\n ${S.copy.S} {\n margin-bottom: 14px;\n color: ${COLORS.GREY_SHADE_2};\n }\n\n ${ds.TextAreaField} {\n ${S.field.Status} {\n align-items: baseline;\n justify-content: flex-end;\n }\n ${S.input.Count} {\n margin-left: 10px;\n }\n }\n`\n\nconst Wrapper = styled.div`\n display: flex;\n flex-direction: row;\n align-items: flex-start;\n justify-content: stretch;\n\n ${Form} {\n flex: 1;\n margin-left: 20px;\n }\n`\n", "import * as React from 'react'\nimport styled from 'styled-components'\n\nimport { t } from '@owl-nest/localize'\nimport { styles as S, Button } from '@ulule/owl-kit-components/next'\n\nimport { useListLoadingIndicator } from '../../hooks/useListLoadingIndicator'\nimport { State as CommentState } from '../../../../../reducers/comments'\nimport { CommentNode } from '../../components/Comments/CommentNode'\n\ntype CommentListProps = {\n list: Exclude\n onLoadMore: (next: string) => void\n}\n\nexport function CommentList({ list, onLoadMore }: CommentListProps): React.ReactElement {\n const hasMore = list.next !== null && list.size > list.comments.length\n const [isLoading, markLoadingStart] = useListLoadingIndicator(list.comments.length)\n\n return (\n <>\n {list.newComments.map((comment) => (\n \n ))}\n {list.comments.map((comment) => (\n \n ))}\n {hasMore && (\n \n {\n if (list.next) {\n onLoadMore(list.next)\n markLoadingStart()\n }\n }}\n >\n {t('See more')}\n \n \n )}\n \n )\n}\n\nconst SeeMoreWrapper = styled.div`\n display: flex;\n justify-content: center;\n\n ${S.button.Button} {\n margin: 48px 0;\n }\n`\n", "import * as React from 'react'\nimport * as Redux from 'react-redux'\nimport styled from 'styled-components'\n\nimport * as api from '@owl-nest/api-client/latest'\nimport { t } from '@owl-nest/localize'\nimport * as ds from '@ulule/owl-kit-components/next'\nimport { styles as S, COLORS } from '@ulule/owl-kit-components/next'\n\nimport { RootState } from '../../../../../reducers'\nimport { CommentList } from '../../../../../reducers/comments'\nimport { Comment } from './Comment'\nimport { CommentForm } from './CommentForm'\nimport * as commentAction from '../../../../../actions/comments'\nimport { useAuth } from '@owl-nest/redux-wrapper/hooks'\n\ntype CommentNodeProps = {\n comment: api.Comment\n parentId: number | 'root'\n}\n\nexport function CommentNode({ comment, parentId }: CommentNodeProps): React.ReactElement {\n const dispatch = Redux.useDispatch()\n const children = Redux.useSelector(\n (state) => state.application.comments.list[comment.id],\n )\n\n const [isFormOpen, setIsFormOpen] = React.useState(false)\n\n const hasMore = !!children && children.next !== null && children.size > children.comments.length\n\n const auth = useAuth()\n\n return (\n \n setIsFormOpen(true)}\n onDelete={() => dispatch(commentAction.remove(comment, parentId))}\n />\n \n {children && (\n <>\n {children.comments.map((childComment) => {\n return (\n setIsFormOpen(true)}\n onDelete={() => dispatch(commentAction.remove(childComment, comment.id))}\n />\n )\n })}\n {hasMore && (\n children.next && dispatch(commentAction.loadReply(comment, children.next))}\n >\n {t('View more replies')}\n \n )}\n {children.newComments.map((childComment) => {\n return (\n setIsFormOpen(true)}\n onDelete={() => dispatch(commentAction.remove(childComment, comment.id))}\n />\n )\n })}\n \n )}\n {isFormOpen && auth.type === 'loggedin' && (\n {\n await dispatch(commentAction.createReply(values.comment, comment.id))\n setIsFormOpen(false)\n }}\n onCancel={() => setIsFormOpen(false)}\n submitLabel={t('Reply')}\n />\n )}\n \n \n )\n}\n\nconst Children = styled.div`\n padding-left: 40px;\n`\n\nconst Wrapper = styled.div`\n border-top: 1px solid ${ds.COLORS.GREY_SHADE_5};\n margin-top: -1px;\n border-bottom: 1px solid ${ds.COLORS.GREY_SHADE_5};\n padding-top: 10px;\n`\n", "import * as React from 'react'\nimport * as Redux from 'react-redux'\nimport styled from 'styled-components'\n\nimport * as api from '@owl-nest/api-client/latest'\nimport * as ds from '@ulule/owl-kit-components/next'\nimport { UserLabel, styles as S } from '@ulule/owl-kit-components/next'\nimport * as model from '@owl-nest/models'\nimport { linkify } from '@owl-nest/utils'\nimport { formatDistanceToNow } from '@owl-nest/date'\nimport { t } from '@owl-nest/localize'\n\nimport { useAuth } from '@owl-nest/redux-wrapper/hooks'\n\nimport { RootState } from '../../../../../reducers'\nimport { Project } from '../../../../models/project'\n\ntype CommentProps = {\n comment: api.Comment\n onReply: () => void\n onDelete?: () => void\n}\n\nexport function Comment({ comment, onReply, onDelete }: CommentProps): React.ReactElement {\n const project = Redux.useSelector((state) => state.application.project.data)\n const tag = model.user.tag(comment.user, comment.user.role)\n const auth = useAuth()\n const isUserStaff = auth.type === 'loggedin' && auth.user.is_staff\n const isCommentAuthor = auth.type === 'loggedin' && auth.user.id === comment.user.id\n const canDeleteComment = isUserStaff || isCommentAuthor\n\n const supporterRoles = [api.UserRole.Supporter, api.UserRole.Editor, api.UserRole.Moderator, api.UserRole.Owner]\n const isUserAllowed = (project.user_role && supporterRoles.includes(project.user_role)) || isUserStaff\n const enableReply =\n project.comments_enabled === api.ProjectCommentsPermission.EVERYONE ||\n (project.comments_enabled === api.ProjectCommentsPermission.SUPPORTERS && isUserAllowed)\n \n return (\n \n \n\n \n \n\n \n \n \n )\n}\n\nconst PrimaryButton = styled(ds.LinkAsButton).attrs((props) => ({\n ...props,\n kind: 'primary',\n uppercase: true,\n tinted: true,\n}))``\n\nconst SecondaryButton = styled(ds.LinkAsButton).attrs((props) => ({ ...props, kind: 'secondary', uppercase: true }))`\n margin-left: auto;\n`\n\nconst Footer = styled.footer`\n display: flex;\n flex-direction: row;\n align-items: center;\n`\n\nconst Body = styled.div`\n ${S.copy.M} {\n margin: 10px 0;\n }\n`\n\nconst Wrapper = styled.article`\n display: flex;\n flex-direction: column;\n padding-bottom: 20px;\n\n ${Body} {\n margin-left: 47px;\n }\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", "schema", "create$3", "create$6", "CommentForm", "user", "onSubmit", "onCancel", "submitLabel", "autoFocus", "initialValues", "isOpen", "setIsOpen", "textareaResetRef", "Formik", "validate", "submit", "formikBag", "Wrapper", "styles_exports", "user_exports", "Form", "Field", "field", "meta", "TextAreaField", "LinkAsButton", "PrivacyToggle", "values", "helpers", "err", "yupToFormErrors", "_a", "src_default", "__template", "_b", "colors_exports", "_c", "init_define_process_env", "init_sentry_release_injection_stub", "React", "init_define_process_env", "init_sentry_release_injection_stub", "React", "init_define_process_env", "init_sentry_release_injection_stub", "React", "Comment", "comment", "onReply", "onDelete", "project", "useSelector", "state", "tag", "user_exports", "auth", "useAuth", "isUserStaff", "isCommentAuthor", "canDeleteComment", "supporterRoles", "isUserAllowed", "enableReply", "Wrapper", "UserLabel", "Body", "styles_exports", "linkify", "Footer", "formatDistanceToNow", "PrimaryButton", "SecondaryButton", "_a", "src_default", "LinkAsButton", "props", "__spreadProps", "__spreadValues", "__template", "_b", "_c", "_d", "_e", "CommentNode", "comment", "parentId", "dispatch", "useDispatch", "children", "useSelector", "state", "isFormOpen", "setIsFormOpen", "hasMore", "auth", "useAuth", "Wrapper", "Comment", "remove", "Children", "childComment", "LinkAsButton", "loadReply", "CommentForm", "values", "createReply", "_a", "src_default", "__template", "_b", "colors_exports", "CommentList", "list", "onLoadMore", "hasMore", "isLoading", "markLoadingStart", "useListLoadingIndicator", "comment", "CommentNode", "SeeMoreWrapper", "Button", "_a", "src_default", "__template", "styles_exports", "Connect", "Comments", "rootList", "onRootSubmit", "onLoadMore", "autoFocus", "project", "useSelector", "state", "auth", "useAuth", "RootCommentForm", "Spinner", "ConnectWrapper", "styles_exports", "CommentList", "user", "onSubmit", "CommentForm", "_a", "src_default", "__template"] }