{"version":3,"file":"index-X51bPgCx.js","sources":["../../../frontend/src/Utils/Types/SortingFields.ts","../../../frontend/src/Utils/Steps/index.ts"],"sourcesContent":["export default {\n RECENT: {\n value: '-published',\n label: 'RECENT',\n },\n COMMENTED: {\n value: '-popularity',\n label: 'COMMENTED',\n },\n RANDOM: {\n value: 'random',\n label: 'RANDOM',\n },\n UPVOTED: {\n value: '-votes',\n label: 'UPVOTED',\n },\n LEAST_EXPENSIVE: {\n value: 'budget',\n label: 'LEAST_EXPENSIVE',\n },\n};\n","import { getPostStatus, phaseOngoing, phaseComing, isParticipatoryBudget } from '../Post';\nimport { PostStatuses, PostTypes, SortingFields, Steps, AllSteps, PostCategories } from '../Types';\nimport { StepType, SteppablePostType } from '../Types/Steps';\nimport { moment } from '../../I18n';\n\nexport const getStepName = (\n postType: SteppablePostType,\n stepType: any,\n openToCitizenAndContributor: any,\n intl: any,\n) => {\n const stepTypeI18nKey =\n AllSteps.SUBMISSION === stepType && !openToCitizenAndContributor\n ? 'CONTRIBUTION'\n : stepType.toUpperCase();\n const studyOrDefault = postType.toUpperCase() === PostTypes.STUDY ? 'STUDY' : 'DEFAULT';\n return intl.formatMessage({\n id: `POST_STEPS_TYPES.${studyOrDefault}.${stepTypeI18nKey}`,\n });\n};\n\nexport const getPostStepsWithStatus = (post: any, intl: any) => {\n const postType = post.type as SteppablePostType;\n if (!post.included.steps) return [];\n const steps = post.included.steps.map((step: any) => {\n // we override the step status if it's an ongoing Results step to make it \"Available\"\n let dateStatus = step.dates_status;\n if (step.step_type === Steps[postType].IMPLEMENTATION && dateStatus === 'ongoing') {\n dateStatus = 'available';\n }\n return {\n ...step,\n dates_status: dateStatus,\n label: getStepName(postType, step.step_type, step.open_to_citizen_and_contributor, intl),\n stateLabel: intl.formatMessage({\n id: `POSTS.PHASES.STATES.${dateStatus.toUpperCase()}`,\n }),\n };\n });\n return steps.filter((step: any) => step);\n};\n\nexport const getPostStep = (post: any, intl: any) => {\n const postType = post.type as SteppablePostType;\n const postState = intl.formatMessage({\n id: `POSTS.PHASES.STATES.${getPostStatus(post).toUpperCase()}`,\n });\n\n if (PostCategories.COMMUNICATION.includes(postType)) {\n return null;\n }\n\n if (\n [\n PostTypes.PARTICIPATORY_BUDGET,\n PostTypes.COLLABORATIVE_DECISION,\n PostTypes.IDEAS_REQUEST,\n PostTypes.STUDY,\n ].includes(postType)\n ) {\n return (\n getPostStepsWithStatus(post, intl).find((step: any) => step.id === post.current_step_id)\n ?.label || postState\n );\n }\n\n return postState;\n};\n\nexport const getDefaultStepIndex = (post: any) => {\n const ongoingStepIndex = (post.included.steps || []).findIndex(\n (step: any) => step.id === post.current_step_id,\n );\n\n const currentStep = (post.included.steps || []).find(\n (step: any) => step.id === post.current_step_id,\n );\n\n if (ongoingStepIndex > -1 && currentStep.open_to_citizen_and_contributor) return ongoingStepIndex;\n\n return 0;\n};\n\nexport const currentStep = (post: any) =>\n (post.included.steps || []).find((step: any) => step.id === post.current_step_id);\n\nexport const getStatusFilterForStep = (postType: SteppablePostType, activeStep: any) => {\n if (activeStep?.step_type === Steps[postType].VOTE) {\n return [\n PostStatuses.SELECTED,\n PostStatuses.VALIDATED,\n PostStatuses.IN_PROGRESS,\n PostStatuses.DONE,\n ];\n }\n\n if (activeStep.step_type === Steps[postType].IMPLEMENTATION) {\n return [PostStatuses.VALIDATED, PostStatuses.IN_PROGRESS, PostStatuses.DONE];\n }\n\n return [\n PostStatuses.TODO,\n PostStatuses.DOING,\n PostStatuses.SELECTED,\n PostStatuses.ANSWERED,\n PostStatuses.VALIDATED,\n PostStatuses.DUPLICATE,\n PostStatuses.IN_PROGRESS,\n PostStatuses.DONE,\n ];\n};\n\nexport const getAvailableSortOptionsForStep = (postType: SteppablePostType, activeStep: any) => {\n if (!activeStep?.step_type) return [];\n\n const voteSortingOptions = [SortingFields.RANDOM, SortingFields.UPVOTED, SortingFields.COMMENTED];\n\n if (isParticipatoryBudget(postType)) {\n voteSortingOptions.push(SortingFields.LEAST_EXPENSIVE);\n }\n\n switch (activeStep.step_type) {\n case Steps[postType].SUBMISSION:\n if (postType === PostTypes.IDEAS_REQUEST) {\n return [SortingFields.RECENT, SortingFields.UPVOTED, SortingFields.COMMENTED];\n }\n return [SortingFields.RANDOM, SortingFields.RECENT, SortingFields.COMMENTED];\n case Steps[postType].ANALYSIS:\n return [SortingFields.RANDOM, SortingFields.RECENT, SortingFields.COMMENTED];\n case Steps[postType].VOTE:\n return voteSortingOptions;\n case Steps[postType].IMPLEMENTATION:\n return [SortingFields.RANDOM, SortingFields.RECENT, SortingFields.COMMENTED];\n\n default:\n return [];\n }\n};\n\nexport const isVoteStepOngoing = (steps: Array = [], postType: SteppablePostType) => {\n if (!steps.filter((step: any) => step)?.length || !postType) return false;\n\n const voteStepOngoing = phaseOngoing(\n steps.find((step: any) => step.step_type === Steps[postType].VOTE)?.dates_status,\n );\n\n const submissionOnIdeasRequestOngoing =\n postType === PostTypes.IDEAS_REQUEST &&\n phaseOngoing(steps.find((step: any) => step.step_type === Steps[postType])?.dates_status);\n\n return voteStepOngoing || submissionOnIdeasRequestOngoing;\n};\n\nexport const isSubmissionStepOngoing = (steps: Array = [], postType: SteppablePostType) => {\n if (!steps.length || !postType) return false;\n\n return steps.some(\n (step: any) => step.step_type === Steps[postType].SUBMISSION && phaseOngoing(step.dates_status),\n );\n};\n\nexport const voteDisabled = (post: any) => {\n return post.status === PostStatuses.ANSWERED;\n};\n\nexport const getLastStepEndDate = (post: any) => {\n const steps = post.included.steps || [];\n\n // return the latest end_at of all the steps\n return steps.reduce(\n (prev: any, curr: any) => (moment(curr.end_at).isAfter(moment(prev.end_at)) ? curr : prev),\n steps[0],\n )?.end_at;\n};\n\nexport const allStepsEnded = (post: any) => {\n const lastEndAt = getLastStepEndDate(post);\n\n return lastEndAt && moment(lastEndAt).isBefore(moment());\n};\n\nexport const allStepsComing = (post: any) => {\n const steps = post.included?.steps || [];\n\n return steps.every((step: any) => phaseComing(step.dates_status));\n};\n\nexport const restricteableStep = (postType: SteppablePostType, stepType: StepType) => {\n if (\n [\n PostTypes.COLLABORATIVE_DECISION,\n PostTypes.PARTICIPATORY_BUDGET,\n PostTypes.IDEAS_REQUEST,\n ].includes(postType) &&\n stepType === Steps[postType].SUBMISSION\n ) {\n return true;\n }\n\n if (postType === PostTypes.STUDY && stepType === Steps[postType].IMPLEMENTATION) {\n return true;\n }\n\n return false;\n};\n\nexport const moderatableStep = (postType: SteppablePostType, stepType: StepType) => {\n if (\n [\n PostTypes.COLLABORATIVE_DECISION,\n PostTypes.PARTICIPATORY_BUDGET,\n PostTypes.IDEAS_REQUEST,\n ].includes(postType) &&\n stepType === Steps[postType].SUBMISSION\n ) {\n return true;\n }\n\n return false;\n};\n\nexport const daysLeft = (step: any) => {\n const endDate = moment(step.end_at);\n const todaysDate = moment();\n\n return endDate.diff(todaysDate, 'days');\n};\n\nexport const isImplementationStep = (stepType: any) => {\n return stepType === AllSteps.IMPLEMENTATION;\n};\n\nconst stepIndex = (post: any, stepType: StepType) => {\n const steps = post.included?.steps || [];\n\n return steps.findIndex((s: any) => s.step_type === stepType);\n};\n\nconst rootAttributePath = (post: any, stepType: StepType) =>\n `steps_attributes[${stepIndex(post, stepType)}]`;\nexport const attributePath = (post: any, stepType: StepType, name: string) =>\n `${rootAttributePath(post, stepType)}.${name}`;\n\nconst rootErrorPath = (post: any, stepType: StepType) => `steps[${stepIndex(post, stepType)}]`;\nexport const errorPath = (post: any, stepType: StepType, name: string) =>\n `${rootErrorPath(post, stepType)}.${name}`;\n"],"names":["SortingFields","RECENT","value","label","COMMENTED","RANDOM","UPVOTED","LEAST_EXPENSIVE","getStepName","postType","stepType","openToCitizenAndContributor","intl","stepTypeI18nKey","AllSteps","SUBMISSION","toUpperCase","studyOrDefault","PostTypes","STUDY","formatMessage","id","concat","getPostStepsWithStatus","post","type","included","steps","map","step","dateStatus","dates_status","step_type","Steps","IMPLEMENTATION","_objectSpread","open_to_citizen_and_contributor","stateLabel","filter","getPostStep","postState","getPostStatus","PostCategories","COMMUNICATION","includes","PARTICIPATORY_BUDGET","COLLABORATIVE_DECISION","IDEAS_REQUEST","_getPostStepsWithStat","find","current_step_id","getDefaultStepIndex","ongoingStepIndex","findIndex","currentStep","getStatusFilterForStep","activeStep","VOTE","PostStatuses","SELECTED","VALIDATED","IN_PROGRESS","DONE","TODO","DOING","ANSWERED","DUPLICATE","getAvailableSortOptionsForStep","voteSortingOptions","isParticipatoryBudget","push","ANALYSIS","isVoteStepOngoing","_steps$filter","_steps$find","_steps$find2","arguments","length","undefined","voteStepOngoing","phaseOngoing","submissionOnIdeasRequestOngoing","getLastStepEndDate","_steps$reduce","reduce","prev","curr","moment","end_at","isAfter","allStepsEnded","lastEndAt","isBefore","allStepsComing","_post$included","every","phaseComing","restricteableStep","moderatableStep","daysLeft","endDate","todaysDate","diff","isImplementationStep","stepIndex","_post$included2","s","rootAttributePath","attributePath","name","rootErrorPath","errorPath"],"mappings":"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"}