{"version":3,"file":"FormBuilder-Dv68gGar.js","sources":["../../../frontend/src/Utils/Types/FormBuilder.ts"],"sourcesContent":["import { Attachment, TranslatableField } from './Utils';\nimport { Owner } from './Posts';\n\nexport type FormQuestionType =\n | 'attachment'\n | 'checkbox'\n | 'date'\n | 'location'\n | 'money'\n | 'phone_number'\n | 'picture'\n | 'radio'\n | 'text'\n | 'textarea';\n\nexport type ContextType = 'contribution' | 'questionnaire' | 'secured_strategy';\n\nexport const singletonQuestionTypes: FormQuestionType[] = ['picture', 'money'] as const;\n\nexport const alwaysPublicTypes: FormQuestionType[] = ['picture', 'money'] as const;\n\nexport const questionTypesForContext: Record> = {\n contribution: [\n 'text',\n 'textarea',\n 'radio',\n 'checkbox',\n 'divider',\n 'date',\n 'location',\n 'attachment',\n 'money',\n 'phone_number',\n 'picture',\n ],\n questionnaire: [\n 'text',\n 'textarea',\n 'radio',\n 'checkbox',\n 'divider',\n 'date',\n 'location',\n 'attachment',\n 'phone_number',\n ],\n secured_strategy: ['text', 'radio', 'checkbox', 'date'],\n};\n\ntype FormQuestionOptionTranslatableFields = TranslatableField<{\n label: string;\n}>;\n\nexport interface FormQuestionOption extends FormQuestionOptionTranslatableFields {\n id: string;\n uuid_ref: string;\n other?: boolean;\n newRecord?: boolean; // used to determine if the question is a new record or if it's already persisted\n}\n\nexport type FormQuestionTranslatableFields = TranslatableField<{\n title: string;\n description: string;\n}>;\n\nexport type Operator =\n | 'eq'\n | 'not_eq'\n | 'present'\n | 'blank'\n | 'gt'\n | 'lt'\n | 'gte'\n | 'gte'\n | 'contains'\n | 'not_contains';\n\nexport type QuestionLink = {\n id: string;\n question_id: number;\n target_ref: string;\n question_option_refs: string[];\n operator: Operator;\n value?: string | null;\n};\n\nexport interface FormQuestion extends FormQuestionTranslatableFields {\n id: number;\n uuid: string;\n field_type: FormQuestionType;\n question_options: FormQuestionOption[];\n question_options_attributes?: FormQuestionOption[]; // for the form\n question_links: QuestionLink[];\n question_links_attributes?: QuestionLink[]; // for the form\n uuid_ref: string;\n required: boolean;\n confidential: boolean;\n dropdown: boolean;\n maxlength?: number;\n accepted_answers?: string;\n answers_count?: number;\n dashboard_filter_enabled: boolean;\n public_filter_enabled: boolean;\n post_record_attribute_key: 'budget' | null;\n geojson: string;\n newRecord?: boolean; // used to determine if the question is a new record or if it's already persisted\n _destroy?: boolean; // used to determine if the question should be destroyed\n}\n\nexport interface FormResponseAnswer {\n question_id: number;\n content: string;\n date: string;\n question_options: FormQuestionOption[];\n picture?: string | null;\n attachments?: Attachment[];\n picture_attributes?: {\n _destroy: boolean;\n };\n}\n\nexport interface FormResponse {\n id: number;\n created_at: string;\n answers: FormResponseAnswer[];\n user: Owner;\n}\n"],"names":["singletonQuestionTypes","alwaysPublicTypes","questionTypesForContext","contribution","questionnaire","secured_strategy"],"mappings":"AAiBaA,IAAAA,EAA6C,CAAC,UAAW,OAAO,EAEhEC,EAAwC,CAAC,UAAW,OAAO,EAE3DC,EAA+E,CAC1FC,aAAc,CACZ,OACA,WACA,QACA,WACA,UACA,OACA,WACA,aACA,QACA,eACA,SAAS,EAEXC,cAAe,CACb,OACA,WACA,QACA,WACA,UACA,OACA,WACA,aACA,cAAc,EAEhBC,iBAAkB,CAAC,OAAQ,QAAS,WAAY,MAAM,CACxD"}