setModalOpen(false)}\n />\n >\n )\n}\n\nexport default MSDCtioRegistrationForm","import { useContext } from 'react';\n\nimport useRegistrtionForm from '../../../hooks/useRegistrtionForm';\nimport MainContext from '../../../context/MainContext';\n\nconst MSDGlobalCmvRegistrationForm = (props) => {\n const context = useContext(MainContext)\n\n const {\n output,\n countries,\n allCountries,\n getValue,\n getLegals\n } = useRegistrtionForm()\n\n let fields = 1\n ? [\n {\n elementType: \"hidden\",\n id: \"episodes\",\n name: \"episodes\",\n value: window._.map(props.openEpisodes, (item => item.id))//[window._.map(props.openEpisodes, (item => item.id))],\n },\n ]\n : [];\n\n\n const languagesList = window._.get(context, \"event.languages\") || []\n const languageField = languagesList.length > 1 ? {\n elementType: \"select\",\n id: \"lang_id\",\n name: \"lang_id\",\n required: true,\n // invalidText: \"Invalid error message.\",\n label: window._.get(context, \"contents.language\") || \"Language\",\n placeholder: window._.get(context, \"contents.language\") || \"Language\",\n value: getValue(\"lang_id\") || context.language,\n options: window._.get(context, \"event.languages\") || []\n } : {\n elementType: \"hidden\",\n id: \"lang_id\",\n name: \"episodes\",\n value: window._.get(languagesList[0], \"value\"),\n }\n\n fields.push(languageField)\n\n const getSpecialtyOptions = () => {\n const values = [\n // \"Microbiologist\",\n // \"Critical Care / Intensivist\",\n // \"Infectious Disease\",\n // \"Internal / Pulmonologist\",\n // \"Hospital Pharmacist\",\n // \"MSD\",\n // \"Other\"\n \"Critical Care / Intensive Care\",\n \"Clinical Pharmacologist\",\n \"Hematologist\",\n \"Hospital Pharmacist\",\n \"Infectious Disease\",\n \"Nephrologist\",\n \"Transplant Physician\",\n \"Other\",\n \"MSD\",\n ]\n\n const specialtiesTranslations = {\n \"en\": {\n \"Critical Care / Intensive Care\": \"Critical Care / Intensive Care\",\n \"Clinical Pharmacologist\": \"Clinical Pharmacologist\",\n \"Hematologist\": \"Hematologist\",\n \"Hospital Pharmacist\": \"Hospital Pharmacist\",\n \"Infectious Disease\": \"Infectious Disease\",\n \"Nephrologist\": \"Nephrologist\",\n \"Transplant Physician\": \"Transplant Physician\",\n \"Other\": \"Other\",\n \"MSD\": \"MSD\",\n },\n \"es\": {\n \"Critical Care / Intensive Care\": \"Cuidado Crítico / Cuidado Intensivo\",\n \"Clinical Pharmacologist\": \"Farmacólogo Clínico\",\n \"Hematologist\": \"Hematólogo\",\n \"Hospital Pharmacist\": \"Farmacéutico Hospitalario\",\n \"Infectious Disease\": \"Enfermedade Infecciosa\",\n \"Nephrologist\": \"Nefrólogo\",\n \"Transplant Physician\": \"Trasplantólogo\",\n \"Other\": \"Otros\",\n \"MSD\": \"MSD\",\n },\n \"zh\": {\n \"Critical Care / Intensive Care\": \"重症监护\",\n \"Clinical Pharmacologist\": \"临床药理学家\",\n \"Hematologist\": \"血液学家\",\n \"Hospital Pharmacist\": \"医院药剂师\",\n \"Infectious Disease\": \"传染病\",\n \"Nephrologist\": \"肾内科医生\",\n \"Transplant Physician\": \"移植医师\",\n \"Other\": \"其他\",\n \"MSD\": \"默沙东 (MSD)\",\n }\n }\n\n return values.map(item => {\n return {\n value: item,\n label: window._.get(specialtiesTranslations, `${getValue(\"lang_id\")}.${item}`) || window._.get(specialtiesTranslations, `en.${item}`)\n }\n })\n }\n\n if (context.event.has_internal) {\n fields.push({\n elementType: \"select\",\n id: \"is_internal\",\n name: \"is_internal\",\n required: true,\n // invalidText: \"Invalid error message.\",\n label: window._.get(context, \"contents.internal\") || \"Internal\",\n value: getValue(\"is_internal\") || \"0\",\n options: [{\n value: 0,//internal_false_value_label\n label: window._.get(context, \"contents.internalFalseValueLabel\") || \"External\",\n }, {\n value: 1,//internal_false_value_label\n label: window._.get(context, \"contents.internalTrueValueLabel\") || \"Internal\",\n }]\n })\n }\n\n if (!parseInt(context.internal)) {\n fields.push({\n elementType: \"select\",\n id: \"country_id\",\n name: \"country_id\",\n required: true,\n // invalidText: \"Invalid error message.\",\n label: window._.get(context, \"contents.country\") || \"Country\",\n placeholder: window._.get(context, \"contents.country\") || \"Country\",\n value: getValue(\"country_id\"),\n disabled: parseInt(context.internal),\n options: countries || []\n })\n }\n else {\n fields.push({\n elementType: \"select\",\n id: \"country_id_of_work\",\n name: \"country_id_of_work\",\n required: true,\n // invalidText: \"Invalid error message.\",\n label: window._.get(context, \"contents.countryOfWork\") || \"Country of work\",\n placeholder: window._.get(context, \"contents.countryOfWork\") || \"Country of work\",\n value: getValue(\"country_id_of_work\"),\n disabled: !parseInt(context.internal),\n options: allCountries || []\n })\n }\n\n // if (context.country || context.internal) {\n fields = fields.concat([\n {\n elementType: \"text\",\n id: \"firstname\",\n name: \"firstname\",\n required: true,\n // invalidText: \"Invalid error message.\",\n label: window._.get(context, \"contents.firstname\") || \"firstname\",\n placeholder: window._.get(context, \"contents.firstname\") || \"firstname\",\n value: getValue(\"firstname\"),\n },\n {\n elementType: \"text\",\n id: \"lastname\",\n name: \"lastname\",\n required: true,\n // invalidText: \"Invalid error message.\",\n label: window._.get(context, \"contents.lastname\") || \"lastname\",\n placeholder: window._.get(context, \"contents.lastname\") || \"lastname\",\n value: getValue(\"lastname\"),\n },\n {\n elementType: \"select\",\n id: \"specialty\",\n name: \"specialty\",\n required: true,\n // invalidText: \"Invalid error message.\",\n label: window._.get(context, \"contents.specialty\") || \"Specialty\",\n placeholder: window._.get(context, \"contents.specialty\") || \"Specialty\",\n value: getValue(\"specialty\"),\n // disabled: parseInt(context.internal),\n options: getSpecialtyOptions()\n },\n {\n elementType: \"text\",\n id: \"affiliation\",\n name: \"affiliation\",\n required: true,\n // invalidText: \"Invalid error message.\",\n label: window._.get(context, \"contents.affiliation\") || \"Affiliation (Place of work)\",\n placeholder: window._.get(context, \"contents.affiliation\") || \"Affiliation (Place of work)\",\n value: getValue(\"affiliation\"),\n },\n {\n elementType: \"email\",\n id: \"email\",\n name: \"email\",\n required: true,\n // invalidText: \"Invalid error message.\",\n label: window._.get(context, \"contents.email\") || \"email\",\n placeholder: window._.get(context, \"contents.email\") || \"email\",\n value: getValue(\"email\"),\n },\n {\n elementType: \"text\",\n id: \"phone\",\n name: \"phone\",\n label: window._.get(context, \"contents.phone\") || \"Telephone No./Work No\",\n placeholder: window._.get(context, \"contents.phone\") || \"Telephone No./Work No\",\n value: getValue(\"phone\"),\n }\n ])\n\n if (context.legals) {\n fields = fields.concat(getLegals())\n }\n // }\n\n return output(fields)\n}\n\nexport default MSDGlobalCmvRegistrationForm","import { useContext, useState, } from 'react';\n\nimport useRegistrtionForm from '../../../hooks/useRegistrtionForm';\nimport MainContext from '../../../context/MainContext';\n\n/**\n * Eurogin KIND\n * @param {object} props \n * @returns \n */\nconst MSDGlobalHpv2021RegistrationForm = (props) => {\n const context = useContext(MainContext)\n\n const {\n output,\n countries,\n allCountries,\n getValue,\n getLegals\n } = useRegistrtionForm()\n\n let fields = 1\n ? [\n {\n elementType: \"hidden\",\n id: \"episodes\",\n name: \"episodes\",\n value: window._.map(props.openEpisodes, (item => item.id))//[window._.map(props.openEpisodes, (item => item.id))],\n },\n ]\n : [];\n\n\n const languagesList = window._.get(context, \"event.languages\") || []\n const languageField = languagesList.length > 1 ? {\n elementType: \"select\",\n id: \"lang_id\",\n name: \"lang_id\",\n required: true,\n // invalidText: \"Invalid error message.\",\n label: window._.get(context, \"contents.language\") || \"Language\",\n placeholder: window._.get(context, \"contents.language\") || \"Language\",\n value: getValue(\"lang_id\") || context.language,\n options: window._.get(context, \"event.languages\") || []\n } : {\n elementType: \"hidden\",\n id: \"lang_id\",\n name: \"episodes\",\n value: window._.get(languagesList[0], \"value\"),\n }\n\n fields.push(languageField)\n\n const getSpecialtyOptions = () => {\n const values = [\n \"Infectious Disease Specialists\",\n \"Public Health Specialists\",\n \"Oncologists\",\n \"Gynecologists\",\n \"Urologists\",\n \"Virologists\",\n \"Pediatricians\",\n \"General/Family Practice\",\n \"Other\"\n ]\n\n const specialtiesTranslations = {\n \"en\": {\n \"Infectious Disease Specialists\": \"Infectious Disease Specialists\",\n \"Public Health Specialists\": \"Public Health Specialists\",\n \"Oncologists\": \"Oncologists\",\n \"Gynecologists\": \"Gynecologists\",\n \"Urologists\": \"Urologists\",\n \"Virologists\": \"Virologists\",\n \"Pediatricians\": \"Pediatricians\",\n \"General/Family Practice\": \"General/Family Practice\",\n \"Other\": \"Other (Please specify)\"\n }\n }\n\n return values.map(item => {\n return {\n value: item,\n label: window._.get(specialtiesTranslations, `${getValue(\"lang_id\")}.${item}`) || window._.get(specialtiesTranslations, `en.${item}`)\n }\n })\n }\n\n if (context.event.has_internal) {\n fields.push({\n elementType: \"select\",\n id: \"is_internal\",\n name: \"is_internal\",\n required: true,\n // invalidText: \"Invalid error message.\",\n label: window._.get(context, \"contents.internal\") || \"Internal\",\n value: getValue(\"is_internal\") || \"0\",\n options: [{\n value: 0,//internal_false_value_label\n label: window._.get(context, \"contents.internalFalseValueLabel\") || \"External\",\n }, {\n value: 1,//internal_false_value_label\n label: window._.get(context, \"contents.internalTrueValueLabel\") || \"Internal\",\n }]\n })\n }\n\n if (!parseInt(context.internal)) {\n fields.push({\n elementType: \"select\",\n id: \"country_id\",\n name: \"country_id\",\n required: true,\n // invalidText: \"Invalid error message.\",\n label: window._.get(context, \"contents.country\") || \"Country\",\n placeholder: window._.get(context, \"contents.country\") || \"Country\",\n value: getValue(\"country_id\") || context.country,\n disabled: parseInt(context.internal),\n options: countries || []\n })\n }\n else {\n fields.push({\n elementType: \"select\",\n id: \"country_id_of_work\",\n name: \"country_id_of_work\",\n required: true,\n // invalidText: \"Invalid error message.\",\n label: window._.get(context, \"contents.countryOfWork\") || \"Country of work\",\n placeholder: window._.get(context, \"contents.countryOfWork\") || \"Country of work\",\n value: getValue(\"country_id_of_work\") || context.country,\n disabled: !parseInt(context.internal),\n options: allCountries || []\n })\n }\n\n // if (context.country || context.internal) {\n fields = fields.concat([\n {\n elementType: \"text\",\n id: \"firstname\",\n name: \"firstname\",\n required: true,\n // invalidText: \"Invalid error message.\",\n label: window._.get(context, \"contents.firstname\") || \"firstname\",\n placeholder: window._.get(context, \"contents.firstname\") || \"firstname\",\n value: getValue(\"firstname\"),\n },\n {\n elementType: \"text\",\n id: \"lastname\",\n name: \"lastname\",\n required: true,\n // invalidText: \"Invalid error message.\",\n label: window._.get(context, \"contents.lastname\") || \"lastname\",\n placeholder: window._.get(context, \"contents.lastname\") || \"lastname\",\n value: getValue(\"lastname\"),\n },\n {\n elementType: \"select\",\n id: \"specialty\",\n name: \"specialty\",\n required: true,\n // invalidText: \"Invalid error message.\",\n label: window._.get(context, \"contents.specialty\") || \"Specialty\",\n placeholder: window._.get(context, \"contents.specialty\") || \"Specialty\",\n value: getValue(\"specialty\") || \"Hematologist\",\n // disabled: parseInt(context.internal),\n options: getSpecialtyOptions()\n },\n ])\n if (getValue(\"specialty\") === \"Other\") {\n fields.push({\n elementType: \"text\",\n id: \"other_specialty\",\n name: \"other_specialty\",\n required: true,\n // invalidText: \"Invalid error message.\",\n label: window._.get(context, \"contents.otherSpecialty\") || \"Other specialty\",\n placeholder: window._.get(context, \"contents.otherSpecialty\") || \"Other specialty\",\n value: getValue(\"other_specialty\"),\n })\n }\n fields = fields.concat([\n {\n elementType: \"text\",\n id: \"affiliation\",\n name: \"affiliation\",\n required: true,\n // invalidText: \"Invalid error message.\",\n label: window._.get(context, \"contents.affiliation\") || \"Affiliation (Place of work)\",\n placeholder: window._.get(context, \"contents.affiliation\") || \"Affiliation (Place of work)\",\n value: getValue(\"affiliation\"),\n },\n {\n elementType: \"email\",\n id: \"email\",\n name: \"email\",\n required: true,\n // invalidText: \"Invalid error message.\",\n label: window._.get(context, \"contents.email\") || \"email\",\n placeholder: window._.get(context, \"contents.email\") || \"email\",\n value: getValue(\"email\"),\n },\n {\n elementType: \"text\",\n id: \"phone\",\n name: \"phone\",\n label: window._.get(context, \"contents.phone\") || \"Telephone No./Work No\",\n placeholder: window._.get(context, \"contents.phone\") || \"Telephone No./Work No\",\n value: getValue(\"phone\"),\n }\n ])\n\n if (context.legals) {\n fields = fields.concat(getLegals())\n }\n // }\n\n return output(fields)\n}\n\nexport default MSDGlobalHpv2021RegistrationForm","import { useContext } from 'react';\n\nimport useRegistrtionForm from '../../../hooks/useRegistrtionForm';\nimport MainContext from '../../../context/MainContext';\nimport { capitalize } from '../../../utils/functions';\n\nconst MSDHncrResearchForum2022RegistrationForm = (props) => {\n const context = useContext(MainContext)\n\n const {\n output,\n countries,\n allCountries,\n getValue,\n getLegals\n } = useRegistrtionForm()\n\n let fields = 1\n ? [\n {\n elementType: \"hidden\",\n id: \"episodes\",\n name: \"episodes\",\n value: window._.map(props.openEpisodes, (item => item.id))//[window._.map(props.openEpisodes, (item => item.id))],\n },\n ]\n : [];\n\n\n const languagesList = window._.get(context, \"event.languages\") || []\n const languageField = languagesList.length > 1 ? {\n elementType: \"select\",\n id: \"lang_id\",\n name: \"lang_id\",\n required: true,\n // invalidText: \"Invalid error message.\",\n label: window._.get(context, \"contents.language\") || \"Language\",\n placeholder: window._.get(context, \"contents.language\") || \"Language\",\n value: getValue(\"lang_id\") || context.language,\n options: window._.get(context, \"event.languages\") || []\n } : {\n elementType: \"hidden\",\n id: \"lang_id\",\n name: \"episodes\",\n value: window._.get(languagesList[0], \"value\"),\n }\n\n fields.push(languageField)\n\n if (context.event.has_internal) {\n fields.push({\n elementType: \"select\",\n id: \"is_internal\",\n name: \"is_internal\",\n required: true,\n // invalidText: \"Invalid error message.\",\n label: window._.get(context, \"contents.internal\") || \"Internal\",\n value: getValue(\"is_internal\") || \"0\",\n options: [{\n value: 0,//internal_false_value_label\n label: window._.get(context, \"contents.internalFalseValueLabel\") || \"External\",\n }, {\n value: 1,//internal_false_value_label\n label: window._.get(context, \"contents.internalTrueValueLabel\") || \"Internal\",\n }]\n })\n }\n fields = fields.concat([\n {\n elementType: \"text\",\n id: \"firstname\",\n name: \"firstname\",\n required: true,\n // invalidText: \"Invalid error message.\",\n label: window._.get(context, \"contents.firstname\") || \"firstname\",\n placeholder: window._.get(context, \"contents.firstname\") || \"firstname\",\n value: getValue(\"firstname\"),\n },\n {\n elementType: \"text\",\n id: \"lastname\",\n name: \"lastname\",\n required: true,\n // invalidText: \"Invalid error message.\",\n label: window._.get(context, \"contents.lastname\") || \"lastname\",\n placeholder: window._.get(context, \"contents.lastname\") || \"lastname\",\n value: getValue(\"lastname\"),\n }])\n\n if (!parseInt(context.internal)) {\n fields.push({\n elementType: \"select\",\n id: \"country_id\",\n name: \"country_id\",\n required: true,\n // invalidText: \"Invalid error message.\",\n label: window._.get(context, \"contents.country\") || \"Country\",\n placeholder: window._.get(context, \"contents.country\") || \"Country\",\n value: getValue(\"country_id\") || context.country,\n disabled: parseInt(context.internal),\n options: countries || []\n })\n fields.push({\n elementType: \"text\",\n id: \"istitution\",\n name: \"istitution\",\n required: true,\n label: window._.get(context, \"contents.istitution\") || \"Istitution\",\n placeholder: capitalize(window._.get(context, \"contents.istitution\")) || \"Istitution\",\n value: getValue(\"istitution\"),\n })\n fields.push({\n elementType: \"select\",\n id: \"specialty\",\n name: \"specialty\",\n required: true,\n // invalidText: \"Invalid error message.\",\n label: window._.get(context, \"contents.specialty\") || \"Specialty\",\n placeholder: window._.get(context, \"contents.specialty\") || \"Specialty\",\n value: getValue(\"specialty\") || \"Hematologist\",\n disabled: parseInt(context.internal),\n options: [\n {\n value: \"Clinical Oncologist\",\n label: \"Clinical Oncologist\"\n }, {\n value: \"Medical Oncologist\",\n label: \"Medical Oncologist\"\n }, {\n value: \"Pathologist\",\n label: \"Pathologist\"\n }, {\n value: \"Radiation Oncologist\",\n label: \"Radiation Oncologist\"\n }, {\n value: \"Researcher\",\n label: \"Researcher\"\n }, {\n value: \"Surgeon\",\n label: \"Surgeon\"\n }, {\n value: \"Other\",\n label: \"Others (Please specify)\"\n }\n ] || []\n })\n // To include a free text box below “other” to specify the speciality \n if (getValue(\"specialty\") === \"Other\") {\n fields.push({\n elementType: \"text\",\n id: \"other_specialty\",\n name: \"other_specialty\",\n required: true,\n // invalidText: \"Invalid error message.\",\n label: window._.get(context, \"contents.otherSpecialty\") || \"Other specialty\",\n placeholder: window._.get(context, \"contents.otherSpecialty\") || \"Other specialty\",\n value: getValue(\"other_specialty\"),\n })\n }\n }\n else {\n fields.push({\n elementType: \"select\",\n id: \"country_id_of_work\",\n name: \"country_id_of_work\",\n required: true,\n // invalidText: \"Invalid error message.\",\n label: window._.get(context, \"contents.countryOfWork\") || \"Country of work\",\n placeholder: window._.get(context, \"contents.countryOfWork\") || \"Country of work\",\n value: getValue(\"country_id_of_work\") || context.country,\n disabled: !parseInt(context.internal),\n options: allCountries || []\n })\n fields.push({\n elementType: \"select\",\n id: \"department\",\n name: \"department\",\n required: true,\n // invalidText: \"Invalid error message.\",\n label: window._.get(context, \"contents.department\") || \"Department\",\n placeholder: window._.get(context, \"contents.department\") || \"Department\",\n value: getValue(\"department\") || \"MRL/GMSA\",\n options: [{\n value: \"MRL/GMSA\",\n label: \"MRL/GMSA\"\n }, {\n value: null,\n label: \"Other\"\n }]\n })\n // To include a free text box below “other” to specify the department.\n if (getValue(\"department\") === \"Other\") {\n fields.push({\n elementType: \"text\",\n id: \"other_department\",\n name: \"other_department\",\n required: true,\n // invalidText: \"Invalid error message.\",\n label: window._.get(context, \"contents.otherDepartment\") || \"Other department\",\n placeholder: window._.get(context, \"contents.otherDepartment\") || \"Other department\",\n value: getValue(\"other_department\"),\n })\n }\n }\n\n // if (context.country || context.internal) {\n fields = fields.concat([\n {\n elementType: \"email\",\n id: \"email\",\n name: \"email\",\n required: true,\n // invalidText: \"Invalid error message.\",\n label: window._.get(context, \"contents.email\") || \"email\",\n placeholder: window._.get(context, \"contents.email\") || \"email\",\n value: getValue(\"email\"),\n },\n ])\n\n if (context.legals) {\n fields = fields.concat(getLegals())\n }\n // }\n\n return output(fields)\n}\n\nexport default MSDHncrResearchForum2022RegistrationForm","import { useContext } from 'react';\n\nimport useRegistrtionForm from '../../../hooks/useRegistrtionForm';\nimport MainContext from '../../../context/MainContext';\n\n/**\n * Eurogin KIND\n * @param {object} props \n * @returns \n */\nconst MSDIdForum2021RegistrationForm = (props) => {\n const context = useContext(MainContext)\n\n const {\n output,\n countries,\n allCountries,\n getValue,\n getLegals\n } = useRegistrtionForm()\n\n let fields = 1\n ? [\n {\n elementType: \"hidden\",\n id: \"episodes\",\n name: \"episodes\",\n value: window._.map(props.openEpisodes, (item => item.id))//[window._.map(props.openEpisodes, (item => item.id))],\n },\n ]\n : [];\n\n\n const languagesList = window._.get(context, \"event.languages\") || []\n const languageField = languagesList.length > 1 ? {\n elementType: \"select\",\n id: \"lang_id\",\n name: \"lang_id\",\n required: true,\n // invalidText: \"Invalid error message.\",\n label: window._.get(context, \"contents.language\") || \"Language\",\n placeholder: window._.get(context, \"contents.language\") || \"Language\",\n value: getValue(\"lang_id\") || context.language,\n options: window._.get(context, \"event.languages\") || []\n } : {\n elementType: \"hidden\",\n id: \"lang_id\",\n name: \"episodes\",\n value: window._.get(languagesList[0], \"value\"),\n }\n\n fields.push(languageField)\n\n const getSpecialtyOptions = () => {\n const values = [\n // \"Microbiologist\",\n // \"Critical Care / Intensivist\",\n // \"Infectious Disease\",\n // \"Internal / Pulmonologist\",\n // \"Hospital Pharmacist\",\n // \"MSD\",\n // \"Other\"\n \"Critical Care / Intensive Care\",\n \"Clinical Pharmacologists\",\n \"Hematologists\",\n \"Hospital Pharmacists\",\n \"Infectious Disease\",\n \"Microbiology\",\n \"Pulmonology / Respiratory\",\n \"Transplant Physicians\",\n \"Other\",\n \"MSD\",\n ]\n\n const specialtiesTranslations = {\n \"en\": {\n \"Critical Care / Intensive Care\": \"Critical Care / Intensive Care\",\n \"Clinical Pharmacologists\": \"Clinical Pharmacologists\",\n \"Hematologists\": \"Hematologists\",\n \"Hospital Pharmacists\": \"Hospital Pharmacists\",\n \"Infectious Disease\": \"Infectious Disease\",\n \"Microbiology\": \"Microbiology\",\n \"Pulmonology / Respiratory\": \"Pulmonology / Respiratory\",\n \"Transplant Physicians\": \"Transplant Physicians\",\n \"Other\": \"Other\",\n \"MSD\": \"MSD\",\n },\n \"es\": {\n \"Critical Care / Intensive Care\": \"Critical Care / Intensive Care\",\n \"Clinical Pharmacologists\": \"Clinical Pharmacologists\",\n \"Hematologists\": \"Hematologists\",\n \"Hospital Pharmacists\": \"Hospital Pharmacists\",\n \"Infectious Disease\": \"Infectious Disease\",\n \"Microbiology\": \"Microbiology\",\n \"Pulmonology / Respiratory\": \"Pulmonology / Respiratory\",\n \"Transplant Physicians\": \"Transplant Physicians\",\n \"Other\": \"Other\",\n \"MSD\": \"MSD\",\n },\n \"pt\": {\n \"Critical Care / Intensive Care\": \"Critical Care / Intensive Care\",\n \"Clinical Pharmacologists\": \"Clinical Pharmacologists\",\n \"Hematologists\": \"Hematologists\",\n \"Hospital Pharmacists\": \"Hospital Pharmacists\",\n \"Infectious Disease\": \"Infectious Disease\",\n \"Microbiology\": \"Microbiology\",\n \"Pulmonology / Respiratory\": \"Pulmonology / Respiratory\",\n \"Transplant Physicians\": \"Transplant Physicians\",\n \"Other\": \"Other\",\n \"MSD\": \"MSD\",\n }\n // \"en\": {\n // \"Microbiologist\": \"Microbiologist\",\n // \"Critical Care / Intensivist\": \"Critical Care / Intensivist\",\n // \"Infectious Disease\": \"Infectious Disease\",\n // \"Internal / Pulmonologist\": \"Internal / Pulmonologist\",\n // \"Hospital Pharmacist\": \"Hospital Pharmacist\",\n // \"MSD\": \"MSD\",\n // \"Other\": \"Other\"\n // },\n // \"es\": {\n // \"Microbiologist\": \"Microbiólogo\",\n // \"Critical Care / Intensivist\": \"Cuidados Intensivos/ Intensivista\",\n // \"Infectious Disease\": \"Enfermedades infecciosas\",\n // \"Internal / Pulmonologist\": \"Internista / Neumólogo\",\n // \"Hospital Pharmacist\": \"Farmacéutico hospitalario\",\n // \"MSD\": \"MSD\",\n // \"Other\": \"Otros\"\n // },\n // \"pt\": {\n // \"Microbiologist\": \"Microbiologist\",\n // \"Critical Care / Intensivist\": \"Terapia intensiva/ Intensivista\",\n // \"Infectious Disease\": \"Doença infecciosa\",\n // \"Internal / Pulmonologist\": \"Medicina interna/Pneumologista\",\n // \"Hospital Pharmacist\": \"Farmacêutico hospitalar\",\n // \"MSD\": \"MSD\",\n // \"Other\": \"Outros\"\n // },\n // \"fr\": {\n // \"Microbiologist\": \"Microbiologiste\",\n // \"Critical Care / Intensivist\": \"Soins critiques / Intensiviste\",\n // \"Infectious Disease\": \"Infectiologue\",\n // \"Internal / Pulmonologist\": \"Interniste / Pneumologue\",\n // \"Hospital Pharmacist\": \"Pharmacien hospitalier\",\n // \"MSD\": \"MSD\",\n // \"Other\": \"Autre\"\n // },\n // \"ru\": {\n // \"Microbiologist\": \"Микробиолог\",\n // \"Critical Care / Intensivist\": \"Специалист по интенсивной терапии / Реаниматолог\",\n // \"Infectious Disease\": \"Инфекционист\",\n // \"Internal / Pulmonologist\": \"Терапевт / Пульмонолог\",\n // \"Hospital Pharmacist\": \"Клинический фармацевт\",\n // \"MSD\": \"MSD\",\n // \"Other\": \"Другие\"\n // },\n // \"zh\": {\n // \"Microbiologist\": \"微生物学家\",\n // \"Critical Care / Intensivist\": \"重症监护/重症医师\",\n // \"Infectious Disease\": \"传染病\",\n // \"Internal / Pulmonologist\": \"内科/肺科医生\",\n // \"Hospital Pharmacist\": \"医院药剂师\",\n // \"MSD\": \"默沙东 (MSD)\",\n // \"Other\": \"其他\"\n // }\n }\n\n return values.map(item => {\n return {\n value: item,\n label: window._.get(specialtiesTranslations, `${getValue(\"lang_id\")}.${item}`) || window._.get(specialtiesTranslations, `en.${item}`)\n }\n })\n }\n\n if (context.event.has_internal) {\n fields.push({\n elementType: \"select\",\n id: \"is_internal\",\n name: \"is_internal\",\n required: true,\n // invalidText: \"Invalid error message.\",\n label: window._.get(context, \"contents.internal\") || \"Internal\",\n value: getValue(\"is_internal\") || \"0\",\n options: [{\n value: 0,//internal_false_value_label\n label: window._.get(context, \"contents.internalFalseValueLabel\") || \"External\",\n }, {\n value: 1,//internal_false_value_label\n label: window._.get(context, \"contents.internalTrueValueLabel\") || \"Internal\",\n }]\n })\n }\n\n if (!parseInt(context.internal)) {\n fields.push({\n elementType: \"select\",\n id: \"country_id\",\n name: \"country_id\",\n required: true,\n // invalidText: \"Invalid error message.\",\n label: window._.get(context, \"contents.country\") || \"Country\",\n placeholder: window._.get(context, \"contents.country\") || \"Country\",\n value: getValue(\"country_id\"),\n disabled: parseInt(context.internal),\n options: countries || []\n })\n }\n else {\n fields.push({\n elementType: \"select\",\n id: \"country_id_of_work\",\n name: \"country_id_of_work\",\n required: true,\n // invalidText: \"Invalid error message.\",\n label: window._.get(context, \"contents.countryOfWork\") || \"Country of work\",\n placeholder: window._.get(context, \"contents.countryOfWork\") || \"Country of work\",\n value: getValue(\"country_id_of_work\"),\n disabled: !parseInt(context.internal),\n options: allCountries || []\n })\n }\n\n // if (context.country || context.internal) {\n fields = fields.concat([\n {\n elementType: \"text\",\n id: \"firstname\",\n name: \"firstname\",\n required: true,\n // invalidText: \"Invalid error message.\",\n label: window._.get(context, \"contents.firstname\") || \"firstname\",\n placeholder: window._.get(context, \"contents.firstname\") || \"firstname\",\n value: getValue(\"firstname\"),\n },\n {\n elementType: \"text\",\n id: \"lastname\",\n name: \"lastname\",\n required: true,\n // invalidText: \"Invalid error message.\",\n label: window._.get(context, \"contents.lastname\") || \"lastname\",\n placeholder: window._.get(context, \"contents.lastname\") || \"lastname\",\n value: getValue(\"lastname\"),\n },\n {\n elementType: \"select\",\n id: \"specialty\",\n name: \"specialty\",\n required: true,\n // invalidText: \"Invalid error message.\",\n label: window._.get(context, \"contents.specialty\") || \"Specialty\",\n placeholder: window._.get(context, \"contents.specialty\") || \"Specialty\",\n value: getValue(\"specialty\"),\n // disabled: parseInt(context.internal),\n options: getSpecialtyOptions()\n },\n {\n elementType: \"text\",\n id: \"affiliation\",\n name: \"affiliation\",\n required: true,\n // invalidText: \"Invalid error message.\",\n label: window._.get(context, \"contents.affiliation\") || \"Affiliation (Place of work)\",\n placeholder: window._.get(context, \"contents.affiliation\") || \"Affiliation (Place of work)\",\n value: getValue(\"affiliation\"),\n },\n {\n elementType: \"email\",\n id: \"email\",\n name: \"email\",\n required: true,\n // invalidText: \"Invalid error message.\",\n label: window._.get(context, \"contents.email\") || \"email\",\n placeholder: window._.get(context, \"contents.email\") || \"email\",\n value: getValue(\"email\"),\n },\n {\n elementType: \"text\",\n id: \"phone\",\n name: \"phone\",\n label: window._.get(context, \"contents.phone\") || \"Telephone No./Work No\",\n placeholder: window._.get(context, \"contents.phone\") || \"Telephone No./Work No\",\n value: getValue(\"phone\"),\n }\n ])\n\n if (context.legals) {\n fields = fields.concat(getLegals())\n }\n // }\n\n return output(fields)\n}\n\nexport default MSDIdForum2021RegistrationForm","import React, { useContext, useState, } from 'react';\nimport { getThemeConfig, getContents, formatRegistrationFooter, capitalize, consoleLog } from '../../../utils/functions';\nimport Form from '../../Form/Form';\n\nimport { ThemeContext } from 'styled-components';\n\nimport { buildQuery } from '../../../api/functions';\nimport MainContext from '../../../context/MainContext';\nimport LightText from '../../../ui/LightText/LightText';\n\nconst MSDJcapMatchRegistrationForm = (props) => {\n const [defaultValues, setDefaultValues] = useState({});\n\n const themeContext = useContext(ThemeContext);\n const context = useContext(MainContext)\n\n const getEndpoint = () => {\n const query = buildQuery({});\n // const endpoint = `events/${event}/${CONTENTS}?${query}`;\n return [\n \"register\"\n ].join(\"/\") + `?${query}`;\n }\n\n const getValue = (name, type) => {\n const value = !window._.isEmpty(defaultValues) ? defaultValues[name] : null;\n\n switch (type) {\n case \"bool\":\n return value !== 0;\n default:\n return value || \"\";\n }\n };\n\n const onChange = (key, value) => {\n console.log(\"onChange\", key, value);\n switch (key) {\n case \"lang_id\":\n context.setLanguage(value)\n break\n case \"country_id\":\n context.setCountry(value)\n break\n case \"is_internal\":\n context.setInternal(value)\n break\n }\n setDefaultValues({\n ...defaultValues,\n [key]: value\n });\n }\n\n const onSubmit = (params) => {\n // context.setUser(params.me)\n // context.setToken(params.token, params.me)\n context.onRegistred(true)\n }\n\n const countries = [{\n id: null,\n label: \"-\",\n code: null\n }].concat(window._.get(context, \"event.countries\"))\n\n const allCountries = [{\n id: null,\n label: \"-\",\n code: null\n }].concat(window._.get(context, \"event.all_countries\"))\n\n let newRequiredTos = []\n let fields = 1\n ? [\n {\n elementType: \"hidden\",\n id: \"episodes\",\n name: \"episodes\",\n value: window._.map(props.openEpisodes, (item => item.id))//[window._.map(props.openEpisodes, (item => item.id))],\n },\n ]\n : [];\n\n if (context.event.has_internal) {\n // fields.push({\n // elementType: \"checkbox\",\n // id: \"is_internal\",\n // name: \"is_internal\",\n // // required: true,\n // // invalidText: \"Invalid error message.\",\n // label: window._.get(context, \"contents.internal\"),\n // value: context.internal\n // })\n fields.push({\n elementType: \"select\",\n id: \"is_internal\",\n name: \"is_internal\",\n required: true,\n // invalidText: \"Invalid error message.\",\n label: window._.get(context, \"contents.internal\") || \"Internal\",\n value: getValue(\"is_internal\") || \"0\",\n options: [{\n value: 0,//internal_false_value_label\n label: window._.get(context, \"contents.internalFalseValueLabel\") || \"External\",\n }, {\n value: 1,//internal_false_value_label\n label: window._.get(context, \"contents.internalTrueValueLabel\") || \"Internal\",\n }]\n })\n }\n\n fields = fields.concat([\n {\n elementType: \"text\",\n id: \"firstname\",\n name: \"firstname\",\n required: true,\n // invalidText: \"Invalid error message.\",\n label: window._.get(context, \"contents.firstname\") || \"firstname\",\n placeholder: window._.get(context, \"contents.firstname\") || \"firstname\",\n value: getValue(\"firstname\"),\n },\n {\n elementType: \"text\",\n id: \"lastname\",\n name: \"lastname\",\n required: true,\n // invalidText: \"Invalid error message.\",\n label: window._.get(context, \"contents.lastname\") || \"lastname\",\n placeholder: window._.get(context, \"contents.lastname\") || \"lastname\",\n value: getValue(\"lastname\"),\n }\n ])\n\n if (!parseInt(context.internal)) {\n fields.push({\n elementType: \"select\",\n id: \"country_id\",\n name: \"country_id\",\n required: true,\n // invalidText: \"Invalid error message.\",\n label: window._.get(context, \"contents.country\") || \"Country\",\n placeholder: window._.get(context, \"contents.country\") || \"Country\",\n value: getValue(\"country_id\") || context.country,\n disabled: parseInt(context.internal),\n options: countries || []\n })\n fields.push({\n elementType: \"text\",\n id: \"institution\",\n name: \"institution\",\n required: true,\n label: window._.get(context, \"contents.istitution\") || \"Institution\",\n placeholder: capitalize(window._.get(context, \"contents.istitution\")) || \"Institution\",\n value: getValue(\"institution\"),\n })\n fields.push({\n elementType: \"select\",\n id: \"specialty\",\n name: \"specialty\",\n required: true,\n // invalidText: \"Invalid error message.\",\n label: window._.get(context, \"contents.specialty\") || \"Specialty\",\n placeholder: window._.get(context, \"contents.specialty\") || \"Specialty\",\n value: getValue(\"specialty\") || \"Internal Medicine\",\n disabled: parseInt(context.internal),\n options: [\n {\n value: \"Internal Medicine\",\n label: \"Internal Medicine\"\n }, {\n value: \"Medical Oncology\",\n label: \"Medical Oncology\"\n }, {\n value: \"Radiology\",\n label: \"Radiology\"\n }, {\n value: \"Surgery\",\n label: \"Surgery\"\n }, {\n value: \"Pathology\",\n label: \"Pathology\"\n }, {\n value: \"Other\",\n label: \"Others (Please specify)\"\n }\n ] || []\n })\n if (getValue(\"specialty\") === \"Other\") {\n fields.push({\n elementType: \"text\",\n id: \"other_specialty\",\n name: \"other_specialty\",\n required: true,\n // invalidText: \"Invalid error message.\",\n label: window._.get(context, \"contents.otherSpecialty\") || \"Other specialty\",\n placeholder: window._.get(context, \"contents.otherSpecialty\") || \"Other specialty\",\n value: getValue(\"other_specialty\"),\n })\n }\n }\n else {\n fields.push({\n elementType: \"select\",\n id: \"country_id_of_work\",\n name: \"country_id_of_work\",\n required: true,\n // invalidText: \"Invalid error message.\",\n label: window._.get(context, \"contents.countryOfWork\") || \"Country of work\",\n placeholder: window._.get(context, \"contents.countryOfWork\") || \"Country of work\",\n value: getValue(\"country_id_of_work\") || context.country,\n disabled: !parseInt(context.internal),\n options: allCountries || []\n })\n fields.push({\n elementType: \"select\",\n id: \"department\",\n name: \"department\",\n required: true,\n // invalidText: \"Invalid error message.\",\n label: window._.get(context, \"contents.department\") || \"Department\",\n placeholder: window._.get(context, \"contents.department\") || \"Department\",\n value: getValue(\"department\") || \"MRL/GMSA\",\n options: [{\n value: \"MRL/GMSA\",\n label: \"MRL/GMSA\"\n }, {\n value: null,\n label: \"Other\"\n }]\n })\n if (getValue(\"department\") === \"Other\") {\n fields.push({\n elementType: \"text\",\n id: \"other_department\",\n name: \"other_department\",\n required: true,\n // invalidText: \"Invalid error message.\",\n label: window._.get(context, \"contents.otherDepartment\") || \"Other department\",\n placeholder: window._.get(context, \"contents.otherDepartment\") || \"Other department\",\n value: getValue(\"other_department\"),\n })\n }\n }\n\n const languagesList = window._.get(context, \"event.languages\") || []\n const languageField = languagesList.length > 1 ? {\n elementType: \"select\",\n id: \"lang_id\",\n name: \"lang_id\",\n required: true,\n // invalidText: \"Invalid error message.\",\n label: window._.get(context, \"contents.language\") || \"Language\",\n placeholder: window._.get(context, \"contents.language\") || \"Language\",\n value: getValue(\"lang_id\") || context.language,\n options: window._.get(context, \"event.languages\") || []\n } : {\n elementType: \"hidden\",\n id: \"lang_id\",\n name: \"episodes\",\n value: window._.get(languagesList[0], \"value\"),\n }\n\n fields.push(languageField)\n\n // if (context.country || parseInt(context.internal)) {\n fields = fields.concat([\n {\n elementType: \"email\",\n id: \"email\",\n name: \"email\",\n required: true,\n // invalidText: \"Invalid error message.\",\n label: window._.get(context, \"contents.email\") || \"email\",\n placeholder: window._.get(context, \"contents.email\") || \"email\",\n value: getValue(\"email\"),\n },\n ])\n\n // fields.push({\n // elementType: \"checkbox\",\n // id: \"privacy_policy\",\n // name: \"privacy_policy\",\n // required: true,\n // // invalidText: \"Invalid error message.\",\n // label: `${getContents(context, \"iAgree\")} ${getContents(context, \"privacyPolicyLinkText\")}`,\n // value: getValue(\"privacy_policy\"),\n // section: \"footer\"\n // })\n // fields.push({\n // elementType: \"checkbox\",\n // id: \"cookie_policy\",\n // name: \"cookie_policy\",\n // required: true,\n // // invalidText: \"Invalid error message.\",\n // label: `${getContents(context, \"iAgree\")} ${getContents(context, \"cookiePolicyLinkText\")}`,\n // value: getValue(\"cookie_policy\"),\n // section: \"footer\"\n // })\n if (context.legals) {\n context.legals.forEach(item => {\n consoleLog(\"context.legals\", item.field_name)\n if (!item.field_name) {\n return false\n }\n fields.push({\n elementType: \"checkbox\",\n id: item.field_name,\n name: item.field_name,\n required: item.is_required,\n // invalidText: \"Invalid error message.\",\n // label: `${getContents(context, \"iAgree\")} ${getContents(context, \"cookiePolicyLinkText\")}`,\n labelHtml: item.checkbox_label,\n popupContent: item.content,\n value: getValue(item.field_name),\n section: \"footer\"\n })\n if (item.is_required) {\n newRequiredTos.push(item.field_name)\n // setRequiredTos([\n // ...requiredTos,\n // item.field_name\n // ])\n }\n })\n }\n // }\n\n\n const logo = (getThemeConfig(context, \"registration-form.logo\")) ?\n !window._.isEmpty(themeContext.mediaRegistrationFormLogoDesktop) ? (\n \n

\n
\n ) : null : null\n\n const formHelp = (getThemeConfig(context, \"registration-form.footer\")) ? (\n \n \n ) : null\n\n const registrationHeader = getContents(context, \"registrationHeader\") ? (\n \n \n ) : null\n\n //newRequiredTos\n const disableSubmit = (reqs) => {\n let disable = false\n if (reqs) {\n reqs.forEach(item => {\n if (!getValue(item)) {\n disable = true\n }\n })\n }\n else {\n disable = true\n }\n\n // context.event.episodes.forEach(item => {\n // if (item.id === window._.get(context, \"episode.id\")) {\n // disable = !item.is_subscriptions_open\n // }\n // })\n return disable\n }\n\n return (\n \n {logo}\n {/* {registrationHeader} */}\n
\n );\n}\n\nexport default MSDJcapMatchRegistrationForm","import { useContext, useState, } from 'react';\n\nimport useRegistrtionForm from '../../../hooks/useRegistrtionForm';\nimport MainContext from '../../../context/MainContext';\nimport { capitalize } from '../../../utils/functions';\n\nconst MSDJCAPRegistrationForm = (props) => {\n const context = useContext(MainContext)\n\n const {\n output,\n countries,\n allCountries,\n getValue,\n getLegals\n } = useRegistrtionForm()\n\n let fields = 1\n ? [\n {\n elementType: \"hidden\",\n id: \"episodes\",\n name: \"episodes\",\n value: window._.map(props.openEpisodes, (item => item.id))//[window._.map(props.openEpisodes, (item => item.id))],\n },\n ]\n : [];\n\n\n const languagesList = window._.get(context, \"event.languages\") || []\n const languageField = languagesList.length > 1 ? {\n elementType: \"select\",\n id: \"lang_id\",\n name: \"lang_id\",\n required: true,\n // invalidText: \"Invalid error message.\",\n label: window._.get(context, \"contents.language\") || \"Language\",\n placeholder: window._.get(context, \"contents.language\") || \"Language\",\n value: getValue(\"lang_id\") || context.language,\n options: window._.get(context, \"event.languages\") || []\n } : {\n elementType: \"hidden\",\n id: \"lang_id\",\n name: \"episodes\",\n value: window._.get(languagesList[0], \"value\"),\n }\n\n fields.push(languageField)\n\n const getSpecialtyOptions = () => {\n const values = [\n \"Internal Medicine\",\n \"Medical Oncology\",\n \"Surgery\",\n \"Radiology\",\n \"Gynecology\",\n \"Others\"\n ]\n\n const specialtiesTranslations = {\n \"en\": {\n \"Internal Medicine\": \"Internal Medicine\",\n \"Medical Oncology\": \"Medical Oncology\",\n \"Surgery\": \"Surgery\",\n \"Radiology\": \"Radiology\",\n \"Gynecology\": \"Gynecology\",\n \"Others\": \"Others\"\n }\n }\n\n return values.map(item => {\n return {\n value: item,\n label: window._.get(specialtiesTranslations, `${getValue(\"lang_id\")}.${item}`) || window._.get(specialtiesTranslations, `en.${item}`)\n }\n })\n }\n\n if (context.event.has_internal) {\n fields.push({\n elementType: \"select\",\n id: \"is_internal\",\n name: \"is_internal\",\n required: true,\n // invalidText: \"Invalid error message.\",\n label: window._.get(context, \"contents.internal\") || \"Internal\",\n value: getValue(\"is_internal\") || \"0\",\n options: [{\n value: 0,//internal_false_value_label\n label: window._.get(context, \"contents.internalFalseValueLabel\") || \"External\",\n }, {\n value: 1,//internal_false_value_label\n label: window._.get(context, \"contents.internalTrueValueLabel\") || \"Internal\",\n }]\n })\n }\n\n\n // if (context.country || context.internal) {\n fields = fields.concat([\n {\n elementType: \"text\",\n id: \"firstname\",\n name: \"firstname\",\n required: true,\n // invalidText: \"Invalid error message.\",\n label: window._.get(context, \"contents.firstname\") || \"firstname\",\n placeholder: window._.get(context, \"contents.firstname\") || \"firstname\",\n value: getValue(\"firstname\"),\n },\n {\n elementType: \"text\",\n id: \"lastname\",\n name: \"lastname\",\n required: true,\n // invalidText: \"Invalid error message.\",\n label: window._.get(context, \"contents.lastname\") || \"lastname\",\n placeholder: window._.get(context, \"contents.lastname\") || \"lastname\",\n value: getValue(\"lastname\"),\n },\n ])\n\n if (!parseInt(context.internal)) {\n fields = fields.concat([\n {\n elementType: \"select\",\n id: \"country_id\",\n name: \"country_id\",\n required: true,\n // invalidText: \"Invalid error message.\",\n label: window._.get(context, \"contents.country\") || \"Country\",\n placeholder: window._.get(context, \"contents.country\") || \"Country\",\n value: getValue(\"country_id\") || context.country,\n disabled: parseInt(context.internal),\n options: countries || []\n },\n {\n elementType: \"text\",\n id: \"istitution\",\n name: \"istitution\",\n required: true,\n label: window._.get(context, \"contents.istitution\") || \"Istitution\",\n placeholder: capitalize(window._.get(context, \"contents.istitution\")) || \"Istitution\",\n value: getValue(\"istitution\"),\n },\n {\n elementType: \"select\",\n id: \"specialty\",\n name: \"specialty\",\n required: true,\n // invalidText: \"Invalid error message.\",\n label: window._.get(context, \"contents.specialty\") || \"Specialty\",\n placeholder: window._.get(context, \"contents.specialty\") || \"Specialty\",\n value: getValue(\"specialty\") || \"Hematologist\",\n // disabled: parseInt(context.internal),\n options: getSpecialtyOptions()\n }]\n )\n if (getValue(\"specialty\") === \"Others\") {\n fields.push({\n elementType: \"text\",\n id: \"other_specialty\",\n name: \"other_specialty\",\n required: true,\n // invalidText: \"Invalid error message.\",\n label: window._.get(context, \"contents.otherSpecialty\") || \"Other specialty\",\n placeholder: window._.get(context, \"contents.otherSpecialty\") || \"Other specialty\",\n value: getValue(\"other_specialty\"),\n })\n }\n }\n else {\n fields = fields.concat([\n {\n elementType: \"select\",\n id: \"country_id_of_work\",\n name: \"country_id_of_work\",\n required: true,\n // invalidText: \"Invalid error message.\",\n label: window._.get(context, \"contents.countryOfWork\") || \"Country of work\",\n placeholder: window._.get(context, \"contents.countryOfWork\") || \"Country of work\",\n value: getValue(\"country_id_of_work\") || context.country,\n disabled: !parseInt(context.internal),\n options: allCountries || []\n },\n {\n elementType: \"select\",\n id: \"department\",\n name: \"department\",\n required: true,\n // invalidText: \"Invalid error message.\",\n label: window._.get(context, \"contents.department\") || \"Department\",\n placeholder: window._.get(context, \"contents.department\") || \"Department\",\n value: getValue(\"department\") || \"MRL/GMSA\",\n options: [{\n value: \"MRL/GMSA\",\n label: \"MRL/GMSA\"\n }, {\n value: null,\n label: \"Other\"\n }]\n }]\n )\n if (getValue(\"department\") === \"Other\") {\n fields.push({\n elementType: \"text\",\n id: \"other_department\",\n name: \"other_department\",\n required: true,\n label: window._.get(context, \"contents.otherDepartment\") || \"Other department\",\n placeholder: window._.get(context, \"contents.otherDepartment\") || \"Other department\",\n value: getValue(\"other_department\"),\n })\n }\n }\n\n fields.push(\n {\n elementType: \"email\",\n id: \"email\",\n name: \"email\",\n required: true,\n // invalidText: \"Invalid error message.\",\n label: window._.get(context, \"contents.email\") || \"email\",\n placeholder: window._.get(context, \"contents.email\") || \"email\",\n value: getValue(\"email\"),\n }\n )\n\n if (context.legals) {\n fields = fields.concat(getLegals())\n }\n // }\n\n return output(fields)\n}\n\nexport default MSDJCAPRegistrationForm","import { useContext } from 'react';\n\nimport useRegistrtionForm from '../../../hooks/useRegistrtionForm';\nimport MainContext from '../../../context/MainContext';\n\nconst OrganonVirtualSassRegistrationForm = (props) => {\n const context = useContext(MainContext)\n\n const {\n output,\n countries,\n allCountries,\n getValue,\n getLegals\n } = useRegistrtionForm({\n multiselectFields: [\"specialty\"]\n })\n\n let fields = 1\n ? [\n {\n elementType: \"hidden\",\n id: \"episodes\",\n name: \"episodes\",\n value: window._.map(props.openEpisodes, (item => item.id))//[window._.map(props.openEpisodes, (item => item.id))],\n },\n ]\n : [];\n\n\n const languagesList = window._.get(context, \"event.languages\") || []\n const languageField = languagesList.length > 1 ? {\n elementType: \"select\",\n id: \"lang_id\",\n name: \"lang_id\",\n required: true,\n // invalidText: \"Invalid error message.\",\n label: window._.get(context, \"contents.language\") || \"Language\",\n placeholder: window._.get(context, \"contents.language\") || \"Language\",\n value: getValue(\"lang_id\") || context.language,\n options: window._.get(context, \"event.languages\") || []\n } : {\n elementType: \"hidden\",\n id: \"lang_id\",\n name: \"episodes\",\n value: window._.get(languagesList[0], \"value\"),\n }\n\n fields.push(languageField)\n\n const getSpecialtyOptions = () => {\n const values = [\n \"Cardiology\",\n \"Endocrinology\",\n \"Family Medicine / General Practice\",\n \"Family Planning\",\n \"Obstetrics / Gynecology\",\n \"Other\",\n \"Not applicable\",\n ]\n\n const specialtiesTranslations = {\n \"en\": {\n \"Cardiology\": \"Cardiology\",\n \"Endocrinology\": \"Endocrinology\",\n \"Family Medicine / General Practice\": \"Family Medicine / General Practice\",\n \"Family Planning\": \"Family Planning\",\n \"Obstetrics / Gynecology\": \"Obstetrics / Gynecology\",\n \"Not applicable\": \"Not applicable\",\n \"Transplant Physician\": \"Transplant Physician\",\n \"Other\": \"Other\",\n }\n }\n\n return values.map((item, index) => {\n return {\n value: item,\n label: window._.get(specialtiesTranslations, `${getValue(\"lang_id\")}.${item}`) || window._.get(specialtiesTranslations, `en.${item}`)\n }\n })\n }\n\n if (context.event.has_internal) {\n fields.push({\n elementType: \"select\",\n id: \"is_internal\",\n name: \"is_internal\",\n required: true,\n label: window._.get(context, \"contents.internal\") || \"Internal\",\n value: getValue(\"is_internal\") || \"0\",\n options: [{\n value: 0,//internal_false_value_label\n label: window._.get(context, \"contents.internalFalseValueLabel\") || \"External\",\n }, {\n value: 1,//internal_false_value_label\n label: window._.get(context, \"contents.internalTrueValueLabel\") || \"Internal\",\n }]\n })\n }\n\n if (!parseInt(context.internal)) {\n fields.push({\n elementType: \"select\",\n id: \"country_id\",\n name: \"country_id\",\n required: true,\n // invalidText: \"Invalid error message.\",\n label: window._.get(context, \"contents.country\") || \"Country\",\n placeholder: window._.get(context, \"contents.country\") || \"Country\",\n value: getValue(\"country_id\"),\n disabled: parseInt(context.internal),\n options: countries || []\n })\n }\n else {\n fields.push({\n elementType: \"select\",\n id: \"country_id_of_work\",\n name: \"country_id_of_work\",\n required: true,\n // invalidText: \"Invalid error message.\",\n label: window._.get(context, \"contents.countryOfWork\") || \"Country of work\",\n placeholder: window._.get(context, \"contents.countryOfWork\") || \"Country of work\",\n value: getValue(\"country_id_of_work\"),\n disabled: !parseInt(context.internal),\n options: allCountries || []\n })\n }\n\n // if (context.country || context.internal) {\n fields = fields.concat([\n {\n elementType: \"text\",\n id: \"firstname\",\n name: \"firstname\",\n required: true,\n // invalidText: \"Invalid error message.\",\n label: window._.get(context, \"contents.firstname\") || \"firstname\",\n placeholder: window._.get(context, \"contents.firstname\") || \"firstname\",\n value: getValue(\"firstname\"),\n },\n {\n elementType: \"text\",\n id: \"lastname\",\n name: \"lastname\",\n required: true,\n // invalidText: \"Invalid error message.\",\n label: window._.get(context, \"contents.lastname\") || \"lastname\",\n placeholder: window._.get(context, \"contents.lastname\") || \"lastname\",\n value: getValue(\"lastname\"),\n },\n {\n elementType: \"singleselect\",\n isMulti: true,\n id: \"specialty\",\n name: \"specialty\",\n required: true,\n // invalidText: \"Invalid error message.\",\n label: window._.get(context, \"contents.specialty\") || \"Specialty\",\n placeholder: window._.get(context, \"contents.specialty\") || \"Specialty\",\n value: getValue(\"specialty\", \"miltiselect\"),\n // disabled: parseInt(context.internal),\n options: getSpecialtyOptions()\n },\n {\n elementType: \"text\",\n id: \"affiliation\",\n name: \"affiliation\",\n // invalidText: \"Invalid error message.\",\n label: window._.get(context, \"contents.affiliation\") || \"Affiliation (Place of work)\",\n placeholder: window._.get(context, \"contents.affiliation\") || \"Affiliation (Place of work)\",\n value: getValue(\"affiliation\"),\n },\n {\n elementType: \"email\",\n id: \"email\",\n name: \"email\",\n required: true,\n // invalidText: \"Invalid error message.\",\n label: window._.get(context, \"contents.email\") || \"email\",\n placeholder: window._.get(context, \"contents.email\") || \"email\",\n value: getValue(\"email\"),\n },\n {\n elementType: \"text\",\n id: \"phone\",\n name: \"phone\",\n label: window._.get(context, \"contents.phone\") || \"Telephone No./Work No\",\n placeholder: window._.get(context, \"contents.phone\") || \"Telephone No./Work No\",\n value: getValue(\"phone\"),\n }\n ])\n\n if (context.legals) {\n fields = fields.concat(getLegals())\n }\n // }\n\n return output(fields)\n}\n\nexport default OrganonVirtualSassRegistrationForm","import React, { useContext, useState, } from 'react';\nimport { buildQuery } from '../../api/functions';\nimport { getThemeConfig, getContents, formatRegistrationFooter, capitalize, consoleLog } from '../../utils/functions';\nimport Form from '../Form/Form';\nimport MainContext from '../../context/MainContext';\nimport { ThemeContext } from 'styled-components';\nimport LightText from '../../ui/LightText/LightText';\nimport useThreeStatesInternal from '../../hooks/useThreeStatesInternal';\n\nconst MsdApidForumCovid19 = (props) => {\n const [defaultValues, setDefaultValues] = useState({});\n\n const {\n initial,\n onTouched,\n isInternalField\n } = useThreeStatesInternal()\n\n const themeContext = useContext(ThemeContext);\n const context = useContext(MainContext)\n\n const getEndpoint = () => {\n const query = buildQuery({});\n return [\n \"register\"\n ].join(\"/\") + `?${query}`;\n }\n\n const getValue = (name, type) => {\n const value = !window._.isEmpty(defaultValues) ? defaultValues[name] : null;\n\n switch (type) {\n case \"bool\":\n return value !== 0;\n default:\n return value || \"\";\n }\n };\n\n const onChange = (key, value) => {\n console.log(\"onChange\", key, value);\n switch (key) {\n case \"lang_id\":\n context.setLanguage(value)\n break\n case \"country_id\":\n context.setCountry(value)\n break\n case \"is_internal\":\n context.setInternal(value)\n break\n }\n setDefaultValues({\n ...defaultValues,\n [key]: value\n });\n }\n\n const onSubmit = (params) => {\n // context.setUser(params.me)\n // context.setToken(params.token, params.me)\n context.onRegistred(true)\n }\n\n const countries = window._.get(context, \"event.countries\")\n const allCountries = window._.get(context, \"event.all_countries\")\n\n let newRequiredTos = []\n let fields = 1\n ? [\n {\n elementType: \"hidden\",\n id: \"episodes\",\n name: \"episodes\",\n value: window._.map(props.openEpisodes, (item => item.id))//[window._.map(props.openEpisodes, (item => item.id))],\n },\n ]\n : [];\n\n if (context.event.has_internal) {\n fields.push(isInternalField({\n context: context,\n getValue: (e) => getValue(e)\n }))\n }\n\n if (!initial) {\n if (!parseInt(context.internal)) {\n fields.push({\n elementType: \"select\",\n id: \"country_id\",\n name: \"country_id\",\n required: true,\n // invalidText: \"Invalid error message.\",\n label: window._.get(context, \"contents.country\") || \"Country\",\n placeholder: window._.get(context, \"contents.country\") || \"Country\",\n value: getValue(\"country_id\") || context.country,\n disabled: parseInt(context.internal),\n options: countries || []\n })\n fields.push({\n elementType: \"text\",\n id: \"istitution\",\n name: \"istitution\",\n required: true,\n label: window._.get(context, \"contents.istitution\") || \"Istitution\",\n placeholder: capitalize(window._.get(context, \"contents.istitution\")) || \"Istitution\",\n value: getValue(\"istitution\"),\n })\n fields.push({\n elementType: \"select\",\n id: \"specialty\",\n name: \"specialty\",\n required: true,\n // invalidText: \"Invalid error message.\",\n label: window._.get(context, \"contents.specialty\") || \"Specialty\",\n placeholder: window._.get(context, \"contents.specialty\") || \"Specialty\",\n value: getValue(\"specialty\"),\n disabled: parseInt(context.internal),\n options: [\n {\n value: \"Emergency physician\",\n label: \"Emergency physician\"\n }, {\n value: \"Family physician\",\n label: \"Family physician\"\n }, {\n value: \"Infectious diseases specialist\",\n label: \"Infectious diseases specialist\"\n }, {\n value: \"Pharmacist\",\n label: \"Pharmacist\"\n }, {\n value: \"Pulmonologist\",\n label: \"Pulmonologist\"\n }, {\n value: \"Virologist\",\n label: \"Virologist\"\n }, {\n value: \"Other\",\n label: \"Others (Please specify)\"\n }\n ] || []\n })\n if (getValue(\"specialty\") === \"Other\") {\n fields.push({\n elementType: \"text\",\n id: \"other_specialty\",\n name: \"other_specialty\",\n required: true,\n // invalidText: \"Invalid error message.\",\n label: window._.get(context, \"contents.otherSpecialty\") || \"Other specialty\",\n placeholder: window._.get(context, \"contents.otherSpecialty\") || \"Other specialty\",\n value: getValue(\"other_specialty\"),\n })\n }\n }\n else {\n fields.push({\n elementType: \"select\",\n id: \"country_id_of_work\",\n name: \"country_id_of_work\",\n required: true,\n // invalidText: \"Invalid error message.\",\n label: window._.get(context, \"contents.countryOfWork\") || \"Country of work\",\n placeholder: window._.get(context, \"contents.countryOfWork\") || \"Country of work\",\n value: getValue(\"country_id_of_work\") || context.country,\n disabled: !parseInt(context.internal),\n options: allCountries || []\n })\n fields.push({\n elementType: \"select\",\n id: \"department\",\n name: \"department\",\n required: true,\n // invalidText: \"Invalid error message.\",\n label: window._.get(context, \"contents.department\") || \"Department\",\n placeholder: window._.get(context, \"contents.department\") || \"Department\",\n value: getValue(\"department\"),\n options: [{\n value: \"MRL/GMSA\",\n label: \"MRL/GMSA\"\n }, {\n value: null,\n label: \"Other\"\n }]\n })\n if (getValue(\"department\") === \"Other\") {\n fields.push({\n elementType: \"text\",\n id: \"other_department\",\n name: \"other_department\",\n required: true,\n // invalidText: \"Invalid error message.\",\n label: window._.get(context, \"contents.otherDepartment\") || \"Other department\",\n placeholder: window._.get(context, \"contents.otherDepartment\") || \"Other department\",\n value: getValue(\"other_department\"),\n })\n }\n }\n }\n\n const languagesList = window._.get(context, \"event.languages\") || []\n const languageField = languagesList.length > 1 ? {\n elementType: \"select\",\n id: \"lang_id\",\n name: \"lang_id\",\n required: true,\n // invalidText: \"Invalid error message.\",\n label: window._.get(context, \"contents.language\") || \"Language\",\n placeholder: window._.get(context, \"contents.language\") || \"Language\",\n value: getValue(\"lang_id\") || context.language,\n options: window._.get(context, \"event.languages\") || []\n } : {\n elementType: \"hidden\",\n id: \"lang_id\",\n name: \"episodes\",\n value: window._.get(languagesList[0], \"value\"),\n }\n\n fields.push(languageField)\n\n fields = fields.concat([\n {\n elementType: \"text\",\n id: \"firstname\",\n name: \"firstname\",\n required: true,\n // invalidText: \"Invalid error message.\",\n label: window._.get(context, \"contents.firstname\") || \"firstname\",\n placeholder: window._.get(context, \"contents.firstname\") || \"firstname\",\n value: getValue(\"firstname\"),\n },\n {\n elementType: \"text\",\n id: \"lastname\",\n name: \"lastname\",\n required: true,\n // invalidText: \"Invalid error message.\",\n label: window._.get(context, \"contents.lastname\") || \"lastname\",\n placeholder: window._.get(context, \"contents.lastname\") || \"lastname\",\n value: getValue(\"lastname\"),\n },\n {\n elementType: \"email\",\n id: \"email\",\n name: \"email\",\n required: true,\n // invalidText: \"Invalid error message.\",\n label: window._.get(context, \"contents.email\") || \"email\",\n placeholder: window._.get(context, \"contents.email\") || \"email\",\n value: getValue(\"email\"),\n },\n ])\n\n // fields.push({\n // elementType: \"checkbox\",\n // id: \"privacy_policy\",\n // name: \"privacy_policy\",\n // required: true,\n // // invalidText: \"Invalid error message.\",\n // label: `${getContents(context, \"iAgree\")} ${getContents(context, \"privacyPolicyLinkText\")}`,\n // value: getValue(\"privacy_policy\"),\n // section: \"footer\"\n // })\n // fields.push({\n // elementType: \"checkbox\",\n // id: \"cookie_policy\",\n // name: \"cookie_policy\",\n // required: true,\n // // invalidText: \"Invalid error message.\",\n // label: `${getContents(context, \"iAgree\")} ${getContents(context, \"cookiePolicyLinkText\")}`,\n // value: getValue(\"cookie_policy\"),\n // section: \"footer\"\n // })\n if (context.legals) {\n context.legals.forEach(item => {\n consoleLog(\"context.legals\", item.field_name)\n if (!item.field_name) {\n return false\n }\n fields.push({\n elementType: \"checkbox\",\n id: item.field_name,\n name: item.field_name,\n required: item.is_required,\n // invalidText: \"Invalid error message.\",\n // label: `${getContents(context, \"iAgree\")} ${getContents(context, \"cookiePolicyLinkText\")}`,\n labelHtml: item.checkbox_label,\n popupContent: item.content,\n value: getValue(item.field_name),\n section: \"footer\"\n })\n if (item.is_required) {\n newRequiredTos.push(item.field_name)\n // setRequiredTos([\n // ...requiredTos,\n // item.field_name\n // ])\n }\n })\n }\n\n\n const logo = (getThemeConfig(context, \"registration-form.logo\")) ?\n !window._.isEmpty(themeContext.mediaRegistrationFormLogoDesktop) ? (\n \n

\n
\n ) : null : null\n\n const formHelp = (getThemeConfig(context, \"registration-form.footer\")) ? (\n \n \n ) : null\n\n const registrationHeader = getContents(context, \"registrationHeader\") ? (\n \n \n ) : null\n\n //newRequiredTos\n const disableSubmit = (reqs) => {\n let disable = false\n if (reqs) {\n reqs.forEach(item => {\n if (!getValue(item)) {\n disable = true\n }\n })\n }\n else {\n disable = true\n }\n\n // context.event.episodes.forEach(item => {\n // if (item.id === window._.get(context, \"episode.id\")) {\n // disable = !item.is_subscriptions_open\n // }\n // })\n return disable\n }\n\n return (\n \n {logo}\n {/* {registrationHeader} */}\n
\n );\n}\n\nexport default MsdApidForumCovid19","import React, { useContext, useState, } from 'react';\nimport { buildQuery } from '../../api/functions';\nimport { getThemeConfig, getContents, formatRegistrationFooter, capitalize, consoleLog } from '../../utils/functions';\nimport Form from '../Form/Form';\nimport MainContext from '../../context/MainContext';\nimport { ThemeContext } from 'styled-components';\nimport LightText from '../../ui/LightText/LightText';\n\nconst MSDHPVRegistrationForm = (props) => {\n const [defaultValues, setDefaultValues] = useState({});\n\n const themeContext = useContext(ThemeContext);\n const context = useContext(MainContext)\n\n const getEndpoint = () => {\n const query = buildQuery({});\n // const endpoint = `events/${event}/${CONTENTS}?${query}`;\n return [\n \"register\"\n ].join(\"/\") + `?${query}`;\n }\n\n const getValue = (name, type) => {\n const value = !window._.isEmpty(defaultValues) ? defaultValues[name] : null;\n\n switch (type) {\n case \"bool\":\n return value !== 0;\n default:\n return value || \"\";\n }\n };\n\n const onChange = (key, value) => {\n console.log(\"onChange\", key, value);\n switch (key) {\n case \"lang_id\":\n context.setLanguage(value)\n break\n case \"country_id\":\n context.setCountry(value)\n break\n case \"is_internal\":\n context.setInternal(value)\n break\n }\n setDefaultValues({\n ...defaultValues,\n [key]: value\n });\n }\n\n const onSubmit = (params) => {\n // context.setUser(params.me)\n // context.setToken(params.token, params.me)\n context.onRegistred(true)\n }\n\n const countries = [{\n id: null,\n label: \"-\",\n code: null\n }].concat(window._.get(context, \"event.countries\"))\n\n const allCountries = [{\n id: null,\n label: \"-\",\n code: null\n }].concat(window._.get(context, \"event.all_countries\"))\n\n let newRequiredTos = []\n let fields = 1\n ? [\n {\n elementType: \"hidden\",\n id: \"episodes\",\n name: \"episodes\",\n value: window._.map(props.openEpisodes, (item => item.id))//[window._.map(props.openEpisodes, (item => item.id))],\n },\n ]\n : [];\n\n if (context.event.has_internal) {\n // fields.push({\n // elementType: \"checkbox\",\n // id: \"is_internal\",\n // name: \"is_internal\",\n // // required: true,\n // // invalidText: \"Invalid error message.\",\n // label: window._.get(context, \"contents.internal\"),\n // value: context.internal\n // })\n fields.push({\n elementType: \"select\",\n id: \"is_internal\",\n name: \"is_internal\",\n required: true,\n // invalidText: \"Invalid error message.\",\n label: window._.get(context, \"contents.internal\") || \"Internal\",\n value: getValue(\"is_internal\") || \"0\",\n options: [{\n value: 0,//internal_false_value_label\n label: window._.get(context, \"contents.internalFalseValueLabel\") || \"External\",\n }, {\n value: 1,//internal_false_value_label\n label: window._.get(context, \"contents.internalTrueValueLabel\") || \"Internal\",\n }]\n })\n }\n\n if (!parseInt(context.internal)) {\n fields.push({\n elementType: \"select\",\n id: \"country_id\",\n name: \"country_id\",\n required: true,\n // invalidText: \"Invalid error message.\",\n label: window._.get(context, \"contents.country\") || \"Country\",\n placeholder: window._.get(context, \"contents.country\") || \"Country\",\n value: getValue(\"country_id\") || context.country,\n disabled: parseInt(context.internal),\n options: countries || []\n })\n fields.push({\n elementType: \"text\",\n id: \"istitution\",\n name: \"istitution\",\n required: true,\n label: window._.get(context, \"contents.istitution\") || \"Istitution\",\n placeholder: capitalize(window._.get(context, \"contents.istitution\")) || \"Istitution\",\n value: getValue(\"istitution\"),\n })\n fields.push({\n elementType: \"select\",\n id: \"specialty\",\n name: \"specialty\",\n required: true,\n // invalidText: \"Invalid error message.\",\n label: window._.get(context, \"contents.specialty\") || \"Specialty\",\n placeholder: window._.get(context, \"contents.specialty\") || \"Specialty\",\n value: getValue(\"specialty\") || \"Hematologist\",\n disabled: parseInt(context.internal),\n options: [\n {\n value: \"Oncologist\",\n label: \"Oncologist\"\n }, {\n value: \"Otolaryngologist\",\n label: \"Otolaryngologist\"\n }, {\n value: \"Virologist\",\n label: \"Virologist\"\n }, {\n value: \"Infectious diseases specialist\",\n label: \"Infectious diseases specialist\"\n }, {\n value: \"Public health physicians\",\n label: \"Public health physicians\"\n }, {\n value: \"Other\",\n label: \"Others (Please specify)\"\n }\n ] || []\n })\n if (getValue(\"specialty\") === \"Other\") {\n fields.push({\n elementType: \"text\",\n id: \"other_specialty\",\n name: \"other_specialty\",\n required: true,\n // invalidText: \"Invalid error message.\",\n label: window._.get(context, \"contents.otherSpecialty\") || \"Other specialty\",\n placeholder: window._.get(context, \"contents.otherSpecialty\") || \"Other specialty\",\n value: getValue(\"other_specialty\"),\n })\n }\n }\n else {\n fields.push({\n elementType: \"select\",\n id: \"country_id_of_work\",\n name: \"country_id_of_work\",\n required: true,\n // invalidText: \"Invalid error message.\",\n label: window._.get(context, \"contents.countryOfWork\") || \"Country of work\",\n placeholder: window._.get(context, \"contents.countryOfWork\") || \"Country of work\",\n value: getValue(\"country_id_of_work\") || context.country,\n disabled: !parseInt(context.internal),\n options: allCountries || []\n })\n fields.push({\n elementType: \"select\",\n id: \"department\",\n name: \"department\",\n required: true,\n // invalidText: \"Invalid error message.\",\n label: window._.get(context, \"contents.department\") || \"Department\",\n placeholder: window._.get(context, \"contents.department\") || \"Department\",\n value: getValue(\"department\") || \"MRL/GMSA\",\n options: [{\n value: \"MRL/GMSA\",\n label: \"MRL/GMSA\"\n }, {\n value: null,\n label: \"Other\"\n }]\n })\n if (getValue(\"department\") === \"Other\") {\n fields.push({\n elementType: \"text\",\n id: \"other_department\",\n name: \"other_department\",\n required: true,\n // invalidText: \"Invalid error message.\",\n label: window._.get(context, \"contents.otherDepartment\") || \"Other department\",\n placeholder: window._.get(context, \"contents.otherDepartment\") || \"Other department\",\n value: getValue(\"other_department\"),\n })\n }\n }\n\n const languagesList = window._.get(context, \"event.languages\") || []\n const languageField = languagesList.length > 1 ? {\n elementType: \"select\",\n id: \"lang_id\",\n name: \"lang_id\",\n required: true,\n // invalidText: \"Invalid error message.\",\n label: window._.get(context, \"contents.language\") || \"Language\",\n placeholder: window._.get(context, \"contents.language\") || \"Language\",\n value: getValue(\"lang_id\") || context.language,\n options: window._.get(context, \"event.languages\") || []\n } : {\n elementType: \"hidden\",\n id: \"lang_id\",\n name: \"episodes\",\n value: window._.get(languagesList[0], \"value\"),\n }\n\n fields.push(languageField)\n\n if (context.country || context.internal) {\n fields = fields.concat([\n {\n elementType: \"text\",\n id: \"firstname\",\n name: \"firstname\",\n required: true,\n // invalidText: \"Invalid error message.\",\n label: window._.get(context, \"contents.firstname\") || \"firstname\",\n placeholder: window._.get(context, \"contents.firstname\") || \"firstname\",\n value: getValue(\"firstname\"),\n },\n {\n elementType: \"text\",\n id: \"lastname\",\n name: \"lastname\",\n required: true,\n // invalidText: \"Invalid error message.\",\n label: window._.get(context, \"contents.lastname\") || \"lastname\",\n placeholder: window._.get(context, \"contents.lastname\") || \"lastname\",\n value: getValue(\"lastname\"),\n },\n {\n elementType: \"email\",\n id: \"email\",\n name: \"email\",\n required: true,\n // invalidText: \"Invalid error message.\",\n label: window._.get(context, \"contents.email\") || \"email\",\n placeholder: window._.get(context, \"contents.email\") || \"email\",\n value: getValue(\"email\"),\n },\n ])\n\n // fields.push({\n // elementType: \"checkbox\",\n // id: \"privacy_policy\",\n // name: \"privacy_policy\",\n // required: true,\n // // invalidText: \"Invalid error message.\",\n // label: `${getContents(context, \"iAgree\")} ${getContents(context, \"privacyPolicyLinkText\")}`,\n // value: getValue(\"privacy_policy\"),\n // section: \"footer\"\n // })\n // fields.push({\n // elementType: \"checkbox\",\n // id: \"cookie_policy\",\n // name: \"cookie_policy\",\n // required: true,\n // // invalidText: \"Invalid error message.\",\n // label: `${getContents(context, \"iAgree\")} ${getContents(context, \"cookiePolicyLinkText\")}`,\n // value: getValue(\"cookie_policy\"),\n // section: \"footer\"\n // })\n if (context.legals) {\n context.legals.forEach(item => {\n consoleLog(\"context.legals\", item.field_name)\n if (!item.field_name) {\n return false\n }\n fields.push({\n elementType: \"checkbox\",\n id: item.field_name,\n name: item.field_name,\n required: item.is_required,\n // invalidText: \"Invalid error message.\",\n // label: `${getContents(context, \"iAgree\")} ${getContents(context, \"cookiePolicyLinkText\")}`,\n labelHtml: item.checkbox_label,\n popupContent: item.content,\n value: getValue(item.field_name),\n section: \"footer\"\n })\n if (item.is_required) {\n newRequiredTos.push(item.field_name)\n // setRequiredTos([\n // ...requiredTos,\n // item.field_name\n // ])\n }\n })\n }\n }\n\n\n const logo = (getThemeConfig(context, \"registration-form.logo\")) ?\n !window._.isEmpty(themeContext.mediaRegistrationFormLogoDesktop) ? (\n \n

\n
\n ) : null : null\n\n const formHelp = (getThemeConfig(context, \"registration-form.footer\")) ? (\n \n \n ) : null\n\n const registrationHeader = getContents(context, \"registrationHeader\") ? (\n \n \n ) : null\n\n //newRequiredTos\n const disableSubmit = (reqs) => {\n let disable = false\n if (reqs) {\n reqs.forEach(item => {\n if (!getValue(item)) {\n disable = true\n }\n })\n }\n else {\n disable = true\n }\n\n // context.event.episodes.forEach(item => {\n // if (item.id === window._.get(context, \"episode.id\")) {\n // disable = !item.is_subscriptions_open\n // }\n // })\n return disable\n }\n\n return (\n \n {logo}\n {/* {registrationHeader} */}\n
\n );\n}\n\nexport default MSDHPVRegistrationForm","import React, { useContext, useState, } from 'react';\nimport { buildQuery } from '../../api/functions';\nimport { getThemeConfig, getContents, formatRegistrationFooter, capitalize, consoleLog } from '../../utils/functions';\nimport Form from '../Form/Form';\nimport MainContext from '../../context/MainContext';\nimport { ThemeContext } from 'styled-components';\nimport LightText from '../../ui/LightText/LightText';\nimport useThreeStatesInternal from '../../hooks/useThreeStatesInternal';\n\nconst MSDVaccinesAcademyRegistrationForm = (props) => {\n const [defaultValues, setDefaultValues] = useState({});\n\n const themeContext = useContext(ThemeContext);\n const context = useContext(MainContext)\n\n const {\n initial,\n onTouched,\n isInternalField\n } = useThreeStatesInternal()\n\n const getEndpoint = () => {\n const query = buildQuery({});\n // const endpoint = `events/${event}/${CONTENTS}?${query}`;\n return [\n \"register\"\n ].join(\"/\") + `?${query}`;\n }\n\n const getValue = (name, type) => {\n const value = !window._.isEmpty(defaultValues) ? defaultValues[name] : null;\n\n switch (type) {\n case \"bool\":\n return value !== 0;\n default:\n return value || \"\";\n }\n };\n\n const onChange = (key, value) => {\n console.log(\"onChange\", key, value);\n switch (key) {\n case \"lang_id\":\n context.setLanguage(value)\n break\n case \"country_id\":\n context.setCountry(value)\n break\n case \"is_internal\":\n context.setInternal(value)\n break\n }\n setDefaultValues({\n ...defaultValues,\n [key]: value\n });\n }\n\n const onSubmit = (params) => {\n // context.setUser(params.me)\n // context.setToken(params.token, params.me)\n context.onRegistred(true)\n }\n\n const countries = window._.get(context, \"event.countries\")\n const allCountries = window._.get(context, \"event.all_countries\")\n\n let newRequiredTos = []\n let fields = 1\n ? [\n {\n elementType: \"hidden\",\n id: \"episodes\",\n name: \"episodes\",\n value: window._.map(props.openEpisodes, (item => item.id))//[window._.map(props.openEpisodes, (item => item.id))],\n },\n ]\n : [];\n\n if (context.event.has_internal) {\n fields.push(isInternalField({\n context: context,\n getValue: (e) => getValue(e)\n }))\n }\n\n if (!initial) {\n if (!parseInt(context.internal)) {\n fields.push({\n elementType: \"select\",\n id: \"country_id\",\n name: \"country_id\",\n required: true,\n // invalidText: \"Invalid error message.\",\n label: window._.get(context, \"contents.country\") || \"Country\",\n placeholder: window._.get(context, \"contents.country\") || \"Country\",\n value: getValue(\"country_id\") || context.country,\n disabled: parseInt(context.internal),\n options: countries || []\n })\n fields.push({\n elementType: \"text\",\n id: \"istitution\",\n name: \"istitution\",\n required: true,\n label: window._.get(context, \"contents.istitution\") || \"Istitution\",\n placeholder: capitalize(window._.get(context, \"contents.istitution\")) || \"Istitution\",\n value: getValue(\"istitution\"),\n })\n fields.push({\n elementType: \"select\",\n id: \"specialty\",\n name: \"specialty\",\n required: true,\n // invalidText: \"Invalid error message.\",\n label: window._.get(context, \"contents.specialty\") || \"Specialty\",\n placeholder: window._.get(context, \"contents.specialty\") || \"Specialty\",\n value: getValue(\"specialty\"),\n disabled: parseInt(context.internal),\n options: [\n {\n value: \"Infectious Disease\",\n label: \"Infectious Disease\"\n }, {\n value: \"Public Health\",\n label: \"Public Health\"\n }, {\n value: \"General Physician/Practioner\",\n label: \"General Physician/Practioner\"\n }, {\n value: \"Geriatrician\",\n label: \"Geriatrician\"\n }, {\n value: \"Pediatrician\",\n label: \"Pediatrician\"\n }, {\n value: \"Gynaecologist/Obstetrician\",\n label: \"Gynaecologist/Obstetrician\"\n }, {\n value: \"Vaccinologist\",\n label: \"Vaccinologist\"\n }, {\n value: \"Internal Medicine\",\n label: \"Internal Medicine\"\n }, {\n value: \"Other\",\n label: \"Others (Please specify)\"\n }\n ] || []\n })\n if (getValue(\"specialty\") === \"Other\") {\n fields.push({\n elementType: \"text\",\n id: \"other_specialty\",\n name: \"other_specialty\",\n required: true,\n // invalidText: \"Invalid error message.\",\n label: window._.get(context, \"contents.otherSpecialty\") || \"Other specialty\",\n placeholder: window._.get(context, \"contents.otherSpecialty\") || \"Other specialty\",\n value: getValue(\"other_specialty\"),\n })\n }\n }\n else {\n fields.push({\n elementType: \"select\",\n id: \"country_id_of_work\",\n name: \"country_id_of_work\",\n required: true,\n // invalidText: \"Invalid error message.\",\n label: window._.get(context, \"contents.countryOfWork\") || \"Country of work\",\n placeholder: window._.get(context, \"contents.countryOfWork\") || \"Country of work\",\n value: getValue(\"country_id_of_work\") || context.country,\n disabled: !parseInt(context.internal),\n options: allCountries || []\n })\n fields.push({\n elementType: \"select\",\n id: \"department\",\n name: \"department\",\n required: true,\n // invalidText: \"Invalid error message.\",\n label: window._.get(context, \"contents.department\") || \"Department\",\n placeholder: window._.get(context, \"contents.department\") || \"Department\",\n value: getValue(\"department\"),\n options: [{\n value: \"MRL/GMSA\",\n label: \"MRL/GMSA\"\n }, {\n value: null,\n label: \"Other\"\n }]\n })\n if (getValue(\"department\") === \"Other\") {\n fields.push({\n elementType: \"text\",\n id: \"other_department\",\n name: \"other_department\",\n required: true,\n // invalidText: \"Invalid error message.\",\n label: window._.get(context, \"contents.otherDepartment\") || \"Other department\",\n placeholder: window._.get(context, \"contents.otherDepartment\") || \"Other department\",\n value: getValue(\"other_department\"),\n })\n }\n }\n }\n const languagesList = window._.get(context, \"event.languages\") || []\n const languageField = languagesList.length > 1 ? {\n elementType: \"select\",\n id: \"lang_id\",\n name: \"lang_id\",\n required: true,\n // invalidText: \"Invalid error message.\",\n label: window._.get(context, \"contents.language\") || \"Language\",\n placeholder: window._.get(context, \"contents.language\") || \"Language\",\n value: getValue(\"lang_id\") || context.language,\n options: window._.get(context, \"event.languages\") || []\n } : {\n elementType: \"hidden\",\n id: \"lang_id\",\n name: \"episodes\",\n value: window._.get(languagesList[0], \"value\"),\n }\n\n fields.push(languageField)\n\n fields = fields.concat([\n {\n elementType: \"text\",\n id: \"firstname\",\n name: \"firstname\",\n required: true,\n // invalidText: \"Invalid error message.\",\n label: window._.get(context, \"contents.firstname\") || \"firstname\",\n placeholder: window._.get(context, \"contents.firstname\") || \"firstname\",\n value: getValue(\"firstname\"),\n },\n {\n elementType: \"text\",\n id: \"lastname\",\n name: \"lastname\",\n required: true,\n // invalidText: \"Invalid error message.\",\n label: window._.get(context, \"contents.lastname\") || \"lastname\",\n placeholder: window._.get(context, \"contents.lastname\") || \"lastname\",\n value: getValue(\"lastname\"),\n },\n {\n elementType: \"email\",\n id: \"email\",\n name: \"email\",\n required: true,\n // invalidText: \"Invalid error message.\",\n label: window._.get(context, \"contents.email\") || \"email\",\n placeholder: window._.get(context, \"contents.email\") || \"email\",\n value: getValue(\"email\"),\n },\n ])\n\n if (context.legals) {\n context.legals.forEach(item => {\n consoleLog(\"context.legals\", item.field_name)\n if (!item.field_name) {\n return false\n }\n fields.push({\n elementType: \"checkbox\",\n id: item.field_name,\n name: item.field_name,\n required: item.is_required,\n // invalidText: \"Invalid error message.\",\n // label: `${getContents(context, \"iAgree\")} ${getContents(context, \"cookiePolicyLinkText\")}`,\n labelHtml: item.checkbox_label,\n popupContent: item.content,\n value: getValue(item.field_name),\n section: \"footer\"\n })\n if (item.is_required) {\n newRequiredTos.push(item.field_name)\n // setRequiredTos([\n // ...requiredTos,\n // item.field_name\n // ])\n }\n })\n }\n\n const logo = (getThemeConfig(context, \"registration-form.logo\")) ?\n !window._.isEmpty(themeContext.mediaRegistrationFormLogoDesktop) ? (\n \n

\n
\n ) : null : null\n\n const formHelp = (getThemeConfig(context, \"registration-form.footer\")) ? (\n \n \n ) : null\n\n const registrationHeader = getContents(context, \"registrationHeader\") ? (\n \n \n ) : null\n\n //newRequiredTos\n const disableSubmit = (reqs) => {\n let disable = false\n if (reqs) {\n reqs.forEach(item => {\n if (!getValue(item)) {\n disable = true\n }\n })\n }\n else {\n disable = true\n }\n\n // context.event.episodes.forEach(item => {\n // if (item.id === window._.get(context, \"episode.id\")) {\n // disable = !item.is_subscriptions_open\n // }\n // })\n return disable\n }\n\n return (\n \n {logo}\n {/* {registrationHeader} */}\n
\n );\n}\n\nexport default MSDVaccinesAcademyRegistrationForm","import React, { useContext, useState, } from 'react';\nimport { buildQuery } from '../../api/functions';\nimport { getThemeConfig, getContents, formatRegistrationFooter, capitalize, consoleLog } from '../../utils/functions';\nimport Form from '../Form/Form';\nimport MainContext from '../../context/MainContext';\nimport { ThemeContext } from 'styled-components';\nimport LightText from '../../ui/LightText/LightText';\nimport useThreeStatesInternal from '../../hooks/useThreeStatesInternal';\n\nconst MSDVaccinesAcademyRegistrationForm2022 = (props) => {\n const [defaultValues, setDefaultValues] = useState({});\n\n const {\n initial,\n onTouched,\n isInternalField\n } = useThreeStatesInternal()\n\n const themeContext = useContext(ThemeContext);\n const context = useContext(MainContext)\n\n const getEndpoint = () => {\n const query = buildQuery({});\n // const endpoint = `events/${event}/${CONTENTS}?${query}`;\n return [\n \"register\"\n ].join(\"/\") + `?${query}`;\n }\n\n const getValue = (name, type) => {\n const value = !window._.isEmpty(defaultValues) ? defaultValues[name] : null;\n\n switch (type) {\n case \"bool\":\n return value !== 0;\n default:\n return value || \"\";\n }\n };\n\n const onChange = (key, value) => {\n console.log(\"onChange\", key, value);\n switch (key) {\n case \"lang_id\":\n context.setLanguage(value)\n break\n case \"country_id\":\n context.setCountry(value)\n break\n case \"is_internal\":\n context.setInternal(value)\n break\n }\n setDefaultValues({\n ...defaultValues,\n [key]: value\n });\n }\n\n const onSubmit = (params) => {\n // context.setUser(params.me)\n // context.setToken(params.token, params.me)\n context.onRegistred(true)\n }\n\n const countries = window._.get(context, \"event.countries\")\n const allCountries = window._.get(context, \"event.all_countries\")\n\n let newRequiredTos = []\n let fields = 1\n ? [\n {\n elementType: \"hidden\",\n id: \"episodes\",\n name: \"episodes\",\n value: window._.map(props.openEpisodes, (item => item.id))//[window._.map(props.openEpisodes, (item => item.id))],\n },\n ]\n : [];\n\n if (context.event.has_internal) {\n fields.push(isInternalField({\n context: context,\n getValue: (e) => getValue(e)\n }))\n }\n\n if (!initial) {\n if (!parseInt(context.internal)) {\n fields.push({\n elementType: \"select\",\n id: \"country_id\",\n name: \"country_id\",\n required: true,\n // invalidText: \"Invalid error message.\",\n label: window._.get(context, \"contents.country\") || \"Country\",\n placeholder: window._.get(context, \"contents.country\") || \"Country\",\n value: getValue(\"country_id\") || context.country,\n disabled: parseInt(context.internal),\n options: countries || []\n })\n fields.push({\n elementType: \"text\",\n id: \"istitution\",\n name: \"istitution\",\n required: true,\n label: window._.get(context, \"contents.istitution\") || \"Istitution\",\n placeholder: capitalize(window._.get(context, \"contents.istitution\")) || \"Istitution\",\n value: getValue(\"istitution\"),\n })\n fields.push({\n elementType: \"select\",\n id: \"specialty\",\n name: \"specialty\",\n required: true,\n // invalidText: \"Invalid error message.\",\n label: window._.get(context, \"contents.specialty\") || \"Specialty\",\n placeholder: window._.get(context, \"contents.specialty\") || \"Specialty\",\n value: getValue(\"specialty\"),\n disabled: parseInt(context.internal),\n options: [{\n value: \"General Physician/Practioner\",\n label: \"General Physician/Practioner\"\n }, {\n value: \"Geriatrician\",\n label: \"Geriatrician\"\n }, {\n value: \"Gynaecologist/Obstetrician\",\n label: \"Gynaecologist/Obstetrician\"\n }, {\n value: \"Infectious Disease\",\n label: \"Infectious Disease\"\n }, {\n value: \"Internal Medicine\",\n label: \"Internal Medicine\"\n }, {\n value: \"Microbiologist\",\n label: \"Microbiologist\"\n }, {\n value: \"Nurse\",\n label: \"Nurse\"\n }, {\n value: \"Otolaryngologist\",\n label: \"Otolaryngologist\"\n }, {\n value: \"Pediatrician\",\n label: \"Pediatrician\"\n }, {\n value: \"Pharmacist\",\n label: \"Pharmacist\"\n }, {\n value: \"Public Health\",\n label: \"Public Health\"\n }, {\n value: \"Pulmonologist\",\n label: \"Pulmonologist\"\n }, {\n value: \"Vaccinologist\",\n label: \"Vaccinologist\"\n }, {\n value: \"Virologist\",\n label: \"Virologist\"\n }, {\n value: \"Other\",\n label: \"Others (Please specify)\"\n }\n ] || []\n })\n if (getValue(\"specialty\") === \"Other\") {\n fields.push({\n elementType: \"text\",\n id: \"other_specialty\",\n name: \"other_specialty\",\n required: true,\n // invalidText: \"Invalid error message.\",\n label: window._.get(context, \"contents.otherSpecialty\") || \"Other specialty\",\n placeholder: window._.get(context, \"contents.otherSpecialty\") || \"Other specialty\",\n value: getValue(\"other_specialty\"),\n })\n }\n }\n else {\n fields.push({\n elementType: \"select\",\n id: \"country_id_of_work\",\n name: \"country_id_of_work\",\n required: true,\n // invalidText: \"Invalid error message.\",\n label: window._.get(context, \"contents.countryOfWork\") || \"Country of work\",\n placeholder: window._.get(context, \"contents.countryOfWork\") || \"Country of work\",\n value: getValue(\"country_id_of_work\") || context.country,\n disabled: !parseInt(context.internal),\n options: allCountries || []\n })\n fields.push({\n elementType: \"select\",\n id: \"department\",\n name: \"department\",\n required: true,\n // invalidText: \"Invalid error message.\",\n label: window._.get(context, \"contents.department\") || \"Department\",\n placeholder: window._.get(context, \"contents.department\") || \"Department\",\n value: getValue(\"department\"),\n options: [{\n value: \"MRL/GMSA\",\n label: \"MRL/GMSA\"\n }, {\n value: null,\n label: \"Other\"\n }]\n })\n if (getValue(\"department\") === \"Other\") {\n fields.push({\n elementType: \"text\",\n id: \"other_department\",\n name: \"other_department\",\n required: true,\n // invalidText: \"Invalid error message.\",\n label: window._.get(context, \"contents.otherDepartment\") || \"Other department\",\n placeholder: window._.get(context, \"contents.otherDepartment\") || \"Other department\",\n value: getValue(\"other_department\"),\n })\n }\n }\n }\n\n const languagesList = window._.get(context, \"event.languages\") || []\n const languageField = languagesList.length > 1 ? {\n elementType: \"select\",\n id: \"lang_id\",\n name: \"lang_id\",\n required: true,\n // invalidText: \"Invalid error message.\",\n label: window._.get(context, \"contents.language\") || \"Language\",\n placeholder: window._.get(context, \"contents.language\") || \"Language\",\n value: getValue(\"lang_id\") || context.language,\n options: window._.get(context, \"event.languages\") || []\n } : {\n elementType: \"hidden\",\n id: \"lang_id\",\n name: \"episodes\",\n value: window._.get(languagesList[0], \"value\"),\n }\n\n fields.push(languageField)\n\n fields = fields.concat([\n {\n elementType: \"text\",\n id: \"firstname\",\n name: \"firstname\",\n required: true,\n // invalidText: \"Invalid error message.\",\n label: window._.get(context, \"contents.firstname\") || \"firstname\",\n placeholder: window._.get(context, \"contents.firstname\") || \"firstname\",\n value: getValue(\"firstname\"),\n },\n {\n elementType: \"text\",\n id: \"lastname\",\n name: \"lastname\",\n required: true,\n // invalidText: \"Invalid error message.\",\n label: window._.get(context, \"contents.lastname\") || \"lastname\",\n placeholder: window._.get(context, \"contents.lastname\") || \"lastname\",\n value: getValue(\"lastname\"),\n },\n {\n elementType: \"email\",\n id: \"email\",\n name: \"email\",\n required: true,\n // invalidText: \"Invalid error message.\",\n label: window._.get(context, \"contents.email\") || \"email\",\n placeholder: window._.get(context, \"contents.email\") || \"email\",\n value: getValue(\"email\"),\n },\n ])\n\n if (context.legals) {\n context.legals.forEach(item => {\n consoleLog(\"context.legals\", item.field_name)\n if (!item.field_name) {\n return false\n }\n fields.push({\n elementType: \"checkbox\",\n id: item.field_name,\n name: item.field_name,\n required: item.is_required,\n // invalidText: \"Invalid error message.\",\n // label: `${getContents(context, \"iAgree\")} ${getContents(context, \"cookiePolicyLinkText\")}`,\n labelHtml: item.checkbox_label,\n popupContent: item.content,\n value: getValue(item.field_name),\n section: \"footer\"\n })\n if (item.is_required) {\n newRequiredTos.push(item.field_name)\n // setRequiredTos([\n // ...requiredTos,\n // item.field_name\n // ])\n }\n })\n }\n\n const logo = (getThemeConfig(context, \"registration-form.logo\")) ?\n !window._.isEmpty(themeContext.mediaRegistrationFormLogoDesktop) ? (\n \n

\n
\n ) : null : null\n\n const formHelp = (getThemeConfig(context, \"registration-form.footer\")) ? (\n \n \n ) : null\n\n const registrationHeader = getContents(context, \"registrationHeader\") ? (\n \n \n ) : null\n\n //newRequiredTos\n const disableSubmit = (reqs) => {\n let disable = false\n if (reqs) {\n reqs.forEach(item => {\n if (!getValue(item)) {\n disable = true\n }\n })\n }\n else {\n disable = true\n }\n\n // context.event.episodes.forEach(item => {\n // if (item.id === window._.get(context, \"episode.id\")) {\n // disable = !item.is_subscriptions_open\n // }\n // })\n return disable\n }\n\n return (\n \n {logo}\n {/* {registrationHeader} */}\n
\n );\n}\n\nexport default MSDVaccinesAcademyRegistrationForm2022","import React, { useContext, useState, } from 'react';\nimport { buildQuery } from '../../api/functions';\nimport { getThemeConfig, getContents, formatRegistrationFooter } from '../../utils/functions';\nimport Form from '../Form/Form';\nimport MainContext from '../../context/MainContext';\nimport { ThemeContext } from 'styled-components';\nimport LightText from '../../ui/LightText/LightText';\n\nconst RegistrationForm = (props) => {\n const [defaultValues, setDefaultValues] = useState({});\n\n const themeContext = useContext(ThemeContext);\n const context = useContext(MainContext)\n\n const getEndpoint = () => {\n const query = buildQuery({});\n // const endpoint = `events/${event}/${CONTENTS}?${query}`;\n return [\n \"register\"\n ].join(\"/\") + `?${query}`;\n }\n\n const getValue = (name, type) => {\n const value = !window._.isEmpty(defaultValues) ? defaultValues[name] : null;\n switch (type) {\n case \"bool\":\n return value !== 0;\n default:\n return value || \"\";\n }\n };\n\n const onChange = (key, value) => {\n console.log(\"onChange\", key, value);\n switch (key) {\n case \"lang_id\":\n context.setLanguage(value)\n break\n case \"country_id\":\n context.setCountry(value)\n break\n case \"is_internal\":\n context.setInternal(value)\n break\n }\n setDefaultValues({\n ...defaultValues,\n [key]: value\n });\n }\n\n const onSubmit = (params) => {\n // context.setUser(params.me)\n // context.setToken(params.token, params.me)\n context.onRegistred(true)\n }\n\n const countries = [{\n id: null,\n label: \"-\",\n code: null\n }].concat(window._.get(context, \"event.countries\"))\n\n let fields = 1\n ? [\n {\n elementType: \"hidden\",\n id: \"episodes\",\n name: \"episodes\",\n value: [window._.get(context, \"episode.id\")],\n },\n ]\n : [];\n\n if (context.event.has_internal) {\n fields.push({\n elementType: \"checkbox\",\n id: \"is_internal\",\n name: \"is_internal\",\n // required: true,\n // invalidText: \"Invalid error message.\",\n label: window._.get(context, \"contents.internal\"),\n value: context.internal\n })\n }\n\n if (!context.internal) {\n fields.push({\n elementType: \"select\",\n id: \"country_id\",\n name: \"country_id\",\n required: true,\n // invalidText: \"Invalid error message.\",\n label: window._.get(context, \"contents.country\"),\n placeholder: window._.get(context, \"contents.country\"),\n value: getValue(\"country_id\") || context.country,\n disabled: context.internal,\n options: countries || []\n })\n }\n\n fields.push({\n elementType: \"select\",\n id: \"lang_id\",\n name: \"lang_id\",\n required: true,\n // invalidText: \"Invalid error message.\",\n label: window._.get(context, \"contents.language\"),\n placeholder: window._.get(context, \"contents.language\"),\n value: getValue(\"lang_id\") || context.language,\n options: window._.get(context, \"event.languages\") || []\n })\n\n if (context.country) {\n fields = fields.concat([\n {\n elementType: \"text\",\n id: \"firstname\",\n name: \"firstname\",\n required: true,\n // invalidText: \"Invalid error message.\",\n label: window._.get(context, \"contents.firstname\"),\n placeholder: window._.get(context, \"contents.firstname\"),\n value: getValue(\"firstname\"),\n },\n {\n elementType: \"text\",\n id: \"lastname\",\n name: \"lastname\",\n required: true,\n // invalidText: \"Invalid error message.\",\n label: window._.get(context, \"contents.lastname\"),\n placeholder: window._.get(context, \"contents.lastname\"),\n value: getValue(\"lastname\"),\n },\n {\n elementType: \"email\",\n id: \"email\",\n name: \"email\",\n required: true,\n // invalidText: \"Invalid error message.\",\n label: window._.get(context, \"contents.email\"),\n placeholder: window._.get(context, \"contents.email\"),\n value: getValue(\"email\"),\n },\n ])\n\n // fields.push({\n // elementType: \"checkbox\",\n // id: \"privacy_policy\",\n // name: \"privacy_policy\",\n // required: true,\n // // invalidText: \"Invalid error message.\",\n // label: `${getContents(context, \"iAgree\")} ${getContents(context, \"privacyPolicyLinkText\")}`,\n // value: getValue(\"privacy_policy\"),\n // section: \"footer\"\n // })\n // fields.push({\n // elementType: \"checkbox\",\n // id: \"cookie_policy\",\n // name: \"cookie_policy\",\n // required: true,\n // // invalidText: \"Invalid error message.\",\n // label: `${getContents(context, \"iAgree\")} ${getContents(context, \"cookiePolicyLinkText\")}`,\n // value: getValue(\"cookie_policy\"),\n // section: \"footer\"\n // })\n if (context.legals) {\n context.legals.forEach(item => {\n console.log(\"context.legals\", item.field_name)\n fields.push({\n elementType: \"checkbox\",\n id: item.field_name,\n name: item.field_name,\n required: item.is_required,\n // invalidText: \"Invalid error message.\",\n // label: `${getContents(context, \"iAgree\")} ${getContents(context, \"cookiePolicyLinkText\")}`,\n labelHtml: item.checkbox_label,\n popupContent: item.content,\n value: getValue(item.field_name),\n section: \"footer\"\n })\n })\n }\n }\n\n\n const logo = (getThemeConfig(context, \"registration-form.logo\")) ?\n !window._.isEmpty(themeContext.registrationFormLogoDesktop) ? (\n \n

\n
\n ) : null : null\n\n const formHelp = (getThemeConfig(context, \"registration-form.footer\")) ? (\n \n \n ) : null\n\n const registrationHeader = getContents(context, \"registrationHeader\") ? (\n \n \n ) : null\n\n const disableSubmit = () => {\n let disable = true\n context.event.episodes.forEach(item => {\n if (item.id === window._.get(context, \"episode.id\")) {\n disable = !item.is_subscriptions_open\n }\n })\n return disable\n }\n\n return (\n \n {logo}\n {/* {registrationHeader} */}\n
\n );\n}\n\nexport default RegistrationForm","/* eslint-disable default-case */\nimport React, { useContext, useState, } from 'react';\nimport { buildQuery } from '../../api/functions';\nimport { getThemeConfig, getContents, capitalize, consoleLog } from '../../utils/functions';\nimport Form from '../Form/Form';\nimport MainContext from '../../context/MainContext';\nimport { ThemeContext } from 'styled-components';\nimport useThreeStatesInternal from '../../hooks/useThreeStatesInternal';\n\nconst SpecialRegistrationForm = (props) => {\n const [defaultValues, setDefaultValues] = useState({});\n\n const {\n initial,\n onTouched,\n isInternalField\n } = useThreeStatesInternal()\n\n const themeContext = useContext(ThemeContext);\n const context = useContext(MainContext)\n\n const getEndpoint = () => {\n const query = buildQuery({});\n return [\n \"register\"\n ].join(\"/\") + `?${query}`;\n }\n\n const getValue = (name, type) => {\n const value = !window._.isEmpty(defaultValues) ? defaultValues[name] : null;\n\n switch (type) {\n case \"bool\":\n return value !== 0;\n default:\n return value || \"\";\n }\n };\n\n const onChange = (key, value) => {\n console.log(\"onChange\", key, value);\n switch (key) {\n case \"lang_id\":\n context.setLanguage(value)\n break\n case \"country_id\":\n context.setCountry(value)\n break\n case \"is_internal\":\n context.setInternal(value)\n break\n }\n setDefaultValues({\n ...defaultValues,\n [key]: value\n });\n }\n\n const onSubmit = (params) => {\n // context.setUser(params.me)\n // context.setToken(params.token, params.me)\n context.onRegistred(true)\n }\n\n const countries = window._.get(context, \"event.countries\")\n const allCountries = window._.get(context, \"event.all_countries\")\n\n let newRequiredTos = []\n let fields = 1\n ? [\n {\n elementType: \"hidden\",\n id: \"episodes\",\n name: \"episodes\",\n value: window._.map(props.openEpisodes, (item => item.id))//[window._.map(props.openEpisodes, (item => item.id))],\n },\n ]\n : [];\n\n if (context.event.has_internal) {\n fields.push(isInternalField({\n context: context,\n getValue: (e) => getValue(e)\n }))\n }\n\n if (!initial) {\n if (!parseInt(context.internal)) {\n fields.push({\n elementType: \"select\",\n id: \"country_id\",\n name: \"country_id\",\n required: true,\n // invalidText: \"Invalid error message.\",\n label: window._.get(context, \"contents.country\") || \"Country\",\n placeholder: window._.get(context, \"contents.country\") || \"Country\",\n value: getValue(\"country_id\") || context.country,\n disabled: parseInt(context.internal),\n options: countries || []\n })\n fields.push({\n elementType: \"text\",\n id: \"istitution\",\n name: \"istitution\",\n required: true,\n label: window._.get(context, \"contents.istitution\") || \"Istitution\",\n placeholder: capitalize(window._.get(context, \"contents.istitution\")) || \"Istitution\",\n value: getValue(\"istitution\"),\n })\n fields.push({\n elementType: \"select\",\n id: \"specialty\",\n name: \"specialty\",\n required: true,\n // invalidText: \"Invalid error message.\",\n label: window._.get(context, \"contents.specialty\") || \"Specialty\",\n placeholder: window._.get(context, \"contents.specialty\") || \"Specialty\",\n value: getValue(\"specialty\"),\n disabled: parseInt(context.internal),\n options: [\n {\n value: \"Hematologist\",\n label: \"Hematologist\"\n }, {\n value: \"Infection diseases specialist\",\n label: \"Infection diseases specialist\"\n }, {\n value: \"Pharmacist\",\n label: \"Pharmacist\"\n }, {\n value: \"Nurse\",\n label: \"Nurse\"\n }, {\n value: \"Virologist\",\n label: \"Virologist\"\n }, {\n value: \"Other\",\n label: \"Others (Please specify)\"\n }\n ] || []\n })\n if (getValue(\"specialty\") === \"Other\") {\n fields.push({\n elementType: \"text\",\n id: \"other_specialty\",\n name: \"other_specialty\",\n required: true,\n // invalidText: \"Invalid error message.\",\n label: window._.get(context, \"contents.otherSpecialty\") || \"Other specialty\",\n placeholder: window._.get(context, \"contents.otherSpecialty\") || \"Other specialty\",\n value: getValue(\"other_specialty\"),\n })\n }\n }\n else {\n fields.push({\n elementType: \"select\",\n id: \"country_id_of_work\",\n name: \"country_id_of_work\",\n required: true,\n // invalidText: \"Invalid error message.\",\n label: window._.get(context, \"contents.countryOfWork\") || \"Country of work\",\n placeholder: window._.get(context, \"contents.countryOfWork\") || \"Country of work\",\n value: getValue(\"country_id_of_work\") || context.country,\n disabled: !parseInt(context.internal),\n options: allCountries || []\n })\n fields.push({\n elementType: \"select\",\n id: \"department\",\n name: \"department\",\n required: true,\n // invalidText: \"Invalid error message.\",\n label: window._.get(context, \"contents.department\") || \"Department\",\n placeholder: window._.get(context, \"contents.department\") || \"Department\",\n value: getValue(\"department\"),\n options: [{\n value: \"MRL/GMSA\",\n label: \"MRL/GMSA\"\n }, {\n value: null,\n label: \"Other\"\n }]\n })\n if (getValue(\"department\") === \"Other\") {\n fields.push({\n elementType: \"text\",\n id: \"other_department\",\n name: \"other_department\",\n required: true,\n // invalidText: \"Invalid error message.\",\n label: window._.get(context, \"contents.otherDepartment\") || \"Other department\",\n placeholder: window._.get(context, \"contents.otherDepartment\") || \"Other department\",\n value: getValue(\"other_department\"),\n })\n }\n }\n }\n\n const languagesList = window._.get(context, \"event.languages\") || []\n const languageField = languagesList.length > 1 ? {\n elementType: \"select\",\n id: \"lang_id\",\n name: \"lang_id\",\n required: true,\n // invalidText: \"Invalid error message.\",\n label: window._.get(context, \"contents.language\") || \"Language\",\n placeholder: window._.get(context, \"contents.language\") || \"Language\",\n value: getValue(\"lang_id\") || context.language,\n options: window._.get(context, \"event.languages\") || []\n } : {\n elementType: \"hidden\",\n id: \"lang_id\",\n name: \"episodes\",\n value: window._.get(languagesList[0], \"value\"),\n }\n\n fields.push(languageField)\n\n fields = fields.concat([\n {\n elementType: \"text\",\n id: \"firstname\",\n name: \"firstname\",\n required: true,\n // invalidText: \"Invalid error message.\",\n label: window._.get(context, \"contents.firstname\") || \"firstname\",\n placeholder: window._.get(context, \"contents.firstname\") || \"firstname\",\n value: getValue(\"firstname\"),\n },\n {\n elementType: \"text\",\n id: \"lastname\",\n name: \"lastname\",\n required: true,\n // invalidText: \"Invalid error message.\",\n label: window._.get(context, \"contents.lastname\") || \"lastname\",\n placeholder: window._.get(context, \"contents.lastname\") || \"lastname\",\n value: getValue(\"lastname\"),\n },\n {\n elementType: \"email\",\n id: \"email\",\n name: \"email\",\n required: true,\n // invalidText: \"Invalid error message.\",\n label: window._.get(context, \"contents.email\") || \"email\",\n placeholder: window._.get(context, \"contents.email\") || \"email\",\n value: getValue(\"email\"),\n },\n ])\n\n // fields.push({\n // elementType: \"checkbox\",\n // id: \"privacy_policy\",\n // name: \"privacy_policy\",\n // required: true,\n // // invalidText: \"Invalid error message.\",\n // label: `${getContents(context, \"iAgree\")} ${getContents(context, \"privacyPolicyLinkText\")}`,\n // value: getValue(\"privacy_policy\"),\n // section: \"footer\"\n // })\n // fields.push({\n // elementType: \"checkbox\",\n // id: \"cookie_policy\",\n // name: \"cookie_policy\",\n // required: true,\n // // invalidText: \"Invalid error message.\",\n // label: `${getContents(context, \"iAgree\")} ${getContents(context, \"cookiePolicyLinkText\")}`,\n // value: getValue(\"cookie_policy\"),\n // section: \"footer\"\n // })\n if (context.legals) {\n context.legals.forEach(item => {\n consoleLog(\"context.legals\", item.field_name)\n if (!item.field_name) {\n return false\n }\n fields.push({\n elementType: \"checkbox\",\n id: item.field_name,\n name: item.field_name,\n required: item.is_required,\n // invalidText: \"Invalid error message.\",\n // label: `${getContents(context, \"iAgree\")} ${getContents(context, \"cookiePolicyLinkText\")}`,\n labelHtml: item.checkbox_label,\n popupContent: item.content,\n value: getValue(item.field_name),\n section: \"footer\"\n })\n if (item.is_required) {\n newRequiredTos.push(item.field_name)\n // setRequiredTos([\n // ...requiredTos,\n // item.field_name\n // ])\n }\n })\n }\n\n\n const logo = (getThemeConfig(context, \"registration-form.logo\")) ?\n !window._.isEmpty(themeContext.mediaRegistrationFormLogoDesktop) ? (\n \n

\n
\n ) : null : null\n\n //newRequiredTos\n const disableSubmit = (reqs) => {\n let disable = false\n if (reqs) {\n reqs.forEach(item => {\n if (!getValue(item)) {\n disable = true\n }\n })\n }\n else {\n disable = true\n }\n\n // context.event.episodes.forEach(item => {\n // if (item.id === window._.get(context, \"episode.id\")) {\n // disable = !item.is_subscriptions_open\n // }\n // })\n return disable\n }\n\n return (\n \n {logo}\n {/* {registrationHeader} */}\n
\n );\n}\n\nexport default SpecialRegistrationForm","import { useContext } from 'react';\n\nimport MainContext from '../../../context/MainContext';\nimport useRegistrtionForm from '../../../hooks/useRegistrtionForm';\nimport { capitalize } from '../../../utils/functions';\n\nconst ApLungCancer2023Form = (props) => {\n const context = useContext(MainContext)\n\n const {\n output,\n countries,\n allCountries,\n getValue,\n getLegals,\n } = useRegistrtionForm()\n\n let fields = 1\n ? [\n {\n elementType: \"hidden\",\n id: \"episodes\",\n name: \"episodes\",\n value: window._.map(props.openEpisodes, (item => item.id))//[window._.map(props.openEpisodes, (item => item.id))],\n },\n ]\n : [];\n\n\n const languagesList = window._.get(context, \"event.languages\") || []\n const languageField = languagesList.length > 1 ? {\n elementType: \"select\",\n id: \"lang_id\",\n name: \"lang_id\",\n required: true,\n // invalidText: \"Invalid error message.\",\n label: window._.get(context, \"contents.language\") || \"Language\",\n placeholder: window._.get(context, \"contents.language\") || \"Language\",\n value: getValue(\"lang_id\") || context.language,\n options: window._.get(context, \"event.languages\") || []\n } : {\n elementType: \"hidden\",\n id: \"lang_id\",\n name: \"episodes\",\n value: window._.get(languagesList[0], \"value\"),\n }\n\n fields.push(languageField)\n\n const getSpecialtyOptions = () => {\n const values = [\n \"Clinical Oncologist\",\n \"Medical Oncologist\",\n \"Pulmonologist\",\n \"Radiation Oncologist\",\n \"Toracic Surgeon\",\n \"Others\"\n ]\n\n const specialtiesTranslations = {\n \"en\": {\n \"Clinical Oncologist\": \"Clinical Oncologist\",\n \"Medical Oncologist\": \"Medical Oncologist\",\n \"Pulmonologist\": \"Pulmonologist\",\n \"Radiation Oncologist\": \"Radiation Oncologist\",\n \"Toracic Surgeon\": \"Toracic Surgeon\",\n \"Others\": \"Others\"\n }\n }\n\n return values.map(item => {\n return {\n value: item,\n label: window._.get(specialtiesTranslations, `${getValue(\"lang_id\")}.${item}`) || window._.get(specialtiesTranslations, `en.${item}`)\n }\n })\n }\n\n if (context.event.has_internal) {\n fields.push({\n elementType: \"select\",\n id: \"is_internal\",\n name: \"is_internal\",\n required: true,\n // invalidText: \"Invalid error message.\",\n label: window._.get(context, \"contents.internal\") || \"Internal\",\n value: getValue(\"is_internal\") || \"0\",\n options: [{\n value: 0,//internal_false_value_label\n label: window._.get(context, \"contents.internalFalseValueLabel\") || \"External\",\n }, {\n value: 1,//internal_false_value_label\n label: window._.get(context, \"contents.internalTrueValueLabel\") || \"Internal\",\n }]\n })\n }\n\n\n // if (context.country || context.internal) {\n fields = fields.concat([\n {\n elementType: \"text\",\n id: \"firstname\",\n name: \"firstname\",\n required: true,\n // invalidText: \"Invalid error message.\",\n label: window._.get(context, \"contents.firstname\") || \"firstname\",\n placeholder: window._.get(context, \"contents.firstname\") || \"firstname\",\n value: getValue(\"firstname\"),\n },\n {\n elementType: \"text\",\n id: \"lastname\",\n name: \"lastname\",\n required: true,\n // invalidText: \"Invalid error message.\",\n label: window._.get(context, \"contents.lastname\") || \"lastname\",\n placeholder: window._.get(context, \"contents.lastname\") || \"lastname\",\n value: getValue(\"lastname\"),\n },\n ])\n\n if (!parseInt(context.internal)) {\n fields = fields.concat([\n {\n elementType: \"select\",\n id: \"country_id\",\n name: \"country_id\",\n required: true,\n // invalidText: \"Invalid error message.\",\n label: window._.get(context, \"contents.country\") || \"Country\",\n placeholder: window._.get(context, \"contents.country\") || \"Country\",\n value: getValue(\"country_id\") || context.country,\n disabled: parseInt(context.internal),\n options: countries || []\n },\n {\n elementType: \"text\",\n id: \"istitution\",\n name: \"istitution\",\n required: true,\n label: window._.get(context, \"contents.istitution\") || \"Istitution\",\n placeholder: capitalize(window._.get(context, \"contents.istitution\")) || \"Istitution\",\n value: getValue(\"istitution\"),\n },\n {\n elementType: \"select\",\n id: \"specialty\",\n name: \"specialty\",\n required: true,\n // invalidText: \"Invalid error message.\",\n label: window._.get(context, \"contents.specialty\") || \"Specialty\",\n placeholder: window._.get(context, \"contents.specialty\") || \"Specialty\",\n value: getValue(\"specialty\") || \"Hematologist\",\n // disabled: parseInt(context.internal),\n options: getSpecialtyOptions()\n }]\n )\n if (getValue(\"specialty\") === \"Others\") {\n fields.push({\n elementType: \"text\",\n id: \"other_specialty\",\n name: \"other_specialty\",\n required: true,\n // invalidText: \"Invalid error message.\",\n label: window._.get(context, \"contents.otherSpecialty\") || \"Other specialty\",\n placeholder: window._.get(context, \"contents.otherSpecialty\") || \"Other specialty\",\n value: getValue(\"other_specialty\"),\n })\n }\n }\n else {\n fields = fields.concat([\n {\n elementType: \"select\",\n id: \"country_id_of_work\",\n name: \"country_id_of_work\",\n required: true,\n // invalidText: \"Invalid error message.\",\n label: window._.get(context, \"contents.countryOfWork\") || \"Country of work\",\n placeholder: window._.get(context, \"contents.countryOfWork\") || \"Country of work\",\n value: getValue(\"country_id_of_work\") || context.country,\n disabled: !parseInt(context.internal),\n options: allCountries || []\n },\n {\n elementType: \"select\",\n id: \"department\",\n name: \"department\",\n required: true,\n // invalidText: \"Invalid error message.\",\n label: window._.get(context, \"contents.department\") || \"Department\",\n placeholder: window._.get(context, \"contents.department\") || \"Department\",\n value: getValue(\"department\") || \"MRL/GMSA\",\n options: [{\n value: \"MRL/GMSA\",\n label: \"MRL/GMSA\"\n }, {\n value: null,\n label: \"Other\"\n }]\n }]\n )\n if (getValue(\"department\") === \"Other\") {\n fields.push({\n elementType: \"text\",\n id: \"other_department\",\n name: \"other_department\",\n required: true,\n label: window._.get(context, \"contents.otherDepartment\") || \"Other department\",\n placeholder: window._.get(context, \"contents.otherDepartment\") || \"Other department\",\n value: getValue(\"other_department\"),\n })\n }\n }\n\n fields.push(\n {\n elementType: \"email\",\n id: \"email\",\n name: \"email\",\n required: true,\n // invalidText: \"Invalid error message.\",\n label: window._.get(context, \"contents.email\") || \"email\",\n placeholder: window._.get(context, \"contents.email\") || \"email\",\n value: getValue(\"email\"),\n }\n )\n\n if (context.legals) {\n fields = fields.concat(getLegals())\n }\n // }\n\n return output(fields)\n}\n\nexport default ApLungCancer2023Form","import React, { useEffect, useState } from \"react\"\nimport AdamModal from \"../AdamModal/AdamModal\";\nimport Button from \"../../ui/Button/Button\";\nimport Container from \"../../ui/Container/Container\";\nimport Row from \"../../ui/Row/Row\";\n\nconst StreamChangedModal = ({ onClose, onConfirm, content, okButtonText, koButtonText, ...props }) => {\n const [modalOpen, setModalOpen] = useState(false)\n\n useEffect(() => {\n setModalOpen(props.open)\n }, [props.open])\n\n const grid = (\n \n \n \n {content || \"Are you sure?\"}\n
\n
\n\n \n \n \n \n
\n
\n \n )\n\n const modal = (\n \n )\n\n return modal\n}\n\nexport default StreamChangedModal","import { useContext, useEffect } from 'react';\n\nimport MainContext from '../../../context/MainContext';\nimport useRegistrtionForm from '../../../hooks/useRegistrtionForm';\nimport { capitalize, consoleLog } from '../../../utils/functions';\nimport StreamChangedModal from '../../StreamChangedModal/StreamChangedModal';\n\nconst ApLungCancer2023FormVer2 = (props) => {\n const context = useContext(MainContext)\n\n const {\n output,\n countries,\n allCountries,\n previousFormValues,\n getValue,\n getLegals,\n updateValues\n } = useRegistrtionForm()\n\n useEffect(() => {\n consoleLog(\"selectedStreamId\", context.selectedStreamId, previousFormValues.stream_id)\n if (context.selectedStreamId !== previousFormValues.stream_id) {\n context.openStreamChangedModal()\n }\n }, [context.selectedStreamId])\n\n let fields = 1\n ? [\n {\n elementType: \"hidden\",\n id: \"episodes\",\n name: \"episodes\",\n value: window._.map(props.openEpisodes, (item => item.id))//[window._.map(props.openEpisodes, (item => item.id))],\n },\n ]\n : [];\n\n const languagesList = window._.get(context, \"event.languages\") || []\n const languageField = languagesList.length > 1 ? {\n elementType: \"select\",\n id: \"lang_id\",\n name: \"lang_id\",\n required: true,\n // invalidText: \"Invalid error message.\",\n label: window._.get(context, \"contents.language\") || \"Language\",\n placeholder: window._.get(context, \"contents.language\") || \"Language\",\n value: getValue(\"lang_id\") || context.language,\n options: window._.get(context, \"event.languages\") || []\n } : {\n elementType: \"hidden\",\n id: \"lang_id\",\n name: \"episodes\",\n value: window._.get(languagesList[0], \"value\"),\n }\n\n fields.push(languageField)\n\n const getSpecialtyOptions = () => {\n const values = [\n \"Clinical Oncologist\",\n \"Medical Oncologist\",\n \"Pulmonologist\",\n \"Radiation Oncologist\",\n \"Toracic Surgeon\",\n \"Others\"\n ]\n\n const specialtiesTranslations = {\n \"en\": {\n \"Clinical Oncologist\": \"Clinical Oncologist\",\n \"Medical Oncologist\": \"Medical Oncologist\",\n \"Pulmonologist\": \"Pulmonologist\",\n \"Radiation Oncologist\": \"Radiation Oncologist\",\n \"Toracic Surgeon\": \"Toracic Surgeon\",\n \"Others\": \"Others\"\n }\n }\n\n return values.map(item => {\n return {\n value: item,\n label: window._.get(specialtiesTranslations, `${getValue(\"lang_id\")}.${item}`) || window._.get(specialtiesTranslations, `en.${item}`)\n }\n })\n }\n\n if (context.event.has_internal) {\n fields.push({\n elementType: \"select\",\n id: \"is_internal\",\n name: \"is_internal\",\n required: true,\n // invalidText: \"Invalid error message.\",\n label: window._.get(context, \"contents.internal\") || \"Internal\",\n value: getValue(\"is_internal\") || \"0\",\n options: [{\n value: 0,//internal_false_value_label\n label: window._.get(context, \"contents.internalFalseValueLabel\") || \"External\",\n }, {\n value: 1,//internal_false_value_label\n label: window._.get(context, \"contents.internalTrueValueLabel\") || \"Internal\",\n }]\n })\n }\n\n // if (context.country || context.internal) {\n fields = fields.concat([\n {\n elementType: \"text\",\n id: \"firstname\",\n name: \"firstname\",\n required: true,\n // invalidText: \"Invalid error message.\",\n label: window._.get(context, \"contents.firstname\") || \"firstname\",\n placeholder: window._.get(context, \"contents.firstname\") || \"firstname\",\n value: getValue(\"firstname\"),\n },\n {\n elementType: \"text\",\n id: \"lastname\",\n name: \"lastname\",\n required: true,\n // invalidText: \"Invalid error message.\",\n label: window._.get(context, \"contents.lastname\") || \"lastname\",\n placeholder: window._.get(context, \"contents.lastname\") || \"lastname\",\n value: getValue(\"lastname\"),\n },\n ])\n\n const getStreamSelect = () => {\n return {\n elementType: \"select\",\n id: \"stream_id\",\n name: \"stream_id\",\n required: true,\n label: window._.get(context, \"contents.stream\") || \"Stream\",\n placeholder: window._.get(context, \"contents.stream\") || \"Stream\",\n value: getValue(\"stream_id\") || null,\n options: [\n {\n value: \"1\",\n label: \"MTE: Thoracic Surgeon's Perspective\"\n },\n {\n value: \"2\",\n label: \"MTE: Medical Oncologist's Perspective\"\n }\n ]\n }\n }\n\n if (!parseInt(context.internal)) {\n fields = fields.concat([\n {\n elementType: \"select\",\n id: \"country_id\",\n name: \"country_id\",\n required: true,\n // invalidText: \"Invalid error message.\",\n label: window._.get(context, \"contents.country\") || \"Country\",\n placeholder: window._.get(context, \"contents.country\") || \"Country\",\n value: getValue(\"country_id\") || context.country,\n disabled: parseInt(context.internal),\n options: countries || []\n },\n getStreamSelect(),\n {\n elementType: \"text\",\n id: \"istitution\",\n name: \"istitution\",\n required: true,\n label: window._.get(context, \"contents.istitution\") || \"Istitution\",\n placeholder: capitalize(window._.get(context, \"contents.istitution\")) || \"Istitution\",\n value: getValue(\"istitution\"),\n },\n {\n elementType: \"select\",\n id: \"specialty\",\n name: \"specialty\",\n required: true,\n // invalidText: \"Invalid error message.\",\n label: window._.get(context, \"contents.specialty\") || \"Specialty\",\n placeholder: window._.get(context, \"contents.specialty\") || \"Specialty\",\n value: getValue(\"specialty\") || \"Hematologist\",\n // disabled: parseInt(context.internal),\n options: getSpecialtyOptions()\n }]\n )\n if (getValue(\"specialty\") === \"Others\") {\n fields.push({\n elementType: \"text\",\n id: \"other_specialty\",\n name: \"other_specialty\",\n required: true,\n // invalidText: \"Invalid error message.\",\n label: window._.get(context, \"contents.otherSpecialty\") || \"Other specialty\",\n placeholder: window._.get(context, \"contents.otherSpecialty\") || \"Other specialty\",\n value: getValue(\"other_specialty\"),\n })\n }\n }\n else {\n fields = fields.concat([\n {\n elementType: \"select\",\n id: \"country_id_of_work\",\n name: \"country_id_of_work\",\n required: true,\n // invalidText: \"Invalid error message.\",\n label: window._.get(context, \"contents.countryOfWork\") || \"Country of work\",\n placeholder: window._.get(context, \"contents.countryOfWork\") || \"Country of work\",\n value: getValue(\"country_id_of_work\") || context.country,\n disabled: !parseInt(context.internal),\n options: allCountries || []\n },\n getStreamSelect(),\n {\n elementType: \"select\",\n id: \"department\",\n name: \"department\",\n required: true,\n // invalidText: \"Invalid error message.\",\n label: window._.get(context, \"contents.department\") || \"Department\",\n placeholder: window._.get(context, \"contents.department\") || \"Department\",\n value: getValue(\"department\") || \"MRL/GMSA\",\n options: [{\n value: \"MRL/GMSA\",\n label: \"MRL/GMSA\"\n }, {\n value: null,\n label: \"Other\"\n }]\n }]\n )\n if (getValue(\"department\") === \"Other\") {\n fields.push({\n elementType: \"text\",\n id: \"other_department\",\n name: \"other_department\",\n required: true,\n label: window._.get(context, \"contents.otherDepartment\") || \"Other department\",\n placeholder: window._.get(context, \"contents.otherDepartment\") || \"Other department\",\n value: getValue(\"other_department\"),\n })\n }\n }\n\n fields.push(\n {\n elementType: \"email\",\n id: \"email\",\n name: \"email\",\n required: true,\n // invalidText: \"Invalid error message.\",\n label: window._.get(context, \"contents.email\") || \"email\",\n placeholder: window._.get(context, \"contents.email\") || \"email\",\n value: getValue(\"email\"),\n }\n )\n\n if (context.legals) {\n fields = fields.concat(getLegals())\n }\n\n const onModalConfirm = () => {\n context.closeStreamChangedModal()\n }\n\n const onModalClose = () => {\n updateValues(previousFormValues)\n context.setSelectedStreamId(previousFormValues?.stream_id)\n context.closeStreamChangedModal()\n }\n\n return (\n <>\n \n {output(fields)}\n >\n )\n}\n\nexport default ApLungCancer2023FormVer2","import React, { useContext, useState, } from 'react';\nimport { buildQuery } from '../../api/functions';\nimport { getThemeConfig, getContents, formatRegistrationFooter, capitalize, consoleLog } from '../../utils/functions';\nimport Form from '../Form/Form';\nimport MainContext from '../../context/MainContext';\nimport { ThemeContext } from 'styled-components';\nimport LightText from '../../ui/LightText/LightText';\nimport useThreeStatesInternal from '../../hooks/useThreeStatesInternal';\n\nconst MsdPedVaccines2023 = (props) => {\n const [defaultValues, setDefaultValues] = useState({});\n\n const {\n initial,\n onTouched,\n isInternalField\n } = useThreeStatesInternal()\n\n const themeContext = useContext(ThemeContext);\n const context = useContext(MainContext)\n\n const getEndpoint = () => {\n const query = buildQuery({});\n return [\n \"register\"\n ].join(\"/\") + `?${query}`;\n }\n\n const getValue = (name, type) => {\n const value = !window._.isEmpty(defaultValues) ? defaultValues[name] : null;\n\n switch (type) {\n case \"bool\":\n return value !== 0;\n default:\n return value || \"\";\n }\n };\n\n const onChange = (key, value) => {\n console.log(\"onChange\", key, value);\n switch (key) {\n case \"lang_id\":\n context.setLanguage(value)\n break\n case \"country_id\":\n context.setCountry(value)\n break\n case \"is_internal\":\n context.setInternal(value)\n break\n }\n setDefaultValues({\n ...defaultValues,\n [key]: value\n });\n }\n\n const onSubmit = (params) => {\n // context.setUser(params.me)\n // context.setToken(params.token, params.me)\n context.onRegistred(true)\n }\n\n const countries = window._.get(context, \"event.countries\")\n const allCountries = window._.get(context, \"event.all_countries\")\n\n let newRequiredTos = []\n let fields = 1\n ? [\n {\n elementType: \"hidden\",\n id: \"episodes\",\n name: \"episodes\",\n value: window._.map(props.openEpisodes, (item => item.id))//[window._.map(props.openEpisodes, (item => item.id))],\n },\n ]\n : [];\n\n if (context.event.has_internal) {\n fields.push(isInternalField({\n context: context,\n getValue: (e) => getValue(e)\n }))\n }\n fields = fields.concat([\n {\n elementType: \"text\",\n id: \"firstname\",\n name: \"firstname\",\n required: true,\n // invalidText: \"Invalid error message.\",\n label: window._.get(context, \"contents.firstname\") || \"firstname\",\n placeholder: window._.get(context, \"contents.firstname\") || \"firstname\",\n value: getValue(\"firstname\"),\n },\n {\n elementType: \"text\",\n id: \"lastname\",\n name: \"lastname\",\n required: true,\n // invalidText: \"Invalid error message.\",\n label: window._.get(context, \"contents.lastname\") || \"lastname\",\n placeholder: window._.get(context, \"contents.lastname\") || \"lastname\",\n value: getValue(\"lastname\"),\n }\n ])\n\n if (!initial) {\n if (!parseInt(context.internal)) {\n fields.push({\n elementType: \"select\",\n id: \"country_id\",\n name: \"country_id\",\n required: true,\n // invalidText: \"Invalid error message.\",\n label: window._.get(context, \"contents.country\") || \"Country\",\n placeholder: window._.get(context, \"contents.country\") || \"Country\",\n value: getValue(\"country_id\") || context.country,\n disabled: parseInt(context.internal),\n options: countries || []\n })\n fields.push({\n elementType: \"text\",\n id: \"istitution\",\n name: \"istitution\",\n required: true,\n label: window._.get(context, \"contents.istitution\") || \"Istitution\",\n placeholder: capitalize(window._.get(context, \"contents.istitution\")) || \"Istitution\",\n value: getValue(\"istitution\"),\n })\n fields.push({\n elementType: \"select\",\n id: \"specialty\",\n name: \"specialty\",\n required: true,\n // invalidText: \"Invalid error message.\",\n label: window._.get(context, \"contents.specialty\") || \"Specialty\",\n placeholder: window._.get(context, \"contents.specialty\") || \"Specialty\",\n value: getValue(\"specialty\"),\n disabled: parseInt(context.internal),\n options: [\n {\n value: \"Gastroenterologist\",\n label: \"Gastroenterologist\"\n }, {\n value: \"General Physician/Practioner\",\n label: \"General Physician/Practioner\"\n }, {\n value: \"Gynaecologist/Obstetrician\",\n label: \"Gynaecologist/Obstetrician\"\n }, {\n value: \"Infectious Disease\",\n label: \"Infectious Disease\"\n }, {\n value: \"Internal Medicine\",\n label: \"Internal Medicine\"\n }, {\n value: \"Microbiologist\",\n label: \"Microbiologist\"\n }, {\n value: \"Nurse\",\n label: \"Nurse\"\n }, {\n value: \"Otolaryngologist\",\n label: \"Otolaryngologist\"\n }, {\n value: \"Pediatrician\",\n label: \"Pediatrician\"\n }, {\n value: \"Pharmacist\",\n label: \"Pharmacist\"\n }, {\n value: \"Public Health\",\n label: \"Public Health\"\n }, {\n value: \"Pulmonologist\",\n label: \"Pulmonologist\"\n }, {\n value: \"Vaccinologist\",\n label: \"Vaccinologist\"\n }, {\n value: \"Virologist\",\n label: \"Virologist\"\n }, {\n value: \"Other\",\n label: \"Other (Please specify)\"\n }\n ] || []\n })\n if (getValue(\"specialty\") === \"Other\") {\n fields.push({\n elementType: \"text\",\n id: \"other_specialty\",\n name: \"other_specialty\",\n required: true,\n // invalidText: \"Invalid error message.\",\n label: window._.get(context, \"contents.otherSpecialty\") || \"Other specialty\",\n placeholder: window._.get(context, \"contents.otherSpecialty\") || \"Other specialty\",\n value: getValue(\"other_specialty\"),\n })\n }\n }\n else {\n fields.push({\n elementType: \"select\",\n id: \"country_id_of_work\",\n name: \"country_id_of_work\",\n required: true,\n // invalidText: \"Invalid error message.\",\n label: window._.get(context, \"contents.countryOfWork\") || \"Country of work\",\n placeholder: window._.get(context, \"contents.countryOfWork\") || \"Country of work\",\n value: getValue(\"country_id_of_work\") || context.country,\n disabled: !parseInt(context.internal),\n options: allCountries || []\n })\n fields.push({\n elementType: \"select\",\n id: \"department\",\n name: \"department\",\n required: true,\n // invalidText: \"Invalid error message.\",\n label: window._.get(context, \"contents.department\") || \"Department\",\n placeholder: window._.get(context, \"contents.department\") || \"Department\",\n value: getValue(\"department\"),\n options: [{\n value: \"MRL/GMSA\",\n label: \"MRL/GMSA\"\n }, {\n value: null,\n label: \"Other\"\n }]\n })\n if (getValue(\"department\") === \"Other\") {\n fields.push({\n elementType: \"text\",\n id: \"other_department\",\n name: \"other_department\",\n required: true,\n // invalidText: \"Invalid error message.\",\n label: window._.get(context, \"contents.otherDepartment\") || \"Other department\",\n placeholder: window._.get(context, \"contents.otherDepartment\") || \"Other department\",\n value: getValue(\"other_department\"),\n })\n }\n }\n }\n\n const languagesList = window._.get(context, \"event.languages\") || []\n const languageField = languagesList.length > 1 ? {\n elementType: \"select\",\n id: \"lang_id\",\n name: \"lang_id\",\n required: true,\n // invalidText: \"Invalid error message.\",\n label: window._.get(context, \"contents.language\") || \"Language\",\n placeholder: window._.get(context, \"contents.language\") || \"Language\",\n value: getValue(\"lang_id\") || context.language,\n options: window._.get(context, \"event.languages\") || []\n } : {\n elementType: \"hidden\",\n id: \"lang_id\",\n name: \"episodes\",\n value: window._.get(languagesList[0], \"value\"),\n }\n\n fields.push(languageField)\n\n fields = fields.concat([\n {\n elementType: \"email\",\n id: \"email\",\n name: \"email\",\n required: true,\n // invalidText: \"Invalid error message.\",\n label: window._.get(context, \"contents.email\") || \"email\",\n placeholder: window._.get(context, \"contents.email\") || \"email\",\n value: getValue(\"email\"),\n },\n ])\n\n // fields.push({\n // elementType: \"checkbox\",\n // id: \"privacy_policy\",\n // name: \"privacy_policy\",\n // required: true,\n // // invalidText: \"Invalid error message.\",\n // label: `${getContents(context, \"iAgree\")} ${getContents(context, \"privacyPolicyLinkText\")}`,\n // value: getValue(\"privacy_policy\"),\n // section: \"footer\"\n // })\n // fields.push({\n // elementType: \"checkbox\",\n // id: \"cookie_policy\",\n // name: \"cookie_policy\",\n // required: true,\n // // invalidText: \"Invalid error message.\",\n // label: `${getContents(context, \"iAgree\")} ${getContents(context, \"cookiePolicyLinkText\")}`,\n // value: getValue(\"cookie_policy\"),\n // section: \"footer\"\n // })\n if (context.legals) {\n context.legals.forEach(item => {\n consoleLog(\"context.legals\", item.field_name)\n if (!item.field_name) {\n return false\n }\n fields.push({\n elementType: \"checkbox\",\n id: item.field_name,\n name: item.field_name,\n required: item.is_required,\n // invalidText: \"Invalid error message.\",\n // label: `${getContents(context, \"iAgree\")} ${getContents(context, \"cookiePolicyLinkText\")}`,\n labelHtml: item.checkbox_label,\n popupContent: item.content,\n value: getValue(item.field_name),\n section: \"footer\"\n })\n if (item.is_required) {\n newRequiredTos.push(item.field_name)\n // setRequiredTos([\n // ...requiredTos,\n // item.field_name\n // ])\n }\n })\n }\n\n\n const logo = (getThemeConfig(context, \"registration-form.logo\")) ?\n !window._.isEmpty(themeContext.mediaRegistrationFormLogoDesktop) ? (\n \n

\n
\n ) : null : null\n\n const formHelp = (getThemeConfig(context, \"registration-form.footer\")) ? (\n \n \n ) : null\n\n const registrationHeader = getContents(context, \"registrationHeader\") ? (\n \n \n ) : null\n\n //newRequiredTos\n const disableSubmit = (reqs) => {\n let disable = false\n if (reqs) {\n reqs.forEach(item => {\n if (!getValue(item)) {\n disable = true\n }\n })\n }\n else {\n disable = true\n }\n\n // context.event.episodes.forEach(item => {\n // if (item.id === window._.get(context, \"episode.id\")) {\n // disable = !item.is_subscriptions_open\n // }\n // })\n return disable\n }\n\n return (\n \n {logo}\n {/* {registrationHeader} */}\n
\n );\n}\n\nexport default MsdPedVaccines2023","import { useContext } from 'react';\n\nimport useRegistrtionForm from '../../../hooks/useRegistrtionForm';\nimport MainContext from '../../../context/MainContext';\n\nconst IsploraWebinarRegistrationForm = (props) => {\n const context = useContext(MainContext)\n\n const {\n output,\n countries,\n getValue,\n getLegals\n } = useRegistrtionForm()\n\n let fields = [\n {\n elementType: \"hidden\",\n id: \"episodes\",\n name: \"episodes\",\n value: window._.map(props.openEpisodes, (item => item.id))//[window._.map(props.openEpisodes, (item => item.id))],\n },\n ];\n\n const languagesList = window._.get(context, \"event.languages\") || []\n const countriesList = countries || []\n\n const languageField = languagesList.length > 1 ? {\n elementType: \"select\",\n id: \"lang_id\",\n name: \"lang_id\",\n required: true,\n // invalidText: \"Invalid error message.\",\n label: window._.get(context, \"contents.language\") || \"Language\",\n placeholder: window._.get(context, \"contents.language\") || \"Language\",\n value: getValue(\"lang_id\") || context.language,\n options: window._.get(context, \"event.languages\") || []\n } : {\n elementType: \"hidden\",\n id: \"lang_id\",\n name: \"lang_id\",\n value: window._.get(languagesList[0], \"value\"),\n }\n\n const countryField = countriesList.length > 1 ? {\n elementType: \"select\",\n id: \"country_id\",\n name: \"country_id\",\n required: true,\n // invalidText: \"Invalid error message.\",\n label: window._.get(context, \"contents.country\") || \"Country\",\n placeholder: window._.get(context, \"contents.country\") || \"Country\",\n value: getValue(\"country_id\"),\n options: countries || []\n\n } : {\n elementType: \"hidden\",\n id: \"country_id\",\n name: \"country_id\",\n value: window._.get(languagesList[0], \"value\"),\n }\n\n fields.push(languageField)\n\n // if (context.country || context.internal) {\n fields = fields.concat([\n countryField,\n {\n elementType: \"text\",\n id: \"firstname\",\n name: \"firstname\",\n required: true,\n // invalidText: \"Invalid error message.\",\n label: window._.get(context, \"contents.firstname\") || \"firstname\",\n placeholder: window._.get(context, \"contents.firstname\") || \"firstname\",\n value: getValue(\"firstname\"),\n },\n {\n elementType: \"text\",\n id: \"lastname\",\n name: \"lastname\",\n required: true,\n // invalidText: \"Invalid error message.\",\n label: window._.get(context, \"contents.lastname\") || \"lastname\",\n placeholder: window._.get(context, \"contents.lastname\") || \"lastname\",\n value: getValue(\"lastname\"),\n },\n {\n elementType: \"email\",\n id: \"email\",\n name: \"email\",\n required: true,\n // invalidText: \"Invalid error message.\",\n label: window._.get(context, \"contents.email\") || \"email\",\n placeholder: window._.get(context, \"contents.email\") || \"email\",\n value: getValue(\"email\"),\n },\n {\n elementType: \"text\",\n id: \"istitution\",\n name: \"istitution\",\n required: true,\n // invalidText: \"Invalid error message.\",\n label: window._.get(context, \"contents.istitution\") || \"istitution\",\n placeholder: window._.get(context, \"contents.istitution\") || \"istitution\",\n value: getValue(\"istitution\"),\n },\n {\n elementType: \"text\",\n id: \"phone\",\n name: \"phone\",\n label: window._.get(context, \"contents.phone\") || \"Telephone No./Work No\",\n placeholder: window._.get(context, \"contents.phone\") || \"Telephone No./Work No\",\n value: getValue(\"phone\"),\n }\n ])\n\n if (context.legals) {\n fields = fields.concat(getLegals())\n }\n // }\n\n return output(fields)\n}\n\nexport default IsploraWebinarRegistrationForm","import { useContext } from 'react';\n\nimport MainContext from '../../../context/MainContext';\nimport useRegistrtionForm from '../../../hooks/useRegistrtionForm';\nimport { capitalize } from '../../../utils/functions';\n\nconst GamRegistrationForm = (props) => {\n const context = useContext(MainContext)\n\n const {\n output,\n getValue,\n getLegals,\n } = useRegistrtionForm()\n\n let fields = 1\n ? [\n {\n elementType: \"hidden\",\n id: \"episodes\",\n name: \"episodes\",\n value: window._.map(props.openEpisodes, (item => item.id))//[window._.map(props.openEpisodes, (item => item.id))],\n },\n ]\n : [];\n\n\n const languagesList = window._.get(context, \"event.languages\") || []\n const languageField = languagesList.length > 1 ? {\n elementType: \"select\",\n id: \"lang_id\",\n name: \"lang_id\",\n required: true,\n // invalidText: \"Invalid error message.\",\n label: window._.get(context, \"contents.language\") || \"Language\",\n placeholder: window._.get(context, \"contents.language\") || \"Language\",\n value: getValue(\"lang_id\") || context.language,\n options: window._.get(context, \"event.languages\") || []\n } : {\n elementType: \"hidden\",\n id: \"lang_id\",\n name: \"episodes\",\n value: window._.get(languagesList[0], \"value\"),\n }\n\n fields.push(languageField)\n\n fields = fields.concat([\n {\n elementType: \"hidden\",\n id: \"country_id\",\n name: \"country_id\",\n value: \"it\",\n },\n {\n elementType: \"text\",\n id: \"firstname\",\n name: \"firstname\",\n required: true,\n // invalidText: \"Invalid error message.\",\n label: window._.get(context, \"contents.firstname\") || \"firstname\",\n placeholder: window._.get(context, \"contents.firstname\") || \"firstname\",\n value: getValue(\"firstname\"),\n },\n {\n elementType: \"text\",\n id: \"lastname\",\n name: \"lastname\",\n required: true,\n // invalidText: \"Invalid error message.\",\n label: window._.get(context, \"contents.lastname\") || \"lastname\",\n placeholder: window._.get(context, \"contents.lastname\") || \"lastname\",\n value: getValue(\"lastname\"),\n },\n {\n elementType: \"email\",\n id: \"email\",\n name: \"email\",\n required: true,\n // invalidText: \"Invalid error message.\",\n label: window._.get(context, \"contents.email\") || \"email\",\n placeholder: window._.get(context, \"contents.email\") || \"email\",\n value: getValue(\"email\"),\n },\n {\n elementType: \"select\",\n id: \"company_type\",\n name: \"company_type\",\n // required: true,\n // invalidText: \"Invalid error message.\",\n label: window._.get(context, \"contents.company_type\") || \"Azienda/Istituto\",\n value: getValue(\"company_type\") || 0,\n options: [{\n value: 0,//internal_false_value_label\n label: window._.get(context, \"contents.affiliation\") || \"Istituto\",\n }, {\n value: 1,//internal_false_value_label\n label: window._.get(context, \"contents.istitution\") || \"Azienda\",\n }]\n }\n ])\n\n\n if (parseInt(getValue(\"company_type\"))) {\n fields = fields.concat([\n {\n elementType: \"text\",\n id: \"istitution\",\n name: \"istitution\",\n required: true,\n label: window._.get(context, \"contents.company_name\") || \"Nome Azienda\",\n placeholder: capitalize(window._.get(context, \"contents.istitution\")) || \"Istitution\",\n value: getValue(\"istitution\"),\n }]\n )\n }\n else {\n fields = fields.concat([\n {\n elementType: \"text\",\n id: \"department\",\n name: \"department\",\n required: true,\n label: window._.get(context, \"contents.department\") || \"Codice Meccanografico\",\n placeholder: capitalize(window._.get(context, \"contents.department\")) || \"Istitution\",\n value: getValue(\"department\"),\n }]\n )\n }\n\n fields.push(\n {\n elementType: \"text\",\n id: \"phone\",\n name: \"phone\",\n label: window._.get(context, \"contents.phone\") || \"Telephone No./Work No\",\n placeholder: window._.get(context, \"contents.phone\") || \"Telephone No./Work No\",\n value: getValue(\"phone\"),\n }\n )\n\n if (context.legals) {\n fields = fields.concat(getLegals())\n }\n\n return output(fields)\n}\n\nexport default GamRegistrationForm","import React, { useContext } from 'react';\nimport MainContext from '../../context/MainContext';\nimport wrapSection from '../../hoc/wrapSection';\nimport useRegistrtionFlow from '../../hooks/useRegistrtionFlow';\nimport Button from '../../ui/Button/Button';\nimport { getContents } from '../../utils/functions';\nimport ApIdForumCovid19Form from '../ApIdForumCovid19Form/ApIdForumCovid19Form';\nimport ApidGnWebinarRegistrationForm from '../ApidGnWebinarRegistrationForm/ApidGnWebinarRegistrationForm';\nimport ApIdGyn2023Form from '../ApIdGyn2023Form/ApIdGyn2023Form';\nimport ApidRegistrationForm from '../ApidRegistrationForm/ApidRegistrationForm';\nimport Eurogin2021RegistrationForm from '../Eurogin2021RegistrationForm/Eurogin2021RegistrationForm';\nimport EdizioniDmRegistrationForm from '../Form/EdizioniDmRegistrationForm/EdizioniDmRegistrationForm';\nimport MSDApNiasBRegistrationForm from '../Form/MSDApNiasRegistrationForm/MSDApNiasBRegistrationForm';\nimport MSDApNiasRegistrationForm from '../Form/MSDApNiasRegistrationForm/MSDApNiasRegistrationForm';\nimport MSDApNmbUpdates2021RegistrationForm from '../Form/MSDApNmbUpdates2021RegistrationForm/MSDApNmbUpdates2021RegistrationForm';\nimport MSDAPSmartMeetingRegistrationForm from '../Form/MSDAPSmartMeetingRegistrationForm/MSDAPSmartMeetingRegistrationForm';\nimport MSDCovidSassRegistrationForm from '../Form/MSDCovidSassRegistrationForm/MSDCovidSassRegistrationForm';\nimport MSDCtioRegistrationForm from '../Form/MSDCtioRegistrationForm';\nimport MSDGlobalCmvRegistrationForm from '../Form/MSDGlobalCmvRegistrationForm/MSDGlobalCmvRegistrationForm';\nimport MSDGlobalHpv2021RegistrationForm from '../Form/MSDGlobalHpv2021RegistrationForm/MSDGlobalHpv2021RegistrationForm';\nimport MSDHncrResearchForum2022RegistrationForm from '../Form/MSDHncrResearchForum2022RegistrationForm/MSDHncrResearchForum2022RegistrationForm';\nimport MSDIdForum2021RegistrationForm from '../Form/MSDIdForum2021RegistrationForm/MSDIdForum2021RegistrationForm';\nimport MSDJcapMatchRegistrationForm from '../Form/MSDJcapMatchRegistrationForm/MSDJcapMatchRegistrationForm';\nimport MSDJCAPRegistrationForm from '../Form/MSDJCAPRegistrationForm/MSDJCAPRegistrationForm';\nimport OrganonVirtualSassRegistrationForm from '../Form/OrganonVirtualSassRegistrationForm/OrganonVirtualSassRegistrationForm';\nimport MsdApidForumCovid19 from '../MsdApidForumCovid19/MsdApidForumCovid19';\nimport MSDHPVRegistrationForm from '../MSDHPVRegistrationForm/MSDHPVRegistrationForm';\nimport MSDVaccinesAcademyRegistrationForm from '../MSDVaccinesAcademyRegistrationForm/MSDVaccinesAcademyRegistrationForm';\nimport MSDVaccinesAcademyRegistrationForm2022 from '../MSDVaccinesAcademyRegistrationForm2022/MSDVaccinesAcademyRegistrationForm2022';\nimport RegistrationForm from '../RegistrationForm/RegistrationForm';\nimport SpecialRegistrationForm from '../SpecialRegistrationForm/SpecialRegistrationForm';\nimport ApLungCancer2023Form from '../Form/ApLungCancer2023Form/ApLungCancer2023Form';\nimport ApLungCancer2023FormVer2 from '../Form/ApLungCancer2023Form/ApLungCancer2023FormVer2';\nimport MsdPedVaccines2023 from '../MsdPedVaccines2023/MsdPedVaccines2023';\nimport IsploraWebinarRegistrationForm from '../Form/IsploraWebinarRegistrationForm/IsploraWebinarRegistrationForm';\nimport GamRegistrationForm from '../Form/GamRegistrationForm/GamRegistrationForm';\n\nconst Registration = (props) => {\n const context = useContext(MainContext)\n const {\n _isMsdCtio2022\n } = useRegistrtionFlow()\n let output = null\n\n const episodes = window._.get(context, \"event.episodes\")\n const allEpisodes = window._.get(context, \"allEpisodes\", [])\n\n const openEpisodes = episodes.filter(item => {\n return item.has_future_events && item.is_subscriptions_open\n })\n const allOpenEpisodes = allEpisodes.filter(item => {\n // console.log(\"emptyList\", item.id, (item.has_future_events && item.is_subscriptions_open))\n return item.has_future_events && item.is_subscriptions_open\n })\n\n const formProps = {\n ...props,\n openEpisodes: openEpisodes\n }\n\n const emptyList = (\n (openEpisodes?.length < 1 && (!_isMsdCtio2022() || context.event.force_hide_registration_form))\n // ||\n // (allOpenEpisodes?.length < 1 && _isMsdCtio2022())\n )\n if (emptyList) {\n const goToLoginForm = (\n context.setLoginModalOpen(true)}\n className=\"registration-form__gotologin\"\n dangerouslySetInnerHTML={{ __html: getContents(context, \"goToLoginForm\") }}>\n
\n )\n output = (\n <>\n \n {goToLoginForm}\n >\n )\n }\n else if (context.registered) {\n output = (\n <>\n \n \n >\n )\n }\n else {\n switch (\n parseInt(window._.get(context, \"event.registration_form\"))\n ) {\n case 1:\n output = (\n \n )\n break\n case 2:\n output = (\n \n )\n break\n case 3:\n output = (\n \n )\n break\n case 4:\n output = (\n \n )\n break\n case 5:\n output = (\n \n )\n break\n case 6: //MSD_VACCINES_ACADEMY\n output = (\n \n )\n break\n case 7: //MSD_VACCINES_ACADEMY\n output = (\n \n )\n break\n case 8: //MSD_VACCINES_ACADEMY\n output = (\n \n )\n break\n case 9: //MSD_VACCINES_ACADEMY\n output = (\n \n )\n break\n case 10: //MSD_VACCINES_ACADEMY\n output = (\n \n )\n break\n case 11: //MSD_VACCINES_ACADEMY\n output = (\n \n )\n break\n case 12: //MSD_VACCINES_ACADEMY\n output = (\n \n )\n break\n case 13: //MSD_VACCINES_ACADEMY\n output = (\n \n )\n break\n case 14: //MSD_VACCINES_ACADEMY\n output = (\n \n )\n break\n case 15: //AP ID Forum - COVID-19 Greta\n output = (\n // ApIdForumCovid19 \n )\n break\n case 16: //AP ID Forum - GN Webinar Greta\n output = (\n // ApIdForumCovid19 \n )\n break\n case 17: // MSD_VACCINES_ACADEMY 2022\n output = (\n // ApIdForumCovid19 \n )\n break\n case 18:\n output = (\n \n )\n break\n case 19:\n output = (\n \n )\n break\n case 20:\n output = (\n \n )\n break\n case 21:\n output = (\n \n )\n break\n case 22: //APID_GYN_2023_Reg\n output = (\n \n )\n break\n case 23:\n output = (\n \n )\n break\n case 24:\n output = (\n \n )\n break\n case 25:\n output = (\n \n )\n break\n case 3023:\n output = (\n \n )\n break\n case 1001: // MSD_CTIO\n output = (\n \n )\n break\n case 2001: // Edizioni DM\n output = (\n \n )\n break\n case 2002: // Isplora Webinar\n output = (\n \n )\n break\n default:\n output = (\n \n )\n }\n }\n\n return (\n \n {output}\n
\n )\n}\n\nRegistration.className = \"registration\"\nexport default wrapSection(Registration)","import classNames from \"classnames\";\nimport React, { useEffect, useMemo, useState } from \"react\";\nimport { LIVE, VOD } from \"../../config/channelStatus\";\nimport \"./TheoPlayer.scss\"\n\nconst TheoPlayer = ({ defaultLang, forceLiveUi, hideControls, hidePip, muted = true, ...props }) => {\n\n const {\n onPlay = () => { },\n onTimeUpdate = () => { },\n onPause = () => { },\n onSeeking = () => { },\n onSeeked = () => { },\n onPlaying = () => { },\n onReadyStateChange = () => { },\n onAudioTrackChange = () => { },\n onCcTrackChange = () => { }\n } = props;\n\n const [player, setPlayer] = useState()\n const [source, setSource] = useState(props.source)\n const _el = React.useRef();\n const _wrapper = React.useRef();\n\n const checkControlsVisible = () => {\n if (!_el.current) {\n return false\n }\n return (_el.current.classList.contains(\"vjs-user-active\") || _el.current.classList.contains(\"vjs-paused\")) && _el.current.classList.contains(\"vjs-has-started\");\n }\n\n const updateTextTracksPosition = () => {\n const htmlCollection = document.getElementsByClassName(\"theoplayer-texttracks\")\n if (checkControlsVisible()) {\n for (const element of htmlCollection) {\n element.classList.remove(\"bottom-0\");\n }\n }\n else {\n for (const element of htmlCollection) {\n element.classList.add(\"bottom-0\");\n }\n }\n }\n\n useEffect(() => {\n let _player = null\n if (!player) {\n _player = librariesLoaded()\n }\n else {\n _player = player\n }\n if (props.source && source !== props.source) {\n setSource(props.source)\n }\n _player.source = props.source\n // _player.play()\n window.setTimeout(() => {\n _player.play()\n const observer = new MutationObserver(function (event) {\n updateTextTracksPosition()\n })\n observer.observe(_el.current, {\n attributes: true,\n attributeFilter: ['class'],\n childList: false,\n characterData: false\n })\n }, 1)\n\n\n _wrapper.current.addEventListener(\"contextmenu\", (e) => {\n e.preventDefault()\n return false\n })\n }, [props.source])\n\n // useEffect(() => {\n // if (props.status !== status) {\n // setStatus(props.status)\n // }\n // }, [props.status])\n\n const handleInsightChange = async (_player, t) => {\n // console.log(\"handleInsightChange\", t)\n if (!_player.paused) {\n await onPause(null, _player)\n window.setTimeout(async () => {\n // await onPause(null, _player)\n await onPlaying(null, _player)\n }, 2000)\n }\n }\n\n const handleReadyStateChange = (e, _player) => {\n // console.log(\" _player.audioTracks\", _player.audioTracks)\n if (defaultLang) {\n let audioIndex = null\n _player.audioTracks.forEach(function (track, index) {\n if ((track.language === defaultLang)) {\n audioIndex = index\n }\n });\n if (audioIndex !== null) {\n _player.audioTracks.forEach(function (track, index) {\n track.enabled = false\n });\n _player.audioTracks[audioIndex].enabled = true\n }\n }\n onReadyStateChange(e, _player)\n }\n\n const handlePlayerPlaying = (e, _player) => {\n // if (_player.readyState === 4) {\n onPlaying(e, _player)\n // }\n }\n\n const handlePlayerPause = (e, _player) => {\n // if (_player.readyState === 4) {\n onPause(e, _player)\n // }\n }\n const isSubtitle = (kind) => {\n return [\"captions\", \"subtitles\"].indexOf(kind) >= 0\n }\n\n const librariesLoaded = () => {\n\n if (_el.current) {\n\n let theoplayerOptions = {\n libraryLocation: \"https://cdn.myth.theoplayer.com/\" + process.env.REACT_APP_THEO_API_KEY,\n // libraryLocation: \"/node_modules/theoplayer/\",\n license: process.env.REACT_APP_THEO_API_LICENSE,\n muted: true,\n fluid: true\n }\n\n if (!hidePip && process.env.REACT_APP_PIP_ENABLED) {\n theoplayerOptions = {\n ...theoplayerOptions,\n // Picture-in-picture initialisation\n pip: {\n \"visibility\": 0.7\n }\n }\n }\n\n const _player = new window.THEOplayer.Player(_el.current, theoplayerOptions);\n\n _player.preload = 'auto';\n _player.muted = muted;\n _player.source = props.source\n _player.autoplay = true;\n\n if (![LIVE, VOD].includes(props.status)) {\n _player.loop = true;\n }\n\n if (!props.demo) {\n _player.addEventListener('play', (e) => onPlay(e, _player))\n _player.addEventListener('playing', (e) => handlePlayerPlaying(e, _player))\n _player.addEventListener('pause', (e) => handlePlayerPause(e, _player))\n _player.addEventListener('seeking', (e) => onSeeking(e, _player))\n _player.addEventListener('seeked', (e) => onSeeked(e, _player))\n _player.addEventListener('readystatechange', (e) => handleReadyStateChange(e, _player))\n _player.addEventListener('timeupdate', (e) => onTimeUpdate(e, _player))\n\n // _player.network.addResponseInterceptor((response) => {\n // if (response.status >= 400 && response.status <= 599) {\n // var errorDetails = {\n // status: response.status,\n // fileType: response.request.type,\n // url: response.request.url\n // }\n // var networkErrorEvent = new CustomEvent('THEOnetworkerror', { detail: errorDetails });\n // document.dispatchEvent(networkErrorEvent);\n // };\n // })\n\n _player.audioTracks.addEventListener('change', function (event) {\n const track = event.track;\n // console.log(\"defaultLang6\", track, track.label, track.language, track.enabled);\n if (track.enabled) {\n onAudioTrackChange(track.language)\n handleInsightChange(_player, \"audioTracks\")\n }\n });\n _player.textTracks.addEventListener('change', function (event) {\n if (!isSubtitle(event.track.kind)) {\n return false\n }\n // const track = event.track;\n // const isEnabled = (track.mode === \"showing\");\n // const isSubtitle = (track.kind === \"subtitles\");\n // console.log(track, track.label, track.kind, track.language, track.type, isEnabled);\n // if (isSubtitle) {\n // onCcTrackChange(isEnabled ? track.language : null)\n // handleInsightChange(_player)\n // }\n let currentTextTrack;\n for (var t in _player.textTracks) {\n const track = _player.textTracks[t]\n if (\n track.mode === 'showing' &&\n isSubtitle(track.kind)\n ) {\n currentTextTrack = track.language;\n }\n }\n onCcTrackChange(currentTextTrack)\n handleInsightChange(_player, \"textTracks\")\n });\n }\n\n setPlayer(_player)\n if (props.onPLayerReady) {\n props.onPLayerReady(_player)\n }\n return _player\n }\n }\n\n const playerBox = useMemo(() => {\n const wrapperClassName = classNames(\"player-wrapper\", {\n \"hide-controls\": hideControls,\n \"force-live\": forceLiveUi\n })\n return (\n \n );\n }, [props.source, forceLiveUi, hideControls])\n\n return playerBox\n\n}\n\nexport default TheoPlayer;","import \"./FakePlayer.scss\"\n\nconst FakePlayer = (props) => {\n\n return (\n \n
\n {props.children}\n
\n
\n )\n}\n\nexport default FakePlayer","class PusherManager {\n\n pusherchannel;\n\n setPusherChannel = (pusherchannel) => {\n this.pusherchannel = pusherchannel\n }\n}\n\nexport default new PusherManager()","import React, { useContext, useEffect, useMemo, useState } from 'react';\nimport { getPlayerSources, playerWhebHook, playerInsight, setSubscriberChannelPresence, resetSubscriberChannelPresence } from '../../api/functions';\nimport { UNKNOWN, LIVE, VOD, BUFFER } from '../../config/channelStatus';\nimport MainContext from '../../context/MainContext';\nimport wrapSection from '../../hoc/wrapSection';\nimport { consoleLog, getAuthToken, getLocalStorageOffsetFieldName, translateChannelStatus, getLocalStorageLastPauseFieldName, getLocalStorageDurationFieldName, getCloseCaptionsVttFileUrl, utc } from '../../utils/functions';\nimport TheoPlayer from '../TheoPlayer/TheoPlayer';\nimport \"./PlayerBox.scss\"\nimport { useHistory } from 'react-router-dom';\nimport moment from 'moment';\nimport FakePlayer from '../FakePlayer/FakePlayer';\nimport Input from '../Input/Input';\nimport classNames from 'classnames';\nimport PusherManager from '../../utils/PusherManager';\n\nlet buffer = 0\nlet playerStatus = \"pause\"\nlet lastAction = moment()\nlet lastActionPlayerTime = 0\nlet liveLocked = true // DO not edit offset until readyStateChanged === 4\nlet vodLocked = true // DO not edit offset until readyStateChanged === 4\n// let pusherChannelState = null\nlet playerObject = null\nlet connectionStatus = null\nlet channelStatusCode = UNKNOWN\nlet timeOut = null\nlet logId = null\nlet playerStarterTime = 0\nlet playerCurrentTime = 0\nlet initialized = false\n// let hidden, visibilityChange;\nconst PlayerBox = (props) => {\n\n const history = useHistory()\n const [status, setStatus] = useState(UNKNOWN)\n const [playList, setPlayList] = useState([])\n const [alternativeSources, setAleternativeSources] = useState([])\n const [ccSources, setCcSources] = useState([])\n const [formattedAlternativeSources, setFormattedAleternativeSources] = useState([])\n const [selectedAlternativeSource, setSelectedAlternativeSource] = useState()\n const [episodeLiveStartedAt, setEpisodeLiveStartedAt] = useState()\n // const [textTracks, setTextTracks] = useState()\n const [episode, setEpisodeId] = useState()\n const [channelId, setChannelId] = useState()\n const [channel, setChannel] = useState()\n const [loading, setLoading] = useState(true)\n const [audioTrackLangId, setAudioTrackLangId] = useState()\n const [ccTrackLangId, setCcTrackLangId] = useState()\n const [playerSource, setPlayerSource] = useState()\n const [playerReadyState, setPlayerReadyState] = useState()\n const [insights, setInsights] = useState()\n const [isFakeLive, setIsFakeLive] = useState(false)\n // const [liveLocked, setLiveLocked] = useState(true)\n // const [vodLocked, setVodLocked] = useState(true)\n const [pusherChannelState, setPusherChannelState] = useState() // DO NOT REMOVE!!!\n const [hidePlayer, setHidePlayer] = useState(true) // DO NOT REMOVE!!!\n // const [lastActionTime, setLastActionTime] = useState(0)\n const context = useContext(MainContext)\n\n const channelsStatus = translateChannelStatus(status)\n\n let lastEvent = null\n\n const handleChannelSubscription = ({ action, channelId }) => {\n try {\n switch (action) {\n case \"subscribe\":\n setSubscriberChannelPresence({ channelId })\n break\n case \"unsubscribe\":\n resetSubscriberChannelPresence()\n break\n default:\n }\n }\n catch (e) { }\n }\n\n useEffect(() => {\n if (!getAuthToken()) {\n history.push(\"/\")\n }\n\n liveLocked = true\n vodLocked = true\n\n // window.setInterval(() => {\n // setLastActionTime(lastActionTime => ++lastActionTime)\n // }, 1000)\n\n // let lastTime = (new Date()).getTime();\n\n // setInterval(function () {\n // let currentTime = (new Date()).getTime();\n // if (currentTime > (lastTime + 2000 * 2)) { // ignore small delays\n // console.log(\"AAA woke up \" + moment().format())\n\n // }\n // lastTime = currentTime;\n // }, 2000);\n\n // if (typeof document.hidden !== \"undefined\") { // Opera 12.10 and Firefox 18 and later support\n // hidden = \"hidden\";\n // visibilityChange = \"visibilitychange\";\n // } else if (typeof document.msHidden !== \"undefined\") {\n // hidden = \"msHidden\";\n // visibilityChange = \"msvisibilitychange\";\n // } else if (typeof document.webkitHidden !== \"undefined\") {\n // hidden = \"webkitHidden\";\n // visibilityChange = \"webkitvisibilitychange\";\n // }\n // document.addEventListener(visibilityChange, handleVisibilityChange, false);\n window.addEventListener('online', handleConnectionChange);\n window.addEventListener('offline', handleConnectionChange);\n return function cleanup() {\n window.removeEventListener(\"online\", handleConnectionChange)\n window.removeEventListener(\"offline\", handleConnectionChange)\n };\n\n // window.ononline = (event) => {\n // // alert(\"You are now connected to the network.\");\n // setOnline(true)\n // };\n // // Detect when user's connection is broken\n // window.onoffline = (event) => {\n // // alert(\"The network connection has been lost.\");\n // setOnline(false)\n // }; \n }, [])\n\n useEffect(() => {\n\n if (!channelId) {\n return false\n }\n // window.Pusher = new Pusher(process.env.REACT_APP_PUSHER_APP_KEY, {\n // // key: process.env.REACT_APP_PUSHER_APP_KEY,\n // cluster: process.env.REACT_APP_PUSHER_APP_CLUSTER,\n // forceTLS: true,\n // authEndpoint: process.env.REACT_APP_API_BASEURL + 'broadcasting/auth',\n // pongTimeout: 6000,\n // activityTimeout: 30000,\n // auth: {\n // headers: {\n // 'Authorization': \"Bearer \" + getAuthToken()\n // }\n // }\n // });\n window.Pusher.connection.bind('connected', function () {\n // consoleLog(\"pusher:connected\")\n // if (pusherChannelState === 'disconnected') {\n // consoleLog(`pusher:connected status : ${playerStatus}`)\n // }\n // setPusherChannelState('connected')\n })\n window.Pusher.connection.bind('disconnected', function () {\n // consoleLog(\"pusher:disconnected\")\n playerObject.pause()\n // if (pusherChannelState === 'connected') {\n // consoleLog(`pusher:disconnected status : ${playerStatus}`)\n // }\n // setPusherChannelState('disconnected')\n })\n // window.Pusher.connection.bind(\"error\", function (err) {\n // // if (err.error.data.code === 4004) {\n // consoleLog(\">>> detected error \" + err.error.data.code);\n // // }\n // });\n if (channelId && !window._.isEmpty(context.user)) {\n\n let pusherChannel = PusherManager.pusherchannel\n\n pusherChannel.bind(\"App\\\\Events\\\\ChannelStatusChanged\", (data) => {\n consoleLog(`ChannelStatusChanged was triggered with data ${JSON.stringify(data)}`);\n\n const action = data?.actions?.find(action => parseInt(action.id) === parseInt(channelId))\n consoleLog(action);\n if (action) {\n const newChannelStatus = parseInt(action.status)\n switch (newChannelStatus) {\n case LIVE:\n liveLocked = true\n changeChannelStatus({ newValue: LIVE, newSource: action.source, newAlternativeSources: action.channel_sources, newEpisodeLiveStartedAt: action.episode_live_started_at })\n break\n // case \"App\\\\Events\\\\EventStatusChanged\":\n // if (data.keep_current_time) {\n // vodLocked = true\n // }\n // changeChannelStatus({ newValue: action.status, newSource: action.source, newAlternativeSources: action.channel_sources, newCCSources: action.closed_captions })\n // break\n // case \"App\\\\Events\\\\ChangeQaaStatus\":\n // changeQaaStatus(data.status)\n // break\n default:\n if (data.keep_current_time) {\n vodLocked = true\n }\n changeChannelStatus({ newValue: newChannelStatus, newSource: action.source, newAlternativeSources: action.channel_sources, newCCSources: action.closed_captions })\n break\n }\n }\n });\n\n // subscribeToChannel\n const channel = subscribeToChannel(props.eventId, channelId)\n // setSubscriberChannelPresence({ channelId })\n handleChannelSubscription({ action: \"subscribe\", channelId })\n // const channel = window.Pusher.subscribe(`presence-${props.eventId}.${channelId}`)\n // .here((e) => {\n // consoleLog(\"LiveStarted join\", e);\n // // setStatus(LIVE)\n // })\n // .listen('.App\\\\Events\\\\LiveStarted', (e) => {\n // consoleLog(\"LiveStarted\", e);\n // setStatus(LIVE)\n // });\n // consoleLog(\"channel\", channel)\n // channel.bind('pusher:subscription_succeeded', function (members) {\n // consoleLog(\"pusher:subscription_succeeded\")\n // })\n // channel.bind('pusher:member_added', function (member) {\n // consoleLog(\"pusher:member_added\")\n // });\n // channel.bind(\"pusher:member_removed\", (member) => {\n // consoleLog(\"member_removed at \" + moment().format())\n // // remove_member(member.id, member.info);\n // });\n // channel.bind('.App\\\\Events\\\\LiveStarted', function (e) {\n // consoleLog(\"lpusher:isten\", e)\n // });\n // channel.bind('.App\\\\Events\\\\LiveStopped', function (e) {\n // consoleLog(\"pusher:listen\", e)\n // });\n // channel.bind('pusher:ping', function (e) {\n // consoleLog(\"pusher:ping\", e)\n // });\n // channel.bind('pusher:pong', function (e) {\n // consoleLog(\"pusher:pong\", e)\n // });\n channel.bind_global(globalCallback);\n\n }\n return function cleanup() {\n if (window.Pusher) {\n unsubscribeFromChannel(props.eventId, channelId)\n // resetSubscriberChannelPresence()\n handleChannelSubscription({ action: \"unsubscribe\" })\n // window.Pusher.unsubscribe(`presence-${props.eventId}.${channelId}`)\n }\n };\n }, [channelId])\n\n useEffect(() => {\n const _episodeId = window._.get(context, \"episodeId\")\n consoleLog(\"onEpisodeSelected playerbox\", _episodeId, props.episodeId)\n if (props.episodeId && episode !== props.episodeId) {\n loadPlayList(_episodeId)\n // setEpisodeId(_episodeId)\n }\n }, [props.episodeId])\n\n // useEffect(() => {\n // if (context.channelId && context.channelId !== channelId) {\n // setChannelId(context.channelId)\n // }\n // }, [context.channelId])\n\n useEffect(() => {\n channelStatusCode = status\n handleLastPauseLog()\n }, [status])\n\n useEffect(() => {\n setFormattedAleternativeSources(alternativeSources?.map(item => {\n return {\n id: item.id,\n src: item.src,\n type: item.type\n }\n })\n )\n }, [alternativeSources])\n\n useEffect(() => {\n if (!channelId) {\n return\n }\n let params = {\n channel_id: channelId,\n }\n if (audioTrackLangId) {\n params = {\n ...params,\n audio_lang_id: audioTrackLangId,\n }\n }\n if (ccTrackLangId) {\n params = {\n ...params,\n cc_lang_id: ccTrackLangId,\n }\n }\n if (selectedAlternativeSource) {\n params = {\n ...params,\n channel_source_id: selectedAlternativeSource?.id\n }\n }\n onInsightChange(params)\n }, [audioTrackLangId, ccTrackLangId, selectedAlternativeSource, playerReadyState])\n\n useEffect(() => {\n window.setTimeout(async () => {\n updateSource()\n }, 500)\n }, [playList, status, selectedAlternativeSource, ccSources])\n\n const updateSource = async () => {\n // const playerSource = (alternativeSources?.length > 1 && selectedAlternativeSource) ? {\n // sources: selectedAlternativeSource\n // } : {\n // sources: playList ? [playList[status]] : null,\n // textTracks: getTextTrack(playList, status)\n // };\n let source = {}\n if (alternativeSources?.length > 1 && selectedAlternativeSource) {\n source = {\n sources: selectedAlternativeSource\n }\n }\n else {\n const tracks = await getTextTrack(playList, status)\n source = {\n sources: playList ? [playList[status]] : null,\n textTracks: tracks\n }\n }\n setPlayerSource(source);\n }\n\n // useEffect(() => {\n // let newTextTracks = null\n // if (newValue === PRE_LIVE) {\n // newTextTracks = [{\n // label: 'Chapters',\n // kind: 'chapters',\n // src: 'https://cdn.theoplayer.com/video/sintel/chapters.vtt',\n // srclang: 'en',\n // default: true\n // }]\n // }\n // setTextTracks(newTextTracks)\n // }, [playList])\n\n // // If the page is hidden, pause the video;\n // // if the page is shown, play the video\n // function handleVisibilityChange() {\n // if (document[hidden]) {\n // console.log(\"AAA hidden \" + moment().format())\n // } else {\n // console.log(\"AAA visible \" + moment().format())\n // }\n // }\n\n const setLastPauseLog = (playerObject) => {\n localStorage.setItem(getLocalStorageLastPauseFieldName(context.episodeId), playerObject.currentTime)\n localStorage.setItem(getLocalStorageDurationFieldName(context.episodeId), playerObject.duration)\n }\n\n const handleLastPauseLog = () => {\n const timeInt = localStorage.getItem(getLocalStorageLastPauseFieldName(context.episodeId))\n if (timeInt) {\n onPause(timeInt, true)\n localStorage.setItem(getLocalStorageLastPauseFieldName(context.episodeId), null)\n localStorage.setItem(getLocalStorageDurationFieldName(context.episodeId), null)\n }\n }\n\n const handleConnectionChange = (e) => {\n if (e.type !== connectionStatus) {\n if (e.type === \"offline\") {\n playerObject.pause()\n setLastPauseLog(playerObject.currentTime)\n alert(\"You are offline\")\n }\n else {\n handleLastPauseLog()\n alert(\"You back online\")\n }\n connectionStatus = e.type\n }\n }\n\n const subscribeToChannel = (eventId, channelId) => {\n return window.Pusher.subscribe(`presence-${eventId}.${channelId}`)\n }\n const unsubscribeFromChannel = (eventId, channelId) => {\n window.Pusher.unsubscribe(`presence-${eventId}.${channelId}`)\n }\n\n const globalCallback = (eventName, data) => {\n consoleLog(`bind global: The event ${eventName} was triggered with data ${JSON.stringify(data)}`);\n switch (eventName) {\n case \"App\\\\Events\\\\LiveStarted\":\n liveLocked = true\n changeChannelStatus({ newValue: LIVE, newSource: data.source, newAlternativeSources: data.channel_sources, newEpisodeLiveStartedAt: data.episode_live_started_at })\n break\n case \"App\\\\Events\\\\LiveStopped\":\n changeChannelStatus({ newValue: BUFFER, newSource: data.source, newAlternativeSources: data.channel_sources })\n break\n case \"App\\\\Events\\\\EventStatusChanged\":\n if (data.keep_current_time) {\n vodLocked = true\n }\n changeChannelStatus({ newValue: data.status, newSource: data.source, newAlternativeSources: data.channel_sources, newCCSources: data.closed_captions })\n break\n // case \"App\\\\Events\\\\ChangeQaaStatus\":\n // changeQaaStatus(data.status)\n // break\n default:\n }\n }\n\n // const changeChannelStatus = (newValue, newSource, newAlternativeSources = [], newCCSources = []) => {\n const changeChannelStatus = ({ newValue, newSource, newAlternativeSources = [], newCCSources = [], newEpisodeLiveStartedAt }) => {\n\n setEpisodeLiveStartedAt(newEpisodeLiveStartedAt)\n if (newSource) {\n setPlayList(playList => {\n return {\n ...playList,\n [newValue]: newSource\n }\n })\n }\n setSelectedAlternativeSource()\n setAleternativeSources(newAlternativeSources)\n setCcSources(newCCSources)\n setStatus(newValue)\n context.setChannelStatus(newValue)\n }\n\n // const changeQaaStatus = (newValue) => {\n // consoleLog(\"changeQaaStatus\", newValue)\n // context.changeQaaStatus(newValue)\n // }\n\n const loadPlayList = async (episodeId) => {\n if (!getAuthToken()) {\n return false\n }\n const res = await getPlayerSources({\n episode_id: episodeId,\n lang_id: context.language\n })\n setPlayList(window._.get(res, \"playlist\"))\n setChannel(window._.get(res, \"channel\"))\n setChannelId(window._.get(res, \"id\"))\n changeChannelStatus({ newValue: window._.get(res, \"status\") })\n setAleternativeSources(window._.get(res, \"sources\"))\n setCcSources(window._.get(res, \"cc_sources\"))\n setLoading(false)\n // setEligible(window._.get(res, \"id\") ||)\n }\n\n // INACTIVE\n // const onPlay = (currentTime) => {\n // // consoleLog(currentTime, \"The player event play.\")\n // // playerStatus = \"playing\"\n // // lastAction = moment()\n // // // sendWebHook(currentTime, \"play\")\n // }\n\n // ACTIVE\n const onPlaying = async (currentTime) => {\n consoleLog(currentTime, \"The player event onPlaying.\")\n playerStarterTime = currentTime\n if (playerStatus !== \"playing\") {\n playerStatus = \"playing\"\n lastAction = moment()\n return await sendWebHook(currentTime, \"play\")\n }\n }\n\n // ACTIVE\n const onPause = async (currentTime, force) => {\n if (isNaN(currentTime)) {\n return Promise.resolve(false)\n }\n else {\n consoleLog(currentTime, force, \"The player event onPause.\")\n if (playerStatus === \"playing\" || force) {\n playerStatus = \"pause\"\n lastAction = moment()\n return await sendWebHook(currentTime, \"pause\", force)\n }\n }\n }\n\n // ACTIVE\n const onInsightChange = async (params) => {\n params = {\n ...params,\n status\n }\n if (ccSources.length && !params.cc_lang_id && !initialized) {\n const active = ccSources.find(item => item.is_active)\n // params = {\n // ...params,\n // cc_lang_id: active?.lang_id\n // }\n setCcTrackLangId(active?.lang_id)\n initialized = true\n return\n }\n if (params === insights) {\n return\n }\n if (playerReadyState !== 4) {\n return\n }\n if (!params.cc_lang_id) {\n params = {\n ...params,\n cc_lang_id: null\n }\n }\n setInsights(params)\n window.clearTimeout(timeOut)\n timeOut = window.setTimeout(() => {\n consoleLog(params, \"The player event onPlaying.\")\n playerInsight(params)\n }, 100)\n }\n\n const onAudioTrackChange = (e) => {\n // console.log(\"onAudioTrackChange\", e)\n setAudioTrackLangId(e)\n }\n\n const onCcTrackChange = (e) => {\n // console.log(\"onCcTrackChange\", e)\n setCcTrackLangId(e)\n }\n // // INACTIVE\n // const onSeeking = (currentTime) => {\n // // consoleLog(currentTime, \"The player event onSeeking.\")\n // // playerStatus = \"seeking\"\n // // sendWebHook(currentTime, \"pause\")\n // }\n\n // // INACTIVE\n // const onSeeked = (currentTime) => {\n // // consoleLog(currentTime, \"The player event onSeeked.\")\n // // playerStatus = \"seeked\"\n // // sendWebHook(currentTime, \"pause\")\n // }\n\n // INACTIVE\n const onTimeUpdate = (currentTime) => {\n\n playerCurrentTime = currentTime\n if ([VOD].includes(status) && !vodLocked) {\n const timeInt = parseInt(currentTime)\n localStorage.setItem(getLocalStorageOffsetFieldName(context.episodeId), timeInt)\n }\n }\n\n // INACTIVE\n const onReadyStateChange = async (player) => {\n setPlayerReadyState(player.readyState)\n setIsFakeLive(false)\n consoleLog(\"onReadyStateChange\", player.readyState)\n if (player.readyState === 4) {\n setHidePlayer(false)\n }\n\n if (![LIVE].includes(status)) {\n liveLocked = true\n }\n if (![VOD].includes(status)) {\n vodLocked = true\n }\n\n if (channel?.is_fake_live && [LIVE].includes(status)) {\n setIsFakeLive(true)\n }\n if (\n player.readyState === 4 &&\n !buffer &&\n liveLocked &&\n [LIVE].includes(status)\n ) {\n if (channel?.is_fake_live) {\n\n const liveStartedAt = context.episode?.live_started_at || episodeLiveStartedAt\n // console.log(\"liveStartedAt\", liveStartedAt, episodeLiveStartedAt)\n if (liveStartedAt) { // episode_live_started_at\n const diff = moment().diff(utc(liveStartedAt), \"seconds\")\n consoleLog(\"player.currentTime: LIVE starts from\", diff)\n player.currentTime = diff;\n liveLocked = false\n }\n }\n\n if (playerStatus === \"playing\") {\n // const now = moment()\n // const resPause = await sendWebHook(lastActionPlayerTime + (parseInt(now.format(\"X\")) - parseInt(lastAction.format(\"X\"))), \"pause\")\n // const resPlay = await sendWebHook(player.currentTime, \"play\")\n // consoleLog(\"resPause\", player.currentTime, parseInt(now.format(\"X\")) - parseInt(lastAction.format(\"X\")))\n // lastAction = now\n }\n }\n if (\n player.readyState === 4 &&\n [VOD].includes(status) &&\n vodLocked\n ) {\n if (startFrom()) {\n player.currentTime += startFrom()\n localStorage.setItem(getLocalStorageOffsetFieldName(context.episodeId), null)\n }\n vodLocked = false\n }\n // HAVE_ENOUGH_DATA\n }\n\n const sendWebHook = async (currentTime, eventName, force) => {\n let res = null\n // consoleLog(\"The player event xxxx \" + eventName, parseInt(currentTime), parseInt(playerStarterTime))\n if (\n (\n [LIVE, VOD].includes(status) &&\n lastEvent !== eventName\n ) ||\n force\n ) {\n lastEvent = eventName\n let calculatedPlayerTime = 0\n if ([VOD].includes(status)) {\n calculatedPlayerTime = parseInt(currentTime)\n }\n else {\n calculatedPlayerTime = parseInt(currentTime) - parseInt(playerStarterTime)\n if (calculatedPlayerTime < 0) {\n calculatedPlayerTime = 0\n }\n }\n\n res = await playerWhebHook({\n time: calculatedPlayerTime,\n name: eventName,\n episodeId: context.episodeId,\n channelId: channelId,\n channelStatus: channelStatusCode,\n duration: force ? localStorage.getItem(getLocalStorageDurationFieldName(context.episodeId)) : playerObject.duration,\n buffer: buffer,\n async: force,\n log_id: logId\n })\n logId = res.log\n lastActionPlayerTime = parseInt(currentTime)\n }\n return res\n }\n\n const startFrom = () => {\n if ([VOD].includes(status)) {\n return parseInt(localStorage.getItem(getLocalStorageOffsetFieldName(context.episodeId)))\n }\n }\n\n const getTextTrack = async (playList, status) => {\n\n let textTracks = []\n const srcM3u8 = window._.get(playList, status + \".src\")\n\n if (srcM3u8) {\n\n const defaultCcConfig = {\n default: true, //optional\n kind: 'subtitles', //optional - find other values at https://support.theoplayer.com/hc/en-us/articles/214350425#TextTrackDescription\n // label: 'English subs', //optional - this will appear in your UI\n srclang: 'en'\n }\n\n if (status === LIVE) {\n textTracks.push(defaultCcConfig)\n }\n\n // else if (status === VOD) {\n // Subtitles / CC / Captions\n // let liveConfiguration = {\n // default: true, //optional\n // kind: 'subtitles', //optional - find other values at https://support.theoplayer.com/hc/en-us/articles/214350425#TextTrackDescription\n // // label: 'English subs', //optional - this will appear in your UI\n // srclang: 'en'\n // }\n // if (status === VOD) {\n // if (ccSources.length === 0) {\n // const ccVttUrl = getCloseCaptionsVttFileUrl(srcM3u8)\n // // const ccVttUrl = 'https://deu4xpzslem1x.cloudfront.net/index.m3u8'\n // try {\n // await get(ccVttUrl)\n // liveConfiguration = {\n // ...liveConfiguration,\n // src: ccVttUrl\n // }\n // }\n // catch (e) {\n // }\n // liveConfiguration = {\n // ...liveConfiguration,\n // src: ccVttUrl\n // }\n // }\n // else {}\n\n // }\n\n // textTracks.push(liveConfiguration)\n // }\n if (status === VOD) {\n if (ccSources.length === 0) {\n // BE AWARE!!! ASYNC makes troubles BUT DO NOT DELETE!!!\n // const ccVttUrl = getCloseCaptionsVttFileUrl(srcM3u8)\n // // const ccVttUrl = 'https://deu4xpzslem1x.cloudfront.net/index.m3u8'\n // try {\n // await get(ccVttUrl)\n // textTracks.push({\n // ...defaultCcConfig,\n // src: ccVttUrl\n // })\n // }\n // catch (e) {\n // }\n }\n else {\n // \"default\" Not Working with iOS!!!\n // ccSources.forEach(item => {\n // textTracks.push({\n // default: item.is_active, //!index, //optional\n // kind: 'subtitles', //optional - find other values at https://support.theoplayer.com/hc/en-us/articles/214350425#TextTrackDescription\n // label: item.default_title, //optional - this will appear in your UI\n // srclang: item.lang_id,\n // src: getCloseCaptionsVttFileUrl(srcM3u8, item.lang_id)\n // })\n // })\n }\n // console.log(\"textTracks\", status, textTracks, ccSources)\n // Chapters\n // textTracks.push({\n // label: 'Chapters',\n // kind: 'chapters',\n // src: getChaptersVttFileUrl(srcM3u8),\n // // srclang: 'en',\n // default: true\n // })\n // // Thumbnails\n // textTracks.push({\n // default: true,\n // src: getThumbnailsVttFileUrl(srcM3u8),\n // label: 'thumbnails',\n // kind: 'metadata'\n // })\n }\n }\n return Promise.resolve(textTracks)\n }\n\n const alterantiveSourceChanged = (e) => {\n onPause(playerCurrentTime, true)\n setSelectedAlternativeSource(formattedAlternativeSources.find(item => item.src === e.target.value))\n setAudioTrackLangId()\n setCcTrackLangId()\n }\n\n const alternativeSourcesSelector = alternativeSources?.length > 1 ? (\n {\n return {\n value: item.src,\n label: item.title\n }\n })}\n onChange={(e) => alterantiveSourceChanged(e)}\n />\n ) : null\n\n const getPlayerDefaultLang = () => {\n return (context.user.lang_id !== context.event.default_language) ? context.user.lang_id : null\n }\n\n const playerBox = useMemo(() => {\n\n const playerBoxClassNames = classNames(\"playerbox-wrapper\", {\n \"playerbox-overlay\": hidePlayer\n })\n // console.log(\"event changed\", channelsStatus, status, playerSource)\n return loading ? (\n Loading video...
\n ) : (channelsStatus && status !== UNKNOWN) ? (\n \n {process.env.NODE_ENV !== \"production\" ? (\n
\n
channelsStatus {channelsStatus}
\n
status {status}
\n
source {playerSource?.sources[0]?.src}
\n
User Lang ID {context.user.lang_id}
\n
Event Lang ID {context.language}
\n
Event Default Lang ID {context.event.default_language}
\n
Episode ID {context.episodeId}
\n
\n ) : null}\n {\n hidePlayer &&
\n }\n
{ onPlay(player.currentTime) }}\n onPause={(e, player) => { onPause(player.currentTime) }}\n // onSeeking={(e, player) => { onSeeking(player.currentTime) }}\n // onSeeked={(e, player) => { onSeeked(player.currentTime) }}\n onTimeUpdate={(e, player) => { onTimeUpdate(player.currentTime) }}\n onPlaying={(e, player) => { onPlaying(player.currentTime) }}\n onReadyStateChange={(e, player) => { onReadyStateChange(player) }}\n onAudioTrackChange={onAudioTrackChange}\n onCcTrackChange={onCcTrackChange}\n onPLayerReady={(player) => { playerObject = player }}\n muted={true}\n />\n \n ) : (\n \n {window._.get(context, \"contents.notEligible\")}\n \n )\n }, [status, playerSource, isFakeLive, hidePlayer])\n return (window._.isEmpty(context.user)) ? null : (\n <>\n {alternativeSourcesSelector}\n {playerBox}\n {process.env.NODE_ENV !== \"production\" ? channelsStatus : null}\n >\n )\n}\n\nPlayerBox.className = \"play\"\nexport default wrapSection(PlayerBox)","import { useEffect } from \"react\";\n\nfunction ScrollToTop() {\n useEffect(() => {\n window.scrollTo(0, 0);\n }, []);\n\n return null;\n}\n\nexport default ScrollToTop","import React, { useContext } from \"react\"\nimport classnames from \"classnames\"\nimport MainContext from \"../../context/MainContext\"\nimport Row from \"../Row/Row\"\n\nconst PageBody = (props) => {\n\n const context = useContext(MainContext)\n const className = classnames(props.className, {\n \"container-fluid\": !props.isCol && !props.narrow,\n \"container\": !props.isCol && props.narrow,\n \"col\": props.isCol,\n })\n\n const content = (context.isAppView || context.is2ColsView) ? (\n \n {props.children}\n
\n ) : props.children\n\n const style = 0 ? {\n paddingTop: `${context.navHeight * 1.2}px`\n } : {}\n\n return (\n \n {content}\n
\n )\n}\nexport default PageBody","import classNames from 'classnames';\nimport React from 'react';\nimport wrapSection from '../../hoc/wrapSection';\nimport PageBody from '../../ui/PageBody/PageBody';\nimport TheoPlayer from '../TheoPlayer/TheoPlayer';\n\nconst DemoPlayer = (props) => {\n\n const playerSource = {\n sources: props.source,\n };\n return (\n \n \n { console.log(\"The player has started playing.\") }}\n demo={true}\n />\n
\n \n )\n}\n\nDemoPlayer.className = \"play\"\nexport default wrapSection(DemoPlayer)","/* eslint-disable jsx-a11y/alt-text */\nimport classNames from 'classnames';\nimport React, { useContext, useRef, useEffect, useState } from 'react';\nimport { ThemeContext } from 'styled-components';\nimport MainContext from '../../context/MainContext';\nimport Row from '../../ui/Row/Row';\nimport { getThemeConfig } from '../../utils/functions';\n\nconst EventTitle = (props) => {\n\n const context = useContext(MainContext)\n const speakersLayoutCols = getThemeConfig(context, \"speakers.cols\")\n const titleLayoutCols = getThemeConfig(context, \"title.cols\")\n const agendaLayoutCols = getThemeConfig(context, \"agenda.cols\")\n const subSubTitleRemoveMargin = getThemeConfig(context, `subsubtitle.remove-margin`)\n const themeContext = useContext(ThemeContext);\n\n const [touched, setTouched] = useState(false)\n\n const headerTitle = useRef()\n\n useEffect(() => {\n if (headerTitle.current) {\n context.setHeaderTitleHeight(headerTitle.current.offsetHeight)\n }\n }, [])\n\n // useEffect(() => {\n // if (props.episodes.length > 0 && !props.episodes.includes(props.episode)) {\n // props.onEpisodeChange(props.episodes[0].id, true)\n // }\n // }, [props.episodes])\n\n const isCtio2022 = () => {\n return props.event === \"ctio-2022\"\n }\n\n const onEpisodeChange = (e) => {\n setTouched(true)\n props.onEpisodeChange(e)\n }\n\n let mobile = 12\n let tablet = 12\n let desktop = 12\n\n try {\n if (titleLayoutCols) {\n mobile = titleLayoutCols.mobile\n tablet = titleLayoutCols.tablet\n desktop = titleLayoutCols.desktop\n }\n else {\n mobile = speakersLayoutCols.mobile + agendaLayoutCols.mobile\n tablet = speakersLayoutCols.tablet + agendaLayoutCols.tablet\n desktop = speakersLayoutCols.desktop + agendaLayoutCols.desktop\n }\n }\n catch (e) { }\n\n let rightColLogo = null\n if (window._.get(themeContext, \"mediaRightColLogo.url\") && props.showRightColLogo) {\n rightColLogo = (\n \n

\n
\n )\n }\n\n let multiepisode = false\n let episodesDropdown = null\n let eventHeaderWidthLg = 12\n let forceDisable = false\n\n let dropDownEpisodes = props.episodes\n // allEpisodes\n if (props.episodes.length === 0) {\n dropDownEpisodes = props.allEpisodes\n forceDisable = true\n }\n\n let selectedEpisode = null\n try {\n if (isCtio2022()) {\n const selectable = dropDownEpisodes.filter(item => {\n return !(\n !item.has_future_events ||\n (!item.is_subscriptions_open && isCtio2022())\n || forceDisable\n )\n })\n selectedEpisode = touched ? props.episode : selectable.length ? selectable[0] : dropDownEpisodes[dropDownEpisodes.length - 1]\n }\n else {\n selectedEpisode = props.episode || props.episodes[0].id\n }\n }\n catch (e) { }\n\n if (dropDownEpisodes.length > 1 && !props.hideDropDown && (context.episode || isCtio2022())) {\n multiepisode = true\n eventHeaderWidthLg = 9\n episodesDropdown = (\n \n \n
\n )\n }\n\n const formattedEpisodeCategories = (isCtio2022() && window._.get(selectedEpisode, \"episode_categories\")) ? window._.get(selectedEpisode, \"episode_categories\").map(item => item.title_default).join(\",\") : null\n\n const titleContent = (isCtio2022() && window._.get(selectedEpisode, \"title\")) ? (\n <>\n {window._.get(selectedEpisode, \"title\")}
\n {\n formattedEpisodeCategories ? (\n {formattedEpisodeCategories}
\n ) : null\n }\n >\n ) : (isCtio2022() && props.episodes.length === 0) ? null : (\n <>\n {\n rightColLogo\n }\n {\n props.eventSubSubTitle ? (\n {props.eventSubSubTitle}
\n ) : null\n }\n {\n props.eventTitle ? (\n {props.eventTitle}
\n ) : null\n }\n {\n props.eventSubTitle ? (\n {props.eventSubTitle}
\n ) : null\n }\n >\n )\n\n const title = (isCtio2022() && (props.episodes.length === 0 || !context.episode)) ? null : (\n \n {titleContent}\n
\n )\n\n const eventLive = isCtio2022() ? window._.get(selectedEpisode, \"live_scheduling.formatted_start_at\") : props.eventLive\n const eventVod = isCtio2022() ? window._.get(selectedEpisode, \"vod_scheduling.formatted_start_at\") : props.eventVod\n\n const maxChannelDurationInHours = window._.get(selectedEpisode, \"max_channel_duration\")\n const maxChannelDuration = themeContext.showVodDurationInDays ? parseInt(maxChannelDurationInHours / 24) : maxChannelDurationInHours\n\n const intro = props.eventTitle || props.eventSubSubTitle || props.eventSubTitle ? (\n 12 ? 12 : mobile}`]: mobile,\n [`col-md-${tablet > 12 ? 12 : tablet}`]: tablet,\n [`col-lg-${desktop > 12 ? 12 : desktop}`]: desktop,\n \"ctio-2022 mb-5\": isCtio2022()\n })}>\n {\n props.eventIntro && isCtio2022() ? (\n
\n ) : null\n }\n
\n {!isCtio2022() ? title : null}\n {episodesDropdown}\n {isCtio2022() ? title : null}\n
\n {\n props.hideDropDown || (isCtio2022() && (props.episodes.length === 0 || !context.episode || !context.episode?.is_subscriptions_open)) ? null : (\n
\n {eventLive ? (\n \n {props.eventLiveTitle ? (\n
\n ) : null}\n
\n {eventLive}\n
\n
\n ) : null}\n {eventVod ? (\n \n {props.eventVodTitle ? (\n
\n ) : null}\n
\n {eventVod}\n {\n window._.get(selectedEpisode, \"vod_channels_duration\") ? (\n {props.upTo || \"up to\"} {maxChannelDuration} {props.hours || \"hours\"}\n ) : null\n }\n
\n
\n ) : null}\n {\n props.eventNotes && isCtio2022() ? (\n \n ) : null\n }\n {\n props.eventIntro && !isCtio2022() ? (\n \n ) : null\n }\n
\n )\n }\n
\n ) : null\n\n return intro\n}\n\nEventTitle.className = \"eventtitle\"\nEventTitle.fluid = true\nexport default EventTitle","import React, { useEffect, useState, useContext } from \"react\"\nimport AdamModal from \"../AdamModal/AdamModal\";\nimport Input from \"../Input/Input\";\nimport MainContext from \"../../context/MainContext\";\nimport Button from \"../../ui/Button/Button\";\nimport classNames from \"classnames\";\nimport Spin from \"../../ui/Spin/Spin\";\n\nconst LoginModal = ({ hideChairmanLoginButton, ...props }) => {\n const [modalOpen, setModalOpen] = useState(false)\n const [email, setEmail] = useState(\"\")\n const [password, setPassword] = useState(\"\")\n const [isChairman, setIsChairman] = useState(false)\n const context = useContext(MainContext)\n\n useEffect(() => {\n setModalOpen(props.open)\n }, [props.open])\n\n const toggleLoginAsChairman = () => {\n setIsChairman(isChairman => !isChairman)\n }\n\n const loginForm = (\n \n
\n setEmail(e.target.value)}\n value={email}\n placeholder={window._.get(context, \"contents.emailBoxLoginPlaceholder\")}\n />\n
\n {isChairman ? (\n <>\n
\n setPassword(e.target.value)}\n // value={password}\n placeholder=\"Password\"\n />\n
\n >\n ) : null}\n {\n !hideChairmanLoginButton && (\n
\n )\n }\n\n {\n context.loginErrors ? (\n
\n {context.loginErrors.join(\", \")}\n
\n ) : null\n }\n
\n {\n context.alreadyLoggedError ? (\n <>\n
\n {window._.get(context, \"contents.closeEveryOpenSessionMessage\")}\n
\n
\n >\n ) : (\n\n
\n\n )\n }\n
\n
\n )\n\n // const logo = !window._.isEmpty(themeContext.mediaHeaderLogoDesktop) ? (\n //
\n // ) : context.siteTitle\n\n const sectionMainTitle = props.formTitle ? (\n \n {props.formTitle}\n
\n ) : null\n\n const grid = (\n \n
\n
\n {/* {logo} */}\n
{props.eventSubTitle}
\n
{props.eventTitle}
\n
\n
\n
\n {sectionMainTitle}\n
\n {loginForm}\n
\n
\n
\n )\n\n const modal = (\n context.setLoginModalOpen(false)}\n />\n )\n\n return modal\n}\n\nexport default LoginModal","import React from 'react';\nconst SlidoIframe = (props) => {\n\n const minHeight = props.minHeight || \"560px\"\n\n return (\n `\n }} />\n )\n}\n\nSlidoIframe.className = \"slido\"\nexport default SlidoIframe","import classNames from \"classnames\"\nimport React, { useContext, useEffect, useRef, useState } from \"react\"\nimport { LIVE } from \"../../config/channelStatus\"\nimport MainContext from \"../../context/MainContext\"\nimport Row from \"../../ui/Row/Row\"\nimport Agenda from \"../Agenda/Agenda\"\nimport Input from \"../Input/Input\"\nimport SlidoIframe from \"../SlidoIframe/SlidoIframe\"\nimport Speakers from \"../Speakers/Speakers\"\nimport \"./PlayerSidebar.scss\"\n\nconst PlayerSidebar = ({ hideAgendaDatetime, ...props }) => {\n const context = useContext(MainContext)\n const mainRow = useRef()\n const [selectedSidebarTab, setSelectedSidebarTab] = useState(\"info\")\n const [offsetTop, setOffsetTop] = useState(0)\n // const [offsetRight, setOffsetRight] = useState(0)\n const [activeTabs, setActiveTabs] = useState([])\n const [touched, setTouched] = useState(false)\n\n const {\n contents,\n language,\n country,\n episodeId,\n internal,\n episode\n } = props\n\n const sidebarTabChanged = (e) => {\n setTouched(true)\n setSelectedSidebarTab(e.target.value)\n }\n const tabsDropdown = useRef()\n\n useEffect(() => {\n changePaddingTop()\n changePaddingRight()\n window.addEventListener(\"resize\", () => {\n changePaddingTop()\n changePaddingRight()\n })\n }, [])\n\n useEffect(() => {\n const newactiveTabs = episode?.playertabs?.filter(tab => {\n return tab.channel_status?.includes(context.channelStatus)\n })\n setActiveTabs(newactiveTabs)\n }, [episode, context.channelStatus])\n\n const changePaddingTop = () => {\n if (tabsDropdown.current) {\n setOffsetTop(tabsDropdown.current.offsetHeight)\n }\n }\n\n const changePaddingRight = () => {\n // if (mainRow.current) {\n // setOffsetRight(mainRow.current.style.paddingRight)\n // }\n }\n\n const slidoUrl = episode ? episode.slido_url : window._.get(context, \"episode.slido_url\")\n\n let options = [{\n value: \"\",\n label: selectedSidebarTab ? \"Close\" : \"Open\"\n }]\n\n if (!touched) {\n options.push({\n value: \"info\",\n label: contents.infoTabTitle || \"INFO\"\n })\n }\n\n options = options.concat([{\n value: \"agenda\",\n label: contents.agendaTitle\n }, {\n value: \"speakers\",\n label: contents.speakersTitle\n }])\n\n let tabsContent = {\n \"info\": (\n
\n ),\n \"agenda\": (\n
\n ),\n \"speakers\": (
\n ),\n }\n\n if (slidoUrl) {\n tabsContent = {\n ...tabsContent,\n \"slido\": (\n
\n )\n }\n }\n\n if ([LIVE].includes(context.channelStatus) && slidoUrl) {\n // if (context.channelStatus === LIVE && slidoUrl) {\n options.push({\n value: \"slido\",\n label: contents.pollingTitle || \"Polling\"\n })\n }\n if (activeTabs) {\n activeTabs.forEach(tab => {\n options.push({\n value: tab.id,\n label: tab.dropdown_title || tab.title\n })\n tabsContent = {\n ...tabsContent,\n [tab.id]: (\n
\n )\n }\n })\n }\n\n const select = (\n
sidebarTabChanged(e)}\n />\n )\n\n return (\n <>\n {/* {context.channelStatus} */}\n
\n
\n \n {select}\n
\n \n {\n tabsContent[selectedSidebarTab]\n }\n
\n
\n
\n
\n {select}\n
\n >\n )\n}\n\nexport default PlayerSidebar","import classNames from \"classnames\"\nimport \"./DefaultPage.scss\"\nconst DefaultPage = (props) => {\n\n return (\n
\n {\n props.message ? (\n
\n
\n ) : null\n }\n {\n props.content ? (\n
\n {props.content}\n
\n ) : null\n\n }\n
\n )\n}\n\n//\n\nexport default DefaultPage","import DefaultPage from \"../DefaultPage/DefaultPage\"\nconst Maintenance = (props) => {\n\n return (\n
\n )\n}\n\nexport default Maintenance","const MainContainer = (props) => {\n return (\n
\n {props.children}\n
\n )\n}\n\nexport default MainContainer","import React, { useEffect, useState, useContext } from \"react\"\nimport AdamModal from \"../AdamModal/AdamModal\";\nimport MainContext from \"../../context/MainContext\";\nimport Container from \"../../ui/Container/Container\";\nimport Row from \"../../ui/Row/Row\";\n\nconst ThankYouRegistrationModal = (props) => {\n const [modalOpen, setModalOpen] = useState(false)\n const context = useContext(MainContext)\n\n useEffect(() => {\n setModalOpen(props.open)\n }, [props.open])\n\n const grid = (\n
\n {\n props.content ?\n (\n \n \n
\n ) : null\n }\n \n )\n\n const modal = (\n
context.setTankyouRegistrationModalOpen(false)}\n />\n )\n\n return modal\n}\n\nexport default ThankYouRegistrationModal","import React, { useState } from 'react';\nimport CookieConsent from \"react-cookie-consent\";\nimport AdamModal from '../AdamModal/AdamModal';\nimport { cleanCheckboxLabel } from '../../utils/functions';\nimport Container from '../../ui/Container/Container';\nimport Row from '../../ui/Row/Row';\n// import \"./PlayerBox.scss\"\nconst AdamCookieConsent = (props) => {\n\n const debug = true\n const { theme } = props\n const [modalOpen, setModalOpen] = useState(false)\n\n console.log(\"checkbox_label\", process.env.NODE_ENV)\n const openModal = (content) => {\n\n setModalOpen(true)\n }\n\n const onModalRequestClose = () => {\n\n\n setModalOpen(false)\n }\n const grid = props.ccContent ? (\n \n {\n \n \n
\n }\n \n ) : null\n\n const modal = grid ? (\n \n ) : null\n\n const cleaned = cleanCheckboxLabel(props.ccCheckboxLabel)\n const label = (\n \n {\n cleaned.before ? (\n \n ) : null\n }\n {\n cleaned.linkContent ? props.ccContent ? (\n openModal(props.ccContent)}\n dangerouslySetInnerHTML={{\n __html: cleaned.linkContent\n }} />\n ) : (\n \n ) : null\n }\n {\n cleaned.after ? (\n \n ) : null\n }\n \n )\n return (\n <>\n \n {label}\n \n {modal}\n >\n )\n}\n\nexport default AdamCookieConsent","import React, { useEffect, useState, useContext } from \"react\"\nimport AdamModal from \"../AdamModal/AdamModal\";\nimport { ThemeContext } from \"styled-components\";\nimport MainContext from \"../../context/MainContext\";\nimport Container from \"../../ui/Container/Container\";\nimport Row from \"../../ui/Row/Row\";\n\nconst FormErrorsModal = (props) => {\n const [modalOpen, setModalOpen] = useState(false)\n const context = useContext(MainContext)\n const themeContext = useContext(ThemeContext);\n\n useEffect(() => {\n setModalOpen(props.open)\n }, [props.open])\n\n let contents = []\n if (props.content) {\n Object.keys(props.content).forEach(item => {\n contents.push(\n \n {\n props.content[item] ? props.content[item].map(row => {row}
) : null\n }\n
\n )\n })\n }\n\n const grid = (\n \n {contents}\n \n )\n\n const modal = (\n context.closeFormErrorsModal()}\n />\n )\n\n return modal\n}\n\nexport default FormErrorsModal","import React, { useContext, useEffect, useState, } from 'react';\n\nimport { buildQuery } from '../api/functions';\nimport Form from '../components/Form/Form';\nimport MainContext from '../context/MainContext';\n\nimport { getContents } from '../utils/functions';\n\nconst QaAUserForm = ({ handleCurrentChannel, handleCurrentChannelTag, ...props }) => {\n const [defaultValues, setDefaultValues] = useState({});\n const [submitted, setSubmitted] = useState(false);\n const [currentChannel, setCurrentChannel] = useState();\n const [currentChannelTag, setCurrentChannelTag] = useState();\n\n const context = useContext(MainContext)\n\n useEffect(() => {\n if (!context.channelId) {\n setCurrentChannel()\n }\n else {\n setCurrentChannel(context.user?.channels?.find(item => parseInt(item.id) === parseInt(context.channelId)))\n }\n }, [context.channelId, context.user])\n\n useEffect(() => {\n setCurrentChannelTag(currentChannel?.stream_id)\n if (handleCurrentChannel) {\n handleCurrentChannel(currentChannel?.id)\n }\n }, [currentChannel])\n\n useEffect(() => {\n if (handleCurrentChannelTag) {\n handleCurrentChannelTag(currentChannelTag)\n }\n }, [currentChannelTag])\n\n const getEndpoint = () => {\n const query = buildQuery({});\n // const endpoint = `events/${event}/${CONTENTS}?${query}`;\n return [\n \"questions\"\n ].join(\"/\") + `?${query}`;\n }\n\n const getValue = (name, type) => {\n const value = !window._.isEmpty(defaultValues) ? defaultValues[name] : null;\n\n switch (type) {\n case \"bool\":\n return value !== 0;\n default:\n return value || \"\";\n }\n };\n\n const onChange = (key, value) => {\n setDefaultValues({\n ...defaultValues,\n [key]: value\n });\n }\n\n\n const contantFieldName = props.chairMan ?\n \"edited_content\" :\n \"original_content\"\n\n const onSubmit = (e) => {\n setDefaultValues({\n ...defaultValues,\n [contantFieldName]: \"\"\n });\n\n setSubmitted(true)\n\n window.setTimeout(() => {\n setSubmitted(false)\n }, 3000)\n\n if (getValue(\"send_immediately\")) {\n props.onSubmit(e)\n }\n }\n\n let fields = 1\n ? [\n {\n elementType: \"hidden\",\n id: \"episode_id\",\n name: \"episode_id\",\n value: window._.get(context, \"episode.id\"),\n },\n {\n elementType: \"hidden\",\n id: \"stream_id\",\n name: \"stream_id\",\n value: currentChannelTag,\n },\n ]\n : [];\n\n fields.push({\n elementType: \"textarea\",\n id: contantFieldName,\n name: contantFieldName,\n required: true,\n label: window._.get(context, \"contents.qnaFormTextareaLabel\") || \"Please type your question here\",\n placeholder: window._.get(context, \"contents.qnaFormTextareaPlaceholder\") || \"Ask a question\",\n value: getValue(contantFieldName),\n disabled: !props.enabled && !props.chairMan\n })\n\n if (props.chairMan) {\n fields.push({\n elementType: \"hidden\",\n id: \"confirmed\",\n name: \"confirmed\",\n value: getValue(\"send_immediately\"),\n })\n fields.push({\n elementType: \"hidden\",\n id: \"original_content\",\n name: \"original_content\",\n value: getValue(\"edited_content\")\n })\n const episodeQaaCategories = window._.get(context, \"episode.qaa_categories\")\n // const episodeQaaCategories = null\n\n if (episodeQaaCategories) {\n let categorySelectOptions = [\n {\n value: null,\n label: window._.get(context, \"contents.qaa_category\") || \"Select a category\",\n }\n ]\n categorySelectOptions = categorySelectOptions.concat(episodeQaaCategories.map(item => {\n return {\n value: item.toLowerCase(),//internal_false_value_label\n label: item,\n }\n }))\n fields.push({\n elementType: \"select\",\n id: \"category\",\n name: \"category\",\n placeholder: window._.get(context, \"contents.qaa_category\") || \"Category\",\n value: getValue(\"category\"),\n options: categorySelectOptions\n })\n }\n fields.push({\n elementType: \"checkbox\",\n id: \"send_immediately\",\n name: \"send_immediately\",\n labelHtml: \"Send immediately\",\n value: getValue(\"send_immediately\"),\n })\n }\n\n const disableSubmit = () => {\n // let disable = false\n // context.event.episodes.forEach(item => {\n // if (item.id === window._.get(context, \"episode.id\")) {\n // disable = !item.is_subscriptions_open\n // }\n // })\n return submitted || (!props.enabled && !props.chairMan)\n // return submitted || (!props.enabled && !props.chairMan)\n }\n\n const submitButtonLabel = (submitted) ? getContents(context, \"questionSubmitted\") || \"Thank you\" : getContents(context, \"submitQuestion\") || \"Submit question\"\n\n return (\n \n
\n );\n}\n\nexport default QaAUserForm","import classNames from \"classnames\"\nimport React, { useEffect, useState, useContext } from \"react\"\nimport MainContext from \"../../context/MainContext\"\nimport QaAUserForm from \"../../forms/QaAUserForm\"\nimport Row from \"../../ui/Row/Row\"\nimport { consoleLog, getQaAEnabled, setQaAEnabled } from \"../../utils/functions\"\n\nconst QandA = (props) => {\n\n const [formEnabled, setFormEnabled] = useState(false)\n\n const context = useContext(MainContext)\n\n useEffect(() => {\n consoleLog(\"window.Pusher\", window.Pusher)\n window.Pusher.bind(\"App\\\\Events\\\\ChangeQaaStatus\", (data) => {\n consoleLog(`QandA ${JSON.stringify(data)}`);\n _setQaAEnabled(parseInt(data.status) === 1)\n })\n\n }, [context.channelId])\n\n useEffect(() => {\n\n let checkValue = _getQaAEnabled()\n consoleLog(\"checkValue1\", checkValue)\n if (checkValue === undefined) {\n checkValue = parseInt(context.episode.qaa_enabled)\n }\n consoleLog(\"checkValue2\", checkValue)\n if (checkValue !== formEnabled) {\n _setQaAEnabled(checkValue === 1)\n }\n }, [context.episode])\n\n const _setQaAEnabled = (value) => {\n setQaAEnabled(value)\n setFormEnabled(value)\n }\n\n const _getQaAEnabled = () => {\n getQaAEnabled()\n }\n\n return (\n <>\n \n >\n )\n}\n\nexport default QandA","import React, { useContext, useEffect, useState, } from 'react';\n\nimport Form from '../components/Form/Form';\nimport MainContext from '../context/MainContext';\n\nimport { getContents } from '../utils/functions';\n\n\nconst EditQaAForm = (props) => {\n const [defaultValues, setDefaultValues] = useState({});\n\n const context = useContext(MainContext)\n\n useEffect(() => {\n setDefaultValues({\n \"edited_content\": props.edited_content || props.original_content\n })\n }, [props.edited_content, props.original_content])\n\n const getEndpoint = () => {\n return [\n \"questions\"\n ].join(\"/\");\n }\n\n const getValue = (name, type) => {\n const value = !window._.isEmpty(defaultValues) ? defaultValues[name] : null;\n switch (type) {\n case \"bool\":\n return value !== 0;\n default:\n return value || \"\";\n }\n };\n\n const onChange = (key, value) => {\n setDefaultValues({\n ...defaultValues,\n [key]: value\n });\n }\n\n const onSubmit = (e) => {\n props.onSubmit(e)\n }\n\n let fields = 1\n ? [\n {\n elementType: \"hidden\",\n id: \"episode_id\",\n name: \"episode_id\",\n value: window._.get(context, \"episode.id\"),\n },\n ]\n : [];\n\n if (props.chairMan) {\n fields.push({\n elementType: \"hidden\",\n id: \"confirmed\",\n name: \"confirmed\",\n value: 1,\n })\n }\n\n fields.push({\n elementType: \"textarea\",\n id: \"edited_content\",\n name: \"edited_content\",\n required: true,\n placeholder: window._.get(context, \"contents.question\") || \"Ask a question\",\n value: getValue(\"edited_content\"),\n })\n\n const episodeQaaCategories = window._.get(context, \"episode.qaa_categories\")\n\n if (episodeQaaCategories) {\n const categorySelectOptions = episodeQaaCategories.map(item => {\n return {\n value: item.toLowerCase(),//internal_false_value_label\n label: item,\n }\n })\n fields.push({\n elementType: \"select\",\n id: \"category\",\n name: \"category\",\n placeholder: window._.get(context, \"contents.qaa_category\") || \"Assign a category\",\n value: getValue(\"category\"),\n options: categorySelectOptions\n })\n }\n\n return (\n \n
\n );\n}\n\nexport default EditQaAForm","import classNames from \"classnames\"\nimport React, { useContext, useEffect, useState } from \"react\"\nimport MainContext from \"../../context/MainContext\"\nimport QaAUserForm from \"../../forms/QaAUserForm\"\nimport { deleteQuestion, loadQuestions } from \"../../api/functions\"\nimport EditQaAForm from \"../../forms/EditQaAForm\"\nimport { initPusher, localTime } from \"../../utils/functions\"\nimport _ from \"lodash\"\n\nconst QaACardSidebar = (props) => {\n\n const context = useContext(MainContext)\n const postFix = props.sent ? \"sent\" : \"sidebar\"\n const country = window._.get(props, \"country.title\")\n\n const senderIsAttendant = !window._.get(props, \"subscriber.subscription.is_chairman\") && !window._.get(props, \"subscriber.subscription.is_internal\")\n\n const originalContent = window._.get(props, \"original_content\")\n const editedContent = window._.get(props, \"edited_content\")\n const edited = (editedContent !== null) && (editedContent !== originalContent)\n const senderName = `${window._.get(props, \"subscriber.firstname\")} ${window._.get(props, \"subscriber.lastname\")}`\n const editedLabel = edited ? ` (edited)` : null\n\n return (\n \n
\n {senderName}{editedLabel} {\n country && senderIsAttendant ? ` (${country})` : null\n }\n
\n
{localTime(window._.get(props, \"created_at\"), context.event.timezone).format(\"D-M-Y H:m\")}
\n {\n props.sent ? (\n
\n {editedContent || originalContent}\n
\n ) : (\n
\n {editedContent || originalContent}\n
\n )\n }\n
\n )\n}\n\n\nconst QaACardEditable = (props) => {\n\n const context = useContext(MainContext)\n const country = window._.get(props, \"country.title\")\n const senderIsAttendant = !window._.get(props, \"subscriber.subscription.is_chairman\") && !window._.get(props, \"subscriber.subscription.is_internal\")\n return (\n \n
{localTime(window._.get(props, \"created_at\"), context.event.timezone).format(\"D-M-Y H:m\")}
\n
{window._.get(props, \"subscriber.firstname\")} {window._.get(props, \"subscriber.lastname\")} {\n country && senderIsAttendant ? ` (${country})` : null\n }
\n
{window._.get(props, \"original_content\")}
\n
\n
\n )\n}\n\nconst QandAManager = (props) => {\n const context = useContext(MainContext)\n const [loadedQuestions, setLoadedQuestions] = useState([])\n const [pushedQuestions, setPushedQuestions] = useState([])\n const [sentQuestions, setSentQuestions] = useState([])\n const [editableQuestions, setEditableQuestions] = useState([])\n const [editableQuestionsId, setEditableQuestionsId] = useState([])\n const [currentChannelId, setCurrentChannelId] = useState();\n const [currentChannelTag, setCurrentChannelTag] = useState();\n const [loading, setLoading] = useState(false)\n\n // useEffect(() => {\n // _loadQuestions()\n // }, [])\n\n useEffect(() => {\n if (pushedQuestions.length > 0) {\n let newLoadedQuestions = [...pushedQuestions]\n newLoadedQuestions = newLoadedQuestions.concat(loadedQuestions)\n setLoadedQuestions(newLoadedQuestions)\n setPushedQuestions([])\n }\n }, [pushedQuestions])\n\n // useEffect(() => {\n // window.Pusher = initPusher()\n\n // if (context.episodeId && !window._.isEmpty(context.user)) {\n // const channel = window.Pusher.subscribe(`private-qaa-moderator-${props.eventId}.${context.episodeId}`)\n // channel.bind_global(globalCallback);\n // }\n // return function cleanup() {\n // if (window.Pusher) {\n // window.Pusher.unsubscribe(`private-qaa-moderator-${props.eventId}.${context.episodeId}`)\n // }\n // };\n // }, [context.episodeId])\n\n useEffect(() => {\n if (currentChannelId) {\n _loadQuestions(context.episodeId, currentChannelTag)\n\n window.Pusher = initPusher()\n\n if (context.episodeId && !window._.isEmpty(context.user)) {\n const channel = window.Pusher.subscribe(`private-qaa-moderator-${props.eventId}.${context.episodeId}`)\n channel.bind_global(globalCallback);\n }\n return function cleanup() {\n if (window.Pusher) {\n window.Pusher.unsubscribe(`private-qaa-moderator-${props.eventId}.${context.episodeId}`)\n }\n };\n }\n }, [currentChannelTag, context.episodeId])\n\n const _loadQuestions = async (episodeId, tag) => {\n let params = {\n episode_id: episodeId\n }\n if (tag) {\n params = {\n ...params,\n stream_id: tag\n }\n }\n const res = await loadQuestions(params)\n setLoadedQuestions(res)\n const res2 = await loadQuestions({\n ...params,\n forwarded: true\n })\n setSentQuestions(res2)\n }\n\n const globalCallback = (eventName, data) => {\n switch (eventName) {\n case \"App\\\\Events\\\\NewQuestionToModerate\":\n addNewQuestionToModerate(data.question, currentChannelTag)\n break\n }\n }\n\n const addNewQuestionToModerate = (question, tag) => {\n console.log(\"currentChannelTag\", currentChannelTag, tag)\n if (!currentChannelTag || parseInt(currentChannelTag) === parseInt(question.stream_id)) {\n let newLoadedQuestions = [...pushedQuestions]\n newLoadedQuestions.unshift(question)\n setPushedQuestions(newLoadedQuestions)\n }\n }\n\n const addToEditableList = (item) => {\n let newList = [...editableQuestions]\n let newListId = [...editableQuestionsId]\n newList.unshift(item)\n newListId.unshift(item.id)\n setEditableQuestions(newList)\n setEditableQuestionsId(newListId)\n\n // setLoadedQuestions(loadedQuestions => [...loadedQuestions].filter(q => q.id !== item.id))\n }\n\n const removeFromEditableList = (itemId) => {\n let newList = [...editableQuestions]\n let newListId = [...editableQuestionsId]\n newList = newList.filter(item => item.id !== itemId)\n newListId = newListId.filter(id => id !== itemId)\n setEditableQuestions(newList)\n setEditableQuestionsId(newListId)\n }\n\n const removeFromPage = (question) => {\n removeFromEditableList(question.id)\n // if (!question.deleted) {\n if (question.confirmed) {\n addToSentList(question)\n }\n // else {\n if (question.defaultValues) {\n question = {\n ...question,\n edited_content: question.defaultValues.edited_content\n }\n }\n // const newList = [...loadedQuestions].filter(item => item.id !== question.id)\n // console.log(\"newList\", newList)\n // if (!question.deleted) {\n // newList.unshift(question)\n // }\n // console.log(\"newList\", newList)\n // setLoadedQuestions(newList)\n setLoadedQuestions(a => {\n let newList = [...a].filter(item => item.id !== question.id)\n if (!question.deleted && !question.confirmed) {\n newList.unshift(question)\n // newList = [question].concat(newList)\n }\n return newList\n })\n // addNewQuestionToModerate(question)\n // }\n // }\n }\n\n const addToSentList = (question) => {\n let newSentList = [...sentQuestions]\n newSentList.unshift(question)\n setSentQuestions(newSentList)\n }\n\n const deleteSelectedQuestion = async (item) => {\n setLoading(item.id)\n try {\n await deleteQuestion(item.id)\n removeFromPage({\n ...item,\n deleted: true\n })\n }\n catch (e) {\n alert(\"Something went wrong\")\n }\n finally {\n setLoading(false)\n }\n }\n\n const openConfirm = (item) => {\n // eslint-disable-next-line no-restricted-globals\n if (confirm(\"Are you sure you want to delete permanently this question?\")) {\n deleteSelectedQuestion(item)\n }\n }\n\n const openSaveForLater = (item) => {\n }\n let loadedQuestionsFiltered = loadedQuestions.filter((item, index) => !editableQuestionsId.includes(item.id))\n loadedQuestionsFiltered = _.uniqBy(loadedQuestionsFiltered, 'id')\n // const loadedQuestionsFiltered = loadedQuestions\n return (\n <>\n \n
Questions from users {`${loadedQuestionsFiltered?.length > 0 ? ` (${loadedQuestionsFiltered.length})` : \"\"}`}
\n {\n loadedQuestionsFiltered && loadedQuestionsFiltered.length > 0 ? loadedQuestionsFiltered.map((item, index) => {\n return (\n
addToEditableList(item)}\n />\n )\n }) : (\n Questions list is empty
\n )\n }\n \n \n
Selected questions
\n
\n {\n editableQuestions && editableQuestions.length > 0 ? editableQuestions.map((item, index) => {\n return (\n
removeFromEditableList(item.id)}\n onAbort={() => removeFromPage(item)}\n onSubmit={(newValues) => removeFromPage(newValues)}\n onDelete={() => openConfirm(item)}\n onUpdate={() => openSaveForLater(item)}\n />\n )\n }) : (\n Select questions to edit
\n )\n }\n \n
Forwarded to the chairman
\n {\n sentQuestions && sentQuestions.length > 0 ? sentQuestions.map((item, index) => {\n return (\n
\n )\n }) : null\n }\n
\n \n
Add questions
\n addToSentList(e)}\n handleCurrentChannel={(e) => setCurrentChannelId(e)}\n handleCurrentChannelTag={(e) => setCurrentChannelTag(e)}\n />\n \n >\n )\n}\n\nexport default QandAManager","import classNames from \"classnames\"\nimport React, { useContext, useEffect, useState } from \"react\"\nimport MainContext from \"../../context/MainContext\"\nimport { loadQuestions, markQuestionAsRead } from \"../../api/functions\"\nimport { getContents, initPusher, localTime } from \"../../utils/functions\"\nimport Button from \"../../ui/Button/Button\"\nimport Input from \"../Input/Input\"\n\nconst QaACardSidebar = (props) => {\n\n const context = useContext(MainContext)\n const country = window._.get(props, \"country.title\")\n const senderIsAttendant = !window._.get(props, \"subscriber.subscription.is_chairman\") && !window._.get(props, \"subscriber.subscription.is_internal\")\n return (\n \n
\n {window._.get(props, \"subscriber.firstname\")} {window._.get(props, \"subscriber.lastname\")} {\n country && senderIsAttendant ? ` (${country})` : null\n }\n
\n
{localTime(window._.get(props, \"created_at\"), context.event.timezone).format(\"D-M-Y H:m\")}
\n {\n props.category && (\n
[{props.category}]
\n )\n }\n
\n {window._.get(props, \"edited_content\")}\n
\n
\n )\n}\n\nconst QaACardEditable = (props) => {\n\n const context = useContext(MainContext)\n const [loading, setLoading] = useState(false)\n const country = window._.get(props, \"country.title\")\n const senderIsAttendant = !window._.get(props, \"subscriber.subscription.is_chairman\") && !window._.get(props, \"subscriber.subscription.is_internal\")\n const markAsRead = async () => {\n setLoading(true)\n try {\n const res = await markQuestionAsRead(props.id)\n if (window._.get(res, \"id\")) {\n props.onSubmit()\n }\n }\n catch (e) {\n alert(\"Something went wrong\")\n }\n finally {\n setLoading(false)\n }\n }\n\n return (\n \n
{localTime(window._.get(props, \"created_at\"), context.event.timezone).format(\"D-M-Y H:m\")}
\n
{window._.get(props, \"subscriber.firstname\")} {window._.get(props, \"subscriber.lastname\")} {\n country && senderIsAttendant ? ` (${country})` : null\n }
\n {\n props.category && (\n
\n [{props.category}]\n
\n )\n }\n
{window._.get(props, \"edited_content\")}
\n
\n
\n
\n )\n}\n\nconst QandASpeaker = (props) => {\n const context = useContext(MainContext)\n const [loadedQuestions, setLoadedQuestions] = useState([])\n const [pushedQuestions, setPushedQuestions] = useState([])\n const [editableQuestions, setEditableQuestions] = useState([])\n const [editableQuestionsId, setEditableQuestionsId] = useState([])\n const [categoryFilter, setCategoryFilter] = useState()\n const [currentChannel, setCurrentChannel] = useState();\n const [currentChannelTag, setCurrentChannelTag] = useState();\n // useEffect(() => {\n // _loadQuestions()\n // }, [])\n\n useEffect(() => {\n if (pushedQuestions.length > 0) {\n let newLoadedQuestions = [...pushedQuestions]\n newLoadedQuestions = newLoadedQuestions.concat(loadedQuestions)\n setLoadedQuestions(newLoadedQuestions)\n setPushedQuestions([])\n }\n }, [pushedQuestions])\n\n useEffect(() => {\n if (!context.channelId) {\n setCurrentChannel()\n }\n else {\n setCurrentChannel(context.user?.channels?.find(item => parseInt(item.id) === parseInt(context.channelId)))\n }\n }, [context.channelId, context.user])\n\n useEffect(() => {\n setCurrentChannelTag(currentChannel?.stream_id)\n }, [currentChannel])\n\n useEffect(() => {\n if (currentChannel) {\n _loadQuestions(context.episodeId, currentChannelTag)\n }\n window.Pusher = initPusher()\n if (context.episodeId && !window._.isEmpty(context.user)) {\n // _loadQuestions(context.episodeId)\n const channel = window.Pusher.subscribe(`private-qaa-speaker-${props.eventId}.${context.episodeId}`)\n channel.bind_global(globalCallback);\n }\n return function cleanup() {\n if (window.Pusher) {\n window.Pusher.unsubscribe(`private-qaa-speaker-${props.eventId}.${context.episodeId}`)\n }\n };\n }, [currentChannelTag, context.episodeId])\n\n // useEffect(() => {\n // window.Pusher = initPusher()\n // if (context.episodeId && !window._.isEmpty(context.user)) {\n // // _loadQuestions(context.episodeId)\n // const channel = window.Pusher.subscribe(`private-qaa-speaker-${props.eventId}.${context.episodeId}`)\n // channel.bind_global(globalCallback);\n // }\n // return function cleanup() {\n // if (window.Pusher) {\n // window.Pusher.unsubscribe(`private-qaa-speaker-${props.eventId}.${context.episodeId}`)\n // }\n // };\n // }, [context.episodeId])\n\n const _loadQuestions = async (episodeId, tag) => {\n let params = {\n episode_id: episodeId\n }\n if (tag) {\n params = {\n ...params,\n stream_id: tag\n }\n }\n const res = await loadQuestions(params)\n setLoadedQuestions(res)\n }\n\n const globalCallback = (eventName, data) => {\n switch (eventName) {\n case \"App\\\\Events\\\\NewQuestionToAnswer\":\n addNewQuestionToAnswer(data.question)\n break\n }\n }\n\n const addNewQuestionToAnswer = (question) => {\n if (!currentChannelTag || parseInt(currentChannelTag) === parseInt(question.stream_id)) {\n let newLoadedQuestions = [...pushedQuestions]\n newLoadedQuestions.unshift(question)\n setPushedQuestions(newLoadedQuestions)\n }\n }\n\n const addToEditableList = (item) => {\n let newList = [...editableQuestions]\n let newListId = [...editableQuestionsId]\n newList.unshift(item)\n newListId.unshift(item.id)\n setEditableQuestions(newList)\n setEditableQuestionsId(newListId)\n }\n\n const removeFromEditableList = (itemId) => {\n let newList = [...editableQuestions]\n let newListId = [...editableQuestionsId]\n newList = newList.filter(item => item.id !== itemId)\n newListId = newListId.filter(id => id !== itemId)\n setEditableQuestions(newList)\n setEditableQuestionsId(newListId)\n }\n\n const removeFromPage = (id) => {\n let newList = [...loadedQuestions]\n newList = newList.filter(item => item.id !== id)\n removeFromEditableList(id)\n setLoadedQuestions(newList)\n }\n\n let loadedQuestionsFiltered = loadedQuestions.filter(item => !editableQuestionsId.includes(item.id))\n if (categoryFilter && categoryFilter !== \"Filter by category\") {\n loadedQuestionsFiltered = loadedQuestionsFiltered.filter(item => categoryFilter === item.category)\n }\n return (\n <>\n \n
Questions from users
\n {\n window._.get(context, \"episode.qaa_categories\") ? (\n
\n setCategoryFilter(e.target.value)}\n options={[\n {\n value: null,\n label: window._.get(context, \"contents.qaa_category\") || \"Filter by category\",\n },\n ...window._.get(context, \"episode.qaa_categories\").map(item => {\n return {\n value: item.toLowerCase(),//internal_false_value_label\n label: item\n }\n })]}\n />\n
\n ) : \"No\"\n }\n {\n loadedQuestionsFiltered && loadedQuestionsFiltered.length > 0 ? loadedQuestionsFiltered.map(item => {\n return (\n
addToEditableList(item)}\n />\n )\n }) : (\n The list is empty
\n )\n }\n \n \n
Select questions to read
\n {\n editableQuestions && editableQuestions.length > 0 ? editableQuestions.map(item => {\n return (\n
removeFromEditableList(item.id)}\n onSubmit={() => removeFromPage(item.id)}\n />\n )\n }) : (\n The list is empty
\n )\n }\n \n >\n )\n}\n\nexport default QandASpeaker","import classNames from \"classnames\"\nimport \"./AgendaAccordion.scss\"\n\nconst AgendaAccordion = (props) => {\n return (\n \n {props.children}\n
\n )\n}\n\nexport default AgendaAccordion","import classNames from 'classnames';\nimport React, { useContext } from 'react';\nimport { ThemeContext } from 'styled-components';\nimport MainContext from '../../context/MainContext';\nimport Row from '../../ui/Row/Row';\nimport { getThemeConfig } from '../../utils/functions';\nimport \"./EpisodeTitle.scss\"\n\nconst EpisodeTitle = ({ linesOrder, ...props }) => {\n\n const { episode, fullWidth } = props\n const context = useContext(MainContext)\n const themeContext = useContext(ThemeContext);\n const speakersLayoutCols = getThemeConfig(context, \"speakers.cols\")\n const agendaLayoutCols = getThemeConfig(context, \"agenda.cols\")\n\n let mobile = 12\n let tablet = 12\n let desktop = 12\n\n try {\n mobile = speakersLayoutCols.mobile + agendaLayoutCols.mobile\n tablet = speakersLayoutCols.tablet + agendaLayoutCols.tablet\n desktop = speakersLayoutCols.desktop + agendaLayoutCols.desktop\n }\n catch (e) { }\n\n // const liveStartDate = window._.get(episode, \"live_scheduling.start_at\")\n const liveStartDateDayName = window._.get(episode, \"live_scheduling.dayname_start_at\")\n // const vodStartDate = window._.get(episode, \"vod_scheduling.start_at\")\n const vodStartDateDayName = window._.get(episode, \"vod_scheduling.dayname_start_at\")\n\n // const liveStartDateTimeFormatted = liveStartDate ? localTime(liveStartDate, context.event.timezone).format(\"MMM D, YYYY\") : null\n const liveStartDateTimeFormatted = window._.get(episode, \"live_scheduling.formatted_start_at\")\n const liveStartDateFormatted = window._.get(episode, \"live_scheduling.formatted_date_start_at\")\n // const vodStartDateTimeFormatted = vodStartDate ? localTime(vodStartDate, context.event.timezone).format(\"MMM D, YYYY\") : null\n // const vodStartDateTimeFormatted = window._.get(episode, \"vod_scheduling.formatted_finish_at\")\n const vodStartDateFormatted = window._.get(episode, \"vod_scheduling.formatted_date_start_at\")\n\n // const openAccordionButton = (\n // props.onToggleAccordionClicked()}\n // >\n // {props.open ? \"-\" : \"+\"}\n //
\n // )\n\n const interanlDatesBoxClassName = fullWidth ? \"col-12\" : \"col-xs-12 col-md-12 col-lg-3\"\n const interanlDetailssBoxClassName = fullWidth ? \"col-12\" : \"col-xs-12 col-md-12 col-lg-9\"\n\n const maxChannelDurationInHours = window._.get(props, \"episode.max_channel_duration\")\n const maxChannelDuration = themeContext.showVodDurationInDays ? parseInt(maxChannelDurationInHours / 24) : maxChannelDurationInHours\n\n const episodeDate = (\n <>\n {props.eventLive ? (\n \n {props.eventLiveTitle ? (\n \n ) : null}\n {\n themeContext.dateOnNewLine ?
: \n }\n \n {/* {localTime(props.eventLive, context.event.timezone).format(\"HH:mm\")} */}\n {props.eventLive}\n \n
\n ) : null}\n {props.eventVod ? (\n \n {props.eventVodTitle ? (\n \n ) : null}\n {\n themeContext.dateOnNewLine ?
: \n }\n \n {/* {localTime(props.eventVod, context.event.timezone).format(\"HH:mm\")} */}\n {props.eventVod}\n {\n window._.get(props, \"episode.vod_channels_duration\") ? (\n {props.upTo || \"up to\"} {maxChannelDuration} {props.hours || \"hours\"}\n // {window._.get(props, \"episode.vod_channels_duration\").join(\"/\")} hours\n ) : null\n }\n \n
\n ) : null}\n >\n );\n\n const episodeTitle = (\n <>\n {props.eventTitle}\n {\n props.eventSubTitle ? (\n \n {props.eventSubTitle}\n
\n ) : null\n }\n >\n )\n // linesOrder\n\n let firstRow = null;\n let secondRow = null;\n\n switch (linesOrder) {\n case 1:\n firstRow = (\n {episodeTitle}\n );;\n secondRow = episodeDate;\n break;\n default:\n firstRow = episodeDate;\n secondRow = episodeTitle;\n }\n\n const intro = props.eventTitle ? (\n 12 ? 12 : mobile}`]: mobile,\n [`col-md-${tablet > 12 ? 12 : tablet}`]: tablet,\n [`col-lg-${desktop > 12 ? 12 : desktop}`]: desktop,\n }, {\n popup: props.popup\n })}>\n
\n {\n props.hideDates ? null : (\n \n {\n liveStartDateFormatted ? (\n <>\n
{liveStartDateDayName}
\n
{liveStartDateFormatted}
\n >\n ) : null\n }\n {\n vodStartDateFormatted && !liveStartDateTimeFormatted ? (\n // vodStartDateTimeFormatted && (liveStartDateTimeFormatted !== vodStartDateTimeFormatted) ? (\n <>\n
{vodStartDateDayName}
\n
{vodStartDateFormatted}
\n >\n ) : null\n }\n
\n )\n }\n \n {
\n {firstRow}\n
}\n
\n {secondRow}\n
\n
\n
\n
\n ) : null\n return intro\n}\n\nEpisodeTitle.className = \"episodetitle\"\nEpisodeTitle.fluid = true\nexport default EpisodeTitle","import classNames from \"classnames\"\nimport { useState } from \"react\"\nimport AgendaAccordion from \"../../ui/AgendaAccordion/AgendaAccordion\"\nimport Row from \"../../ui/Row/Row\"\nimport { consoleLog } from \"../../utils/functions\"\nimport Agenda from \"../Agenda/Agenda\"\nimport EpisodeTitle from \"../EpisodeTitle/EpisodeTitle\"\nimport Speakers from \"../Speakers/Speakers\"\nimport \"./EpisodeDetails.scss\"\n\nconst EpisodeDetails = (props) => {\n\n const [open, setOpen] = useState(false)\n const {\n episode,\n language,\n country,\n internal,\n contents,\n expandable,\n className,\n groupedSeakers,\n hideAgendaDatetime,\n accordionTitleIcon,\n fullWidth\n } = props\n\n const toggle = () => {\n consoleLog(\"toggle\")\n setOpen(open => {\n return !open\n })\n }\n\n let openIcon = null;\n let closeIcon = null;\n\n switch (accordionTitleIcon) {\n case 1:\n openIcon = (\n \n );\n closeIcon = (\n \n )\n break;\n default:\n openIcon = \"+\";\n closeIcon = \"-\";\n }\n\n const openAccordionButton = expandable ? (\n \n {open ? closeIcon : openIcon}\n
\n ) : null\n\n const accordion = expandable ? (\n \n \n \n {\n groupedSeakers ? null : (\n \n )\n }\n\n
\n \n ) : null\n\n return (\n \n {openAccordionButton}\n \n {accordion}\n
\n )\n}\n\nexport default EpisodeDetails","import classNames from \"classnames\"\nimport \"./InitialModalBanner.scss\"\n\nconst InitialModalBanner = (props) => {\n\n const { icon } = props\n\n // switch (icon) {\n // case \"calendar\":\n // iconUrl = \"\"\n // break\n // case \"play\":\n // iconUrl = \"\"\n // break\n // case \"camera\":\n // iconUrl = \"\"\n // break\n // case \"flag\":\n // iconUrl = \"\"\n // break\n // }\n\n // const icon = iconUrl ? (\n // \n //

\n //
\n // ) : null\n const style = icon ? {\n backgroundImage: `url(/img/icons/${icon}.png)`\n } : {}\n return (\n \n
\n {props.children}\n
\n
\n )\n}\n\nexport default InitialModalBanner","import React, { useEffect, useState, useContext } from \"react\"\nimport AdamModal from \"../AdamModal/AdamModal\";\nimport { ThemeContext } from \"styled-components\";\nimport MainContext from \"../../context/MainContext\";\nimport Container from \"../../ui/Container/Container\";\nimport Row from \"../../ui/Row/Row\";\nimport InitialModalBanner from \"../../ui/InitialModalBanner/InitialModalBanner\";\nimport EventTitle from \"../EventTitle/EventTitle\";\nimport EpisodeDetails from \"../EpisodeDetails/EpisodeDetails\";\n\nconst InitialModal = (props) => {\n const [modalOpen, setModalOpen] = useState(false)\n const context = useContext(MainContext)\n const themeContext = useContext(ThemeContext);\n\n const { contents } = props\n const { is2ColsView, episode, event, language, internal, country } = context\n\n useEffect(() => {\n setModalOpen(props.open)\n }, [props.open])\n\n // hide_logo_initial_popup hideLogoInitialPopup\n // hide_title_initial_popup hideTitleInitialPopup\n const logo = !window._.isEmpty(themeContext.mediaHeaderLogoDesktop) && themeContext.showMainlogoInitialPopup ? (\n
\n ) : context.siteTitle\n\n const bannersContents = {\n \"calendar\": contents.initialPopupBox1Title,\n \"youtube\": contents.initialPopupBox2Title,\n \"video\": contents.initialPopupBox3Title,\n \"flag\": contents.initialPopupBox4Title,\n }\n let banners = []\n if (themeContext.showBannersInitialPopup) {\n Object.keys(bannersContents).forEach(key => {\n if (bannersContents[key]) {\n banners.push({bannersContents[key]})\n }\n })\n }\n\n const eventTitle = themeContext.showTitleInitialPopup && episode ? (\n \n onEpisodeChange(e)}\n hideDropDown={true}\n showRightColLogo={themeContext.showLogoInitialPopup}\n />\n
\n ) : null\n\n const grid = event ? (\n \n {logo}\n {eventTitle}\n {\n banners?.length > 0 && (\n \n {banners}\n
\n )\n }\n \n {\n // form theme configuration\n themeContext.showEpisodesInitialPopup ? event.episodes.map((item, index) => {\n return (\n \n )\n }) : null\n }\n
\n {\n props.content ?\n (\n \n \n
\n ) : null\n }\n {\n contents.initialPopupFooter ? (\n \n ) : null\n }\n \n ) : null\n\n const modal = (\n props.onClose()}\n />\n )\n\n return modal\n}\n\nexport default InitialModal","import React, { useEffect, useState } from \"react\"\nimport { utc } from \"../../utils/functions\"\n\n\nconst CountDown = (props) => {\n\n const [timestamp, setTimestamp] = useState(0)\n\n useEffect(() => {\n const diff = utc().subtract(utc(props.dateTime))\n setTimestamp(diff.unix())\n window.setInterval(() => {\n const diff = utc().subtract(utc(props.dateTime))\n if (diff.unix() === 0 && props.onZero) {\n props.onZero()\n }\n setTimestamp(diff.unix())\n }, 1000)\n }, [])\n\n const seconds = Math.abs(parseInt(timestamp % 60))\n const minutes = Math.abs(parseInt(((timestamp % 3600)) / 60))\n const hrs = Math.abs(parseInt(timestamp % 86400 / 3600))\n const days = Math.abs(parseInt(timestamp / 86400))\n\n let output = null\n\n switch (props.mode) {\n case \"splitted\":\n output = (\n <>\n {days || \"\"}{days ? \"d \" : null}{hrs || \"\"}{hrs ? \"h \" : null}{minutes < 10 ? \"0\" : null}{minutes}m {seconds < 10 ? \"0\" : null}{seconds}s\n >\n )\n break\n default:\n output = (\n <>\n {hrs || \"\"}{hrs ? \":\" : null}{minutes < 10 ? \"0\" : null}{minutes}:{seconds < 10 ? \"0\" : null}{seconds}\n >\n )\n }\n\n return output\n}\n\nexport default CountDown","import React, { useEffect, useState, useContext } from \"react\"\nimport AdamModal from \"../AdamModal/AdamModal\";\nimport MainContext from \"../../context/MainContext\";\nimport Container from \"../../ui/Container/Container\";\nimport { localTime } from \"../../utils/functions\";\nimport Row from \"../../ui/Row/Row\";\nimport CountDown from \"../../ui/CountDown/CountDown\";\nimport \"./VirtualWorldModal.scss\"\n\nconst VirtualWorldModal = (props) => {\n const [modalOpen, setModalOpen] = useState(false)\n const context = useContext(MainContext)\n\n useEffect(() => {\n setModalOpen(props.open)\n }, [props.open])\n\n const goToVw = () => {\n if (props.virtual_world_url && context.user) {\n let vwUrl = props.virtual_world_url + `?iam=${context.user.email}`\n if (context.isPreview) {\n vwUrl += `&preview=${context.isPreview}`\n }\n window.location.assign(vwUrl)\n }\n }\n\n const { virtual_world_start_at } = props\n\n const grid = (\n \n \n \n {props.eventTitle}\n
\n
\n \n \n
\n \n \n \n
\n
\n \n )\n\n const now = new Date()\n const footerContent = context.event.client_name ? `Copyright © ${now.getFullYear()} ${context.event.client_name}` : null\n\n const modal = (\n props.onClose(false)}\n />\n )\n\n return modal\n}\n\nexport default VirtualWorldModal","import React, { useContext } from \"react\"\nimport classNames from \"classnames\";\nimport PlayerBox from \"../PlayerBox/PlayerBox\";\nimport QandA from \"../QandA/QandA\";\nimport Row from \"../../ui/Row/Row\";\nimport { LIVE, PRE_LIVE, PRE_VOD, UNKNOWN, VOD } from \"../../config/channelStatus\";\nimport SlidoIframe from \"../SlidoIframe/SlidoIframe\";\nimport \"./IframeContent.scss\"\nimport FakePlayer from \"../FakePlayer/FakePlayer\";\nimport MainContext from \"../../context/MainContext\";\n\nconst IframeContent = (props) => {\n\n const { slido, eventId, episode, channelStatus, goToPlayer, hideQaAIframe } = props\n const slidoUrl = episode ? episode.slido_url : \"\"\n\n const context = useContext(MainContext)\n let content = null\n\n const showSlido = (slido && context.channelStatus && context.channelStatus !== UNKNOWN)\n\n if (!episode) {\n content = (\n \n \n {window._.get(context, \"contents.notEligible\")}\n \n
\n )\n }\n else if (goToPlayer && episode) {\n content = (\n <>\n \n
\n {\n ([LIVE, PRE_LIVE, VOD, PRE_VOD].includes(channelStatus)) && !hideQaAIframe ? (\n
\n ) : null\n }\n
\n {\n (showSlido) && slidoUrl ? (\n \n \n
\n ) : null\n }\n >\n )\n }\n return (\n \n \n {content}\n
\n
\n )\n}\n\nexport default IframeContent","import React, { useEffect, useState, useContext } from \"react\"\nimport AdamModal from \"../AdamModal/AdamModal\";\nimport MainContext from \"../../context/MainContext\";\nimport Button from \"../../ui/Button/Button\";\nimport Spin from \"../../ui/Spin/Spin\";\nimport Container from \"../../ui/Container/Container\";\nimport Row from \"../../ui/Row/Row\";\n\nconst AlreadyLoggedInModal = (props) => {\n const [modalOpen, setModalOpen] = useState(false)\n const context = useContext(MainContext)\n\n useEffect(() => {\n setModalOpen(props.open)\n }, [props.open])\n\n\n\n const grid = (\n \n \n {\n context.loginErrors ? (\n \n {context.loginErrors.join(\", \")}\n
\n ) : null\n }\n
\n\n \n \n {\n context.alreadyLoggedError ? (\n <>\n
\n {window._.get(context, \"contents.closeEveryOpenSessionMessage\")}\n
\n
\n >\n ) : null\n }\n
\n
\n \n )\n\n const modal = (\n context.closeAlreadyLoggedInModal()}\n />\n )\n\n return modal\n}\n\nexport default AlreadyLoggedInModal","import React, { useEffect, useState, useContext } from \"react\"\nimport MainContext from \"../../context/MainContext\";\nimport Container from \"../../ui/Container/Container\";\nimport Row from \"../../ui/Row/Row\";\nimport Button from \"../../ui/Button/Button\";\nimport { sendEvaluationFormAnswers } from \"../../api/functions\"\nimport classNames from \"classnames\";\nimport \"./EvaluationForm.scss\"\n\nconst EvaluationForm = (props) => {\n const [modalOpen, setModalOpen] = useState(false)\n const context = useContext(MainContext)\n const [episode, setEpisode] = useState()\n const [loading, setLoading] = useState(false)\n const [answers, setAnswers] = useState({})\n const [formFeedback, setFormFeedback] = useState()\n const [formErrors, setFormErrors] = useState([])\n const [answered, setAnswered] = useState([])\n\n const { user } = props\n // const userEpisodes = window._.get(user, `questions`, []).filter(item => item.is_evaluation_open)\n const userOpenQuestions = window._.get(user, `questions`, [])\n const userEpisodes = window._.get(user, `episodes`, []).filter(item => item.is_evaluation_open && userOpenQuestions.includes(item.id))\n const questionsCategories = window._.get(episode, \"evaluation_questions\")\n\n useEffect(() => {\n if (userEpisodes.length === 1) {\n setEpisode(userEpisodes[0])\n }\n }, [user])\n\n useEffect(() => {\n setModalOpen(props.open)\n }, [props.open])\n\n const isModal = () => {\n return props.modal\n }\n\n const onChange = (key, e) => {\n const value = e.target.value\n setAnswers({\n ...answers,\n [key]: value\n })\n }\n\n const buttonIsDisabled = () => {\n if (!answers) {\n return false\n }\n let answersResults = []\n Object.keys(answers).forEach(k => {\n answersResults.push(answers[k])\n })\n let questionsCOunt = 0\n if (questionsCategories) {\n questionsCategories.forEach(cat => {\n questionsCOunt += cat.evaluationquestions.length\n })\n }\n return (\n !questionsCategories ||\n loading ||\n answersResults.filter(item => !!item).length !== questionsCOunt\n )\n }\n\n const sendAnswers = async () => {\n setFormFeedback(formFeedback => {\n return {\n ...formFeedback,\n [episode.id]: null\n }\n })\n setFormErrors()\n setLoading(true)\n try {\n const res = await sendEvaluationFormAnswers({\n episode_id: episode.id,\n answers: answers\n })\n setFormFeedback(formFeedback => {\n let ff = formFeedback\n ff[episode.id] = \"Thank you for your time!\"\n return ff\n })\n // setFormFeedback(\"Thank you for your time!\")\n setAnswered(answered => answered.concat(episode.id))\n setAnswers()\n // props.setEvaluationFormAnswered(true)\n // window.setTimeout(() => {\n // close()\n // }, 2000)\n }\n catch (e) {\n const newErrors = window._.get(e, \"response.data.message\")\n setFormErrors(newErrors)\n }\n finally {\n setLoading(false)\n }\n }\n\n const close = () => {\n setFormErrors()\n setFormFeedback()\n props.closeEvaluartionFormModal()\n }\n\n const grid = episode ? window._.get(props.answered, episode.id) ? ( //window._.get(props.answered, episode.id)\n \n \n \n {props.alreadyAnsweredMessage}\n
\n
\n \n ) : (\n \n \n \n {\n userEpisodes.length > 1 ? (\n
setEpisode()}\n >\n ) : null\n }\n
{episode.evaluation_form_title || episode.title}
\n {episode.episode_categories && (\n
\n {episode.episode_categories.map(cat => cat.title_default)}\n
\n )}\n
\n
\n {\n window._.get(formFeedback, episode.id) ? (\n \n \n {window._.get(formFeedback, episode.id)}\n
\n
\n ) : questionsCategories ? questionsCategories.map((category, index) => {\n return (\n \n {\n category.evaluationquestions.length ? (\n
\n \n {category.title}\n
\n
\n ) : null\n }\n\n
\n {\n category.evaluationquestions.map(item => {\n\n const answer = (!item.question_type) ? (\n
\n ) : item.is_radio ? (\n
\n {\n item.options ? item.options.map(option => {\n return (\n
\n onChange(item.id, e)}\n />\n \n
\n )\n }) : null\n }\n
\n ) : (\n
\n )\n\n const legend = item.legend ? (\n
\n ) : null\n\n return (\n
\n \n \n {answer}\n
\n
\n )\n })\n }\n
\n
\n )\n }) : \"No questions\"\n }\n \n \n {\n formErrors ? (\n
\n {formErrors}\n
\n ) : null\n }\n {\n window._.get(formFeedback, episode.id) ? null : (\n
\n \n
\n )\n }\n\n
\n
\n \n\n ) : (\n \n \n {userEpisodes.map(_episode => {\n const _answered = window._.get(user, `answers.${_episode.id}.answered`) || answered.includes(_episode.id)\n return (\n {\n if (_answered) {\n return false\n }\n else {\n setEpisode(_episode)\n }\n }}\n >\n
\n {_episode.evaluation_form_title || _episode.title}\n
\n {\n _answered ? (\n
\n \n {props.alreadyAnsweredMessage}\n \n
\n ) : null\n }\n
\n )\n })}\n \n \n
\n
\n \n )\n\n // const modal = (\n // close()}\n // />\n // )\n\n return (\n {grid}\n )\n}\n\nexport default EvaluationForm","export const DEFAULT = 0; // DEFAULT\n\nexport const MSD_CTIO_A = 101;\nexport const MSD_CTIO_B = 102;\nexport const MSD_CTIO_C = 100;","import classNames from 'classnames';\nimport React, { useContext } from 'react';\nimport { ThemeContext } from 'styled-components';\nimport MainContext from '../../context/MainContext';\nimport Row from '../../ui/Row/Row';\nimport { getThemeConfig, localTime } from '../../utils/functions';\nimport \"./EpisodeTitle.scss\"\n\nconst EpisodeTitleWithNestedAgenda = (props) => {\n\n const { episode, agenda, fullWidth } = props\n const context = useContext(MainContext)\n const themeContext = useContext(ThemeContext);\n const speakersLayoutCols = getThemeConfig(context, \"speakers.cols\")\n const agendaLayoutCols = getThemeConfig(context, \"agenda.cols\")\n\n let mobile = 12\n let tablet = 12\n let desktop = 12\n\n try {\n mobile = speakersLayoutCols.mobile + agendaLayoutCols.mobile\n tablet = speakersLayoutCols.tablet + agendaLayoutCols.tablet\n desktop = speakersLayoutCols.desktop + agendaLayoutCols.desktop\n }\n catch (e) { }\n\n const title = agenda?.title || props.eventTitle\n\n // const interanlDetailssBoxClassName = fullWidth ? \"col-12\" : \"col-xs-12 col-md-12 col-lg-9\"\n console.log(\"liveStartDateFormatted\", props.eventTitle, props.id)\n const intro = props.eventTitle ? (\n \n
\n {\n props.hideDates ? props.eventSubTitle ? (\n \n {props.eventSubTitle}\n
\n ) : null : (\n \n {\n props.eventTitle ? (\n <>\n {/*
{liveStartDate ? localTime(liveStartDate, context.event.timezone).format(\"dddd\") : null}
*/}\n
{title}
\n >\n ) : null\n }\n {/* {\n vodStartDateFormatted && !liveStartDateFormatted ? (\n // vodStartDateFormatted && (liveStartDateFormatted !== vodStartDateFormatted) ? (\n <>\n
{vodStartDate ? localTime(vodStartDate, context.event.timezone).format(\"dddd\") : null}
\n
{vodStartDateFormatted}
\n >\n ) : null\n } */}\n
\n )\n }\n
\n
\n ) : null\n return intro\n}\n\nEpisodeTitleWithNestedAgenda.className = \"parent-agenda-title\"\nEpisodeTitleWithNestedAgenda.fluid = true\nexport default EpisodeTitleWithNestedAgenda","import classNames from 'classnames';\nimport React, { useContext } from 'react';\nimport MainContext from '../../context/MainContext';\nimport Row from '../../ui/Row/Row';\nimport { localTime } from '../../utils/functions';\nimport \"./EpisodeTitle.scss\"\n\nconst NestedAgendaTitle = (props) => {\n\n const { agenda, showDate } = props\n const context = useContext(MainContext)\n // const speakersLayoutCols = getThemeConfig(context, \"speakers.cols\")\n // const agendaLayoutCols = getThemeConfig(context, \"agenda.cols\")\n\n // let mobile = 12\n // let tablet = 12\n // let desktop = 12\n\n // try {\n // mobile = speakersLayoutCols.mobile + agendaLayoutCols.mobile\n // tablet = speakersLayoutCols.tablet + agendaLayoutCols.tablet\n // desktop = speakersLayoutCols.desktop + agendaLayoutCols.desktop\n // }\n // catch (e) { }\n\n const title = (\n \n \n {\n showDate ?\n localTime(agenda.start_at, context.event.timezone).format(\"HH:mm\") :\n `${agenda.duration} ${window._.get(context, \"contents.minutes\") || 'minutes'}`\n }\n \n \n {agenda?.title}\n \n \n )\n const intro = title ? (\n \n
\n {\n props.hideDates ? null : (\n \n {\n title ? (\n <>\n {/*
{liveStartDate ? localTime(liveStartDate, context.event.timezone).format(\"dddd\") : null}
*/}\n
{title}
\n >\n ) : null\n }\n {/* {\n vodStartDateFormatted && !liveStartDateFormatted ? (\n // vodStartDateFormatted && (liveStartDateFormatted !== vodStartDateFormatted) ? (\n <>\n
{vodStartDate ? localTime(vodStartDate, context.event.timezone).format(\"dddd\") : null}
\n
{vodStartDateFormatted}
\n >\n ) : null\n } */}\n
\n )\n }\n
\n
\n ) : null\n return intro\n}\n\nNestedAgendaTitle.className = \"nested-agenda-title\"\nNestedAgendaTitle.fluid = true\nexport default NestedAgendaTitle","import classNames from \"classnames\"\nimport { useContext, useEffect, useState } from \"react\"\nimport MainContext from \"../../context/MainContext\"\nimport AgendaAccordion from \"../../ui/AgendaAccordion/AgendaAccordion\"\nimport Row from \"../../ui/Row/Row\"\nimport { consoleLog, getThemeConfig } from \"../../utils/functions\"\nimport Agenda from \"../Agenda/Agenda\"\nimport NestedAgendaTitle from \"../EpisodeTitle/NestedAgendaTitle\"\nimport Speakers from \"../Speakers/Speakers\"\nimport \"./EpisodeDetails.scss\"\nimport { LIVE, PRE_LIVE } from \"../../config/channelStatus\"\n\nconst NestedAgendaDetails = (props) => {\n\n const [open, setOpen] = useState(false)\n const [liveMode, setLiveMode] = useState(false)\n const context = useContext(MainContext)\n const {\n agenda,\n language,\n country,\n internal,\n episode,\n // expandable,\n className,\n groupedSeakers\n // fullWidth\n } = props\n\n useEffect(() => {\n let newLiveMode = false\n episode?.channels.forEach(element => {\n if ([LIVE, PRE_LIVE].includes(element.status)) {\n newLiveMode = true\n }\n });\n setLiveMode(newLiveMode)\n }, [episode])\n\n const toggle = () => {\n consoleLog(\"toggle\")\n setOpen(open => {\n return !open\n })\n }\n\n const getChildren = () => {\n return agenda.children || []\n }\n\n const hasChildren = () => {\n return getChildren().length > 0\n }\n\n const openAccordionButton = hasChildren() ? (\n \n {open ? (\n \n ) : \n }\n
\n ) : null\n\n const accordion = hasChildren() ? (\n \n {\n getChildren().map((child, index) => {\n return (\n \n \n {\n groupedSeakers ? null : (\n \n )\n }\n
\n )\n })\n }\n \n ) : null\n\n return (\n \n {openAccordionButton}\n \n {accordion}\n
\n )\n}\n\nexport default NestedAgendaDetails","import classNames from \"classnames\"\nimport { useContext, useEffect, useState } from \"react\"\nimport { consoleLog } from \"../../utils/functions\"\nimport EpisodeTitleWithNestedAgenda from \"../EpisodeTitle/EpisodeTitleWithNestedAgenda\"\nimport \"./EpisodeDetails.scss\"\nimport NestedAgendaDetails from \"./NestedAgendaDetails\"\nimport { LIVE, PRE_LIVE } from \"../../config/channelStatus\"\nimport { ThemeContext } from \"styled-components\"\n\nconst EpisodeDetailsWithNestedAgenda = (props) => {\n\n const themeContext = useContext(ThemeContext);\n const [open, setOpen] = useState(false)\n const [liveMode, setLiveMode] = useState(false)\n const {\n episode,\n language,\n country,\n contents,\n className,\n groupedSeakers\n } = props\n\n useEffect(() => {\n let newLiveMode = false\n episode?.channels.forEach(element => {\n if ([LIVE, PRE_LIVE].includes(element.status)) {\n newLiveMode = true\n }\n });\n setLiveMode(newLiveMode)\n }, [episode])\n\n const toggle = () => {\n consoleLog(\"toggle\")\n setOpen(open => {\n return !open\n })\n }\n\n const getEventVod = () => {\n return window._.get(episode, \"vod_scheduling.formatted_start_at\")\n }\n\n const getEventVodTitle = () => {\n return window._.get(contents, \"vodDatetimeTitle\")\n }\n\n const getChannelsDuration = () => {\n const maxChannelDurationInHours = window._.get(props, \"episode.max_channel_duration\")\n return themeContext.showVodDurationInDays ? parseInt(maxChannelDurationInHours / 24) : maxChannelDurationInHours\n }\n\n return (\n \n {/* {openAccordionButton} */}\n
\n {\n episode.agenda.map(item => {\n return
\n })\n }\n {getEventVod() && liveMode ? (\n
\n {window._.get(contents, \"vodDatetimeTitle\") ? (\n \n ) : null}\n
\n \n {/* {localTime(props.eventVod, context.event.timezone).format(\"HH:mm\")} */}\n {getEventVod()}\n {\n getChannelsDuration() ? (\n {props.upTo || \"up to\"} {getChannelsDuration()} {contents.hours || \"hours\"}\n // {window._.get(props, \"episode.vod_channels_duration\").join(\"/\")} hours\n ) : null\n }\n \n
\n ) : null}\n
\n )\n}\n\nexport default EpisodeDetailsWithNestedAgenda","import React, { useEffect, useState, useContext, useRef } from \"react\"\nimport AdamModal from \"../AdamModal/AdamModal\"\nimport MainContext from \"../../context/MainContext\"\nimport Container from \"../../ui/Container/Container\"\nimport Row from \"../../ui/Row/Row\"\nimport Button from \"../../ui/Button/Button\"\n\nconst WaitingRoomModal = (props) => {\n const [modalOpen, setModalOpen] = useState(false)\n const [playing, setPlaying] = useState(false)\n const audio = useRef()\n const context = useContext(MainContext)\n\n useEffect(() => {\n setModalOpen(props.open)\n // if (props.open && !playing) {\n // setTimeout(() => {\n // togglePlaying()\n // }, 2000)\n // }\n }, [props.open])\n\n const togglePlaying = () => {\n if (playing) {\n audio.current.pause()\n setPlaying(false)\n }\n else {\n audio.current.play().then(() => {\n setPlaying(true)\n }).catch(error => {\n console.log('Unable to play the video, User has not interacted yet.');\n })\n }\n }\n\n const grid = (\n \n\n \n \n {\n props.episode && (\n <>\n
\n {\n props.episode.waitingRoom?.jingle_media && (\n <>\n
\n \n
\n
\n >\n )\n }\n >\n )\n }\n
\n
\n \n )\n\n const modal = (\n context.closeWaitingRoomModal()}\n />\n )\n\n return modal\n}\n\nexport default WaitingRoomModal","import classNames from \"classnames\";\nimport React, { useEffect, useState } from \"react\"\nimport Logo from \"../../components/Logo/Logo\";\nimport Button from \"../Button/Button\";\nimport \"./AdamOverlay.scss\"\n\nconst AdamOverlay = ({ children, onClose, hideCloseButton, title, onLogoutClicked, ...props }) => {\n const [overlayOpen, setOverlayOpen] = useState(false)\n\n useEffect(() => {\n setOverlayOpen(props.open)\n }, [props.open])\n\n const close = () => {\n setOverlayOpen(false)\n if (onClose) {\n onClose()\n }\n }\n\n const overlayClassName = classNames(\"adam-overlay\", {\n \"adam-overlay__withclosebutton\": !hideCloseButton\n })\n\n const modal = overlayOpen ? (\n \n
\n
\n
\n {\n !hideCloseButton && (\n - \n \n
\n )\n }\n {\n onLogoutClicked ? (\n - \n \n
\n ) : null\n }\n\n
\n
\n {\n title ? (\n
{title}
\n ) : null\n }\n {children}\n
\n ) : null\n\n return modal\n}\n\nexport default AdamOverlay","import React from \"react\"\nimport { translateChannelStatus } from \"../../utils/functions\"\n\nconst BlinkingIcon = () => {\n return (\n \n \n \n )\n}\n\nconst ChannelStatusIcon = ({ playerStatus }) => {\n const literalStatus = translateChannelStatus(playerStatus)\n\n return playerStatus ? (\n \n {literalStatus}\n
\n ) : null\n}\n\nexport default ChannelStatusIcon","import classNames from \"classnames\";\nimport moment from \"moment-timezone\";\nimport React, { useEffect, useState, useContext } from \"react\"\nimport { getPlayerSources } from \"../../api/functions\";\nimport { LIVE, VOD } from \"../../config/channelStatus\";\nimport MainContext from \"../../context/MainContext\";\nimport ChannelStatusIcon from \"../../ui/ChannelStatusIcon/ChannelStatusIcon\";\nimport { utc } from \"../../utils/functions\";\nimport TheoPlayer from \"../TheoPlayer/TheoPlayer\";\nimport \"./SelectEpisodeCard.scss\"\n\nlet liveLocked = true\n\nconst SelectEpisodeCard = ({ data, onEpisodeSelected, borderColor, count = 0 }) => {\n const context = useContext(MainContext)\n const [playerSource, setPlayerSource] = useState()\n const [playerStatus, setPlayerStatus] = useState()\n const [playerChannel, setPlayerChannel] = useState()\n const getPlaylist = async (episodeId) => {\n const res = await getPlayerSources({\n episode_id: episodeId,\n lang_id: context.language\n })\n updateSource(res)\n }\n\n const updateSource = async (getPlaylistResponse) => {\n let source = {}\n if (getPlaylistResponse?.sources?.length > 1) {\n source = {\n sources: getPlaylistResponse.sources[0]\n }\n }\n else {\n source = {\n sources: getPlaylistResponse?.playlist[getPlaylistResponse.status]\n }\n }\n setPlayerSource(source);\n setPlayerChannel(getPlaylistResponse.channel);\n setPlayerStatus(getPlaylistResponse.status)\n }\n\n useEffect(() => {\n getPlaylist(data.id)\n }, [data])\n\n const onReadyStateChange = async (player) => {\n if ([LIVE].includes(playerStatus) && playerChannel?.is_fake_live) {\n const diff = moment().diff(utc(context.episode.live_started_at), \"seconds\")\n player.currentTime = diff;\n liveLocked = false\n }\n else {\n liveLocked = true\n }\n }\n\n const className = classNames(\"col-12 mb-3\", {\n \"col-lg-4\": count <= 2,\n \"col-lg-3\": count > 2\n })\n\n return (\n \n
onEpisodeSelected(data.id)}\n >\n {\n [LIVE, VOD].includes(playerStatus) &&
\n }\n
\n
\n { onReadyStateChange(player) }}\n />\n
\n
\n
\n {data.title}\n
\n {\n data.has_future_live_events ? (\n
\n
\n
\n {window._.get(data, \"live_scheduling.formatted_start_at\")}\n
\n
\n ) : data.has_future_vod_events ? (\n
\n
\n
\n {window._.get(data, \"vod_scheduling.formatted_start_at\")}\n
\n
\n ) : null\n }\n
\n
\n
\n
\n )\n}\n\nexport default SelectEpisodeCard","import React, { useEffect, useState, useContext } from \"react\"\nimport { ThemeContext } from \"styled-components\";\nimport MainContext from \"../../context/MainContext\";\nimport Container from \"../../ui/Container/Container\";\nimport Row from \"../../ui/Row/Row\";\nimport AdamOverlay from \"../../ui/AdamOverlay/AdamOverlay\";\nimport SelectEpisodeCard from \"../SelectEpisodeCard/SelectEpisodeCard\";\n\nconst SelectEpisodeOverlay = ({ onEpisodeSelected, title, hideCloseButton, onLogoutClicked, ...props }) => {\n const [modalOpen, setModalOpen] = useState(false)\n const context = useContext(MainContext)\n const themeContext = useContext(ThemeContext);\n\n useEffect(() => {\n setModalOpen(props.open)\n }, [props.open])\n\n // useEffect(() => {\n // if (modalOpen) {\n // disableScroll(window)\n // }\n // }, [modalOpen])\n\n // const episodes = props.episodes?.filter(item => item.has_future_events)\n const episodes = props.episodes\n\n const onOverlayClose = () => {\n context.setSelectEpisodeModalOpen(false)\n // enableScroll(window)\n }\n\n const _onLogoutClicked = () => {\n onLogoutClicked()\n }\n\n const grid = (\n \n \n {\n episodes ? episodes.map(item => {\n return (\n \n\n )\n }) : \"No episodes available\"\n }\n
\n \n )\n\n const modal = modalOpen ? (\n \n {grid}\n \n ) : null\n\n return modal\n}\n\nexport default SelectEpisodeOverlay","import { useState } from \"react\"\nimport DefaultPage from \"../DefaultPage/DefaultPage\"\nconst ErrorPageWithReload = ({ message, reloadAfter = 10 }) => {\n\n const [countDown, setCountDown] = useState(reloadAfter)\n\n useState(() => {\n window.setInterval(() => {\n console.log(countDown, 0)\n setCountDown(countDown => {\n if (countDown <= 1) {\n window.location.reload()\n }\n else {\n return --countDown\n }\n\n })\n }, 1000)\n }, [reloadAfter])\n\n message = (\n <>\n \n {message}\n
\n {\n countDown ? (\n \n This page will be automatically reloaded in {countDown} seconds. If the problem persists, please contact support\n
\n ) : null\n }\n\n >\n )\n\n return (\n \n )\n}\n\nexport default ErrorPageWithReload","/* eslint-disable default-case */\nimport React, { useState, useEffect } from 'react';\nimport {\n Switch,\n Route,\n useHistory,\n useLocation\n} from \"react-router-dom\";\nimport MainContext from '../../context/MainContext';\nimport Agenda from '../Agenda/Agenda';\nimport Contacts from '../Contacts/Contacts';\nimport Footer from '../Footer/Footer';\nimport Header from '../Header/Header';\nimport Navbar from \"../Navbar/Navbar\"\nimport Speakers from '../Speakers/Speakers';\nimport { getContents, getLegals, detectEvent, me, login, logout, eventPreview, getAgenda, getSpeakers, forceLogout, getEligibleEpisodes, selectEpisodeWebHook } from \"../../api/functions\"\nimport { createGlobalStyle, ThemeProvider } from 'styled-components';\nimport Registration from '../Registration/Registration';\nimport PlayerBox from '../PlayerBox/PlayerBox';\nimport ScrollToTop from '../../utils/ScrollToTop/ScrollToTop';\nimport { LIVE, PRE_LIVE, PRE_VOD, UNKNOWN, VOD } from '../../config/channelStatus';\nimport { getThemeConfig, setAuthToken, getAuthToken, initializeGTM, consoleLog, initPusher, lightenDarkenColor } from '../../utils/functions';\nimport 'bootstrap/dist/css/bootstrap.css';\nimport \"./App.scss\"\nimport DemoPlayer from '../DemoPlayer/DemoPlayer';\nimport PageBody from '../../ui/PageBody/PageBody';\nimport EventTitle from '../EventTitle/EventTitle';\nimport classNames from 'classnames';\nimport LoginModal from '../LoginModal/LoginModal';\nimport PlayerSidebar from '../PlayerSidebar/PlayerSidebar';\nimport Maintenance from '../Maintenance/Maintenance';\nimport MainContainer from '../../ui/MainContainer/MainContainer';\nimport ThankYouRegistrationModal from '../ThankYouRegistrationModal/ThankYouRegistrationModal';\nimport AdamCookieConsent from '../AdamCookieConsent/AdamCookieConsent';\nimport FormErrorsModal from '../FormErrorsModal/FormErrorsModal';\nimport QandA from '../QandA/QandA';\nimport QandAManager from '../QandAManager/QandAManager';\nimport QandASpeaker from '../QandASpeaker/QandASpeaker';\nimport DefaultPage from '../DefaultPage/DefaultPage';\nimport EpisodeDetails from '../EpisodeDetails/EpisodeDetails';\nimport InitialModal from '../InitialModal/InitialModal';\nimport VirtualWorldModal from '../VirtualWorldModal/VirtualWorldModal';\nimport IframeContent from '../IframeContent/IframeContent';\nimport AlreadyLoggedInModal from '../AlreadyLoggedInModal/AlreadyLoggedInModal';\nimport { MSD_CTIO } from '../../config/registrationFlows';\nimport EpisodesListEmptyModal from '../EpisodesListEmptyModal/EpisodesListEmptyModal';\nimport EvaluationForm from '../EvaluationForm/EvaluationForm';\nimport { MSD_CTIO_A, MSD_CTIO_B, MSD_CTIO_C } from '../../config/registrationModes';\nimport EpisodeDetailsWithNestedAgenda from '../EpisodeDetails/EpisodeDetailsWithNestedAgenda';\nimport WaitingRoomModal from '../WaitingRoomModal/WaitingRoomModal';\nimport SelectEpisodeOverlay from '../SelectEpisodeOverlay/SelectEpisodeOverlay';\nimport ErrorPageWithReload from '../ErrorPageWithReload/ErrorPageWithReload';\nimport PusherManager from '../../utils/PusherManager';\n\nlet originalEvent = {}\n\nfunction Adam() {\n\n const history = useHistory()\n const location = useLocation();\n let query = new URLSearchParams(useLocation().search);\n const [event, setEvent] = useState()\n const version = process.env.REACT_APP_VERSION\n // const [version, setVersion] = useState(process.env.REACT_APP_VERSION)\n const [fnf, setFnf] = useState()\n const [country, setCountry] = useState()\n const [countryOfWork, setCountryOfWork] = useState()\n const [internal, setInternal] = useState(false)\n const [language, setLanguage] = useState(sessionStorage.getItem(\"language\"))\n const [registrationMode, setRegistrationMode] = useState()\n const [allowChangeContents, setAllowChangeContents] = useState(false)\n const [episode, setEpisode] = useState()\n const [episodeId, setEpisodeId] = useState(sessionStorage.getItem(\"episodeId\"))\n const [channelId, setChannelId] = useState()\n const [status, setStatus] = useState(UNKNOWN)\n const [isPreview, setIsPreview] = useState(false)\n const [isVirtualWorld, setIsVirtualWorld] = useState(false)\n const [forceEF, setForceEF] = useState(false)\n const [user, setUser] = useState(null)\n const [registered, setRegistered] = useState(false)\n const [legals, setLegals] = useState()\n const [maintenance, setMaintenance] = useState()\n const [loginErrors, setLoginErrors] = useState([])\n const [loginWaiting, setLoginWaiting] = useState(false)\n const [theme, setTheme] = useState()\n const [loadingContents, setLoadingContents] = useState(true)\n // const [scrollY, setScrollY] = useState(0)\n const [navHeight, setNavHeight] = useState(0)\n const [headerTitleHeight, setHeaderTitleHeight] = useState(0)\n const [loginModalOpen, setLoginModalOpen] = useState(false)\n const [initialModalOpen, setInitialModalOpen] = useState(false)\n const [initialModalInit, setInitialModalInit] = useState(false)\n const [selectEpisodeModalOpen, setSelectEpisodeModalOpen] = useState(false)\n const [tankyouRegistrationModalOpen, setTankyouRegistrationModalOpen] = useState(false)\n const [faqsModalOpen, setFaqsModalOpen] = useState(false)\n const [loggingOut, setLoggingOut] = useState(false)\n const [channelStatus, setChannelStatus] = useState()\n const [agenda, setAgenda] = useState([])\n const [speakers, setSpeakers] = useState([])\n const [faqs, setFaqs] = useState([])\n const [goToPlayer, setGoToPlayer] = useState(false)\n const [cookieConsent, setCookieConsent] = useState({})\n const [formErrors, setFormErrors] = useState([])\n const [formErrorsModalOpen, setFormErrorsModalOpen] = useState(false)\n // const [evaluationFormAnswered, setEvaluationFormAnswered] = useState(false)\n const [virtualWorldModalOpen, setVirtualWorldModalOpen] = useState(false)\n const [mode, setMode] = useState()\n // const [forceEpisodeId, setForceEpisodeId] = useState()\n const [slidoIframe, setSlidoIframe] = useState()\n const [hideQaAIframe, setHideQaAIframe] = useState()\n const [isLogout, setIsLogout] = useState(false)\n // const [forcedLanguage, setForcedLanguage] = useState(false)\n const [alreadyLoggedError, setAlreadyLoggedError] = useState()\n const [alreadyLoggedInModalOpen, setAlreadyLoggedInModalOpen] = useState(false)\n const [streamChangedModalOpen, setStreamChangedModalOpen] = useState(false)\n const [waitingRoomModalOpen, setWaitingRoomModalOpen] = useState(false)\n const [episodeCategories, setEpisodeCategories] = useState([])\n const [selectedEpisodes, setSelectedEpisodes] = useState([])\n const [selectedStreamId, setSelectedStreamId] = useState()\n const [selectedEpisodeCategories, setSelectedEpisodeCategories] = useState([])\n const [episodesListEmptyModalOpen, setEpisodesListEmptyModalOpen] = useState(false)\n const [allEpisodes, setAllEpisodes] = useState([])\n // const [retrivingUserData, setRetrivingUserData] = useState(false)\n const [openQaAManager, setOpenQaAManager] = useState(false)\n const [pusherConnection, setPusherConnection] = useState()\n const [errorWithReload, setErrorWithReload] = useState()\n\n const [contents, setContents] = useState()\n\n useEffect(() => {\n setIsLogout(query.get(\"logout\"))\n if (!event) {\n // console.log(\"location\", query.get(\"preview\"))\n setIsPreview(query.get(\"preview\"))\n setMode(query.get(\"mode\"))\n\n const detectIsVirtualWorld = query.get(\"mode\") === \"vw\"\n if (detectIsVirtualWorld) {\n setIsVirtualWorld(true)\n }\n\n forceEpisode(forcedEpisodeId())\n setForceEF(query.get(\"forceEF\"))\n setSlidoIframe(query.get(\"slido\"))\n setHideQaAIframe(query.get(\"hideqaa\"))\n\n let loadEventParams = {\n episodeId: forcedEpisodeId() || episodeId,\n force: detectIsVirtualWorld || forcedEpisodeId()\n }\n\n if (query.get(\"ln\")) {\n const ln = query.get(\"ln\")\n // setForcedLanguage(ln)\n setLanguage(ln)\n loadEventParams = {\n ...loadEventParams,\n ln: ln\n }\n }\n loadEvent(loadEventParams)\n }\n // let siteTitle = document.title\n // window.addEventListener('blur', () => {\n // document.title = 'Come back! :c';\n // console.log(\"blur\")\n // });\n // window.addEventListener('focus', () => {\n // document.title = siteTitle;\n // console.log(\"focus\")\n // });\n // return () => {\n // window.Pusher.unsubscribe(`presence-${event.id}.none`)\n // }\n }, [])\n\n\n useEffect(() => {\n if (event) {\n loadTranslatable(language)\n }\n }, [language])\n\n useEffect(() => {\n if ((country && language) || allowChangeContents) {\n loadByCountry()\n }\n }, [internal])\n\n useEffect(() => {\n if (allowChangeContents && !internal) {\n loadByCountry()\n }\n }, [country, countryOfWork])\n\n useEffect(() => {\n if (allowChangeContents && internal && isCtio2022()) {\n loadByCountry()\n }\n }, [countryOfWork])\n\n useEffect(() => {\n if (allowChangeContents && (registrationMode !== 102 || selectedEpisodeCategories?.length)) {\n loadByCountry()\n }\n }, [registrationMode, selectedEpisodes])\n\n useEffect(() => {\n if (allowChangeContents) {\n loadByCountry()\n }\n }, [selectedEpisodeCategories])\n\n // useEffect(() => {\n // console.log(\"allowChangeContents\", allowChangeContents)\n // if (allowChangeContents) {\n // // loadAgenda()\n // // loadSpeakers()\n // loadEvent(episodeId)\n // }\n // }, [episodeId])\n\n const hasVisrtualWorld = (user) => {\n return (event.has_virtual_world && !isVirtualWorld && userIsAttendant(user))\n }\n\n const isVirtualWorldOpen = () => {\n return event.is_virtualworld_active && event.virtual_world_url\n }\n\n const onPusherConnected = (e) => {\n consoleLog(\"pusher->connecting\", e)\n setPusherConnection(e)\n }\n\n const onPusherUnavailable = (e) => {\n consoleLog(\"pusher->unavailable\", e)\n setErrorWithReload(\"The connection is temporarily unavailable. This means that there is no internet connection or some intermediary is blocking the connection\")\n }\n\n const onPusherFailed = (e) => {\n consoleLog(\"pusher->failed\", e)\n setErrorWithReload(\"Fatal error with your connection. This implies that WebSockets are not natively available and an HTTP-based transport could not be found\")\n }\n\n useEffect(() => {\n setUserData(user)\n if (userIsAttendant(user)) {\n return function cleanup() {\n if (window.Pusher && event && !userIsAttendant(user)) {\n window.Pusher.unsubscribe(`presence-${event.id}.none`)\n }\n }\n }\n // else {\n // window.Pusher.connection.bind('initialized', (e) => console.log(\"pusher->initialized\", e))\n // window.Pusher.connection.bind('connecting', (e) => console.log(\"pusher->connecting\", e))\n // window.Pusher.connection.bind('connected', (e) => onPusherConnected(e))\n // window.Pusher.connection.bind('unavailable', (e) => onPusherUnavailable(e, pusherConnection))\n // window.Pusher.connection.bind('failed', (e) => console.log(\"pusher->failed\", e))\n // window.Pusher.connection.bind('disconnected', (e) => console.log(\"pusher->disconnected\", e))\n // }\n }, [user])\n\n useEffect(() => {\n openInitialModal()\n }, [event])\n\n useEffect(() => {\n if (episodeId && event) {\n sessionStorage.setItem(\"episodeId\", episodeId)\n const episodesList = userIsAttendant(user) ? event.episodes : user.episodes\n const epi = window._.find(episodesList, item => parseInt(item.id) === parseInt(episodeId))\n changeEpisode(epi)\n }\n if (user) {\n subscribeToEpisodeChannel(episodeId)\n }\n }, [episodeId])\n\n useEffect(() => {\n if (language) {\n sessionStorage.setItem(\"language\", language)\n }\n }, [language])\n\n const setUserData = async () => {\n if (user) {\n // consoleLog(\"forceEpisodeIdUSER\", forcedEpisodeId())\n changeLanguage(window._.get(user, \"lang_id\"))\n const _episodeId = forcedEpisodeId() || episodeId\n if (!window._.isEmpty(window._.get(user, \"channels\"))) {\n const episodeChannel = window._.get(user, \"channels\").find(item => parseInt(item.episode_id) === parseInt(_episodeId))\n if (episodeChannel) {\n setChannelId(episodeChannel.id)\n }\n }\n window.Pusher = initPusher()\n\n window.Pusher.connection.bind('initialized', (e) => consoleLog(\"pusher->initialized\", e))\n window.Pusher.connection.bind('connecting', (e) => consoleLog(\"pusher->connecting\", e))\n window.Pusher.connection.bind('connected', (e) => onPusherConnected(e))\n window.Pusher.connection.bind('unavailable', (e) => onPusherUnavailable(e))\n window.Pusher.connection.bind('failed', (e) => onPusherFailed(e))\n window.Pusher.connection.bind('disconnected', (e) => consoleLog(\"pusher->disconnected\", e))\n\n\n let userEpisodes = Object.values(window._.get(user, \"episodes\"))\n\n if (forcedEpisodeId()) {\n userEpisodes = userEpisodes.filter(item => item.id === parseInt(_episodeId))\n }\n else if (!userIsAttendant(user)) {\n userEpisodes = userEpisodes.filter(item => (item.has_future_live_events || item.is_live_open) && item.is_player_active)\n }\n else {\n userEpisodes = userEpisodes.filter(item => item.is_player_active)\n }\n\n consoleLog(\"userEpisodes\", userEpisodes)\n originalEvent = event\n\n setEvent(event => {\n return {\n ...event,\n episodes: userEpisodes\n }\n })\n // setEpisode(userEpisodes.find(item => item.id === parseInt(_episodeId)))\n setEpisode(userEpisodes[0])\n setEpisodeId(userEpisodes[0].id)\n\n if (event) {\n consoleLog(\"presence\", `presence-${event.id}.none`)\n const presenceChannel = window.Pusher.subscribe(`presence-${event.id}.none`)\n presenceChannel.bind_global(globalCallback);\n PusherManager.setPusherChannel(presenceChannel)\n }\n\n\n if (isLogout) {\n onLogoutClicked()\n }\n // else if (forcedEpisodeId()) {\n // setGoToPlayer(true)\n // }\n else if (userEpisodes && !goToPlayer) {\n if (hasVisrtualWorld(user)) {\n if (isVirtualWorldOpen()) {\n if (event.virtual_world_url && user) {\n if (\n (\n hasUnansweredQuestions() &&\n !isCtio2022()\n ) ||\n location.pathname === \"/evaluation\"\n ) {\n // alert(\"evaluationFormEnabled\")\n // window._.get(user, `answers.${_episode.id}.answered`) || answered.includes(_episode.id)\n }\n else {\n goToVt()\n }\n // goToVt()\n }\n }\n else {\n // window.Pusher.subscribe(`presence-${event.id}.none`)\n setVirtualWorldModalOpen(true)\n }\n }\n else {\n // const userEpisodesWithFutureEvents = userEpisodes.filter(item => item.has_future_events)\n const userEpisodesWithFutureEvents = userEpisodes.filter(item => item.is_player_active)\n setEpisodeId()\n // if (episodeId && userIsAttendant(user)) {\n // const wrRws = await subscribeToEpisodeChannel(episodeId)\n // }\n //props.episodes?.filter(item => item.has_future_events)\n setOpenQaAManager(true)\n if (userEpisodesWithFutureEvents?.length > 1) {\n setSelectEpisodeModalOpen(true)\n // console.log(\"me.episodes\", goToPlayer)\n }\n else if (userEpisodesWithFutureEvents[0]) {\n consoleLog(\"setEpisodeIdCCC\", userEpisodesWithFutureEvents[0].id)\n setEpisodeId(userEpisodesWithFutureEvents[0].id)\n // setOpenQaAManager(true)\n if (!waitingRoomIsOpen(userEpisodesWithFutureEvents[0])) {\n setGoToPlayer(true)\n }\n if (episodeId && userIsAttendant(user)) {\n const wrRws = await subscribeToEpisodeChannel(episodeId)\n }\n }\n else if (isCtio2022()) {\n setGoToPlayer(true)\n }\n }\n }\n }\n }\n\n const isMsdCtio2022 = () => {\n return [MSD_CTIO].includes(parseInt(window._.get(event, \"registration_flow\")))\n }\n\n const waitingRoomIsOpen = (testEpisode) => {\n testEpisode = testEpisode || episode\n return testEpisode?.waitingRoom?.is_open\n }\n\n const subscribeToEpisodeChannel = async ($episodeId) => {\n if (\n !$episodeId\n ) {\n return false\n }\n const episodeResponse = await selectEpisodeWebHook({ episodeId: $episodeId })\n setEpisode(episode => {\n return {\n ...episode,\n waitingRoom: episodeResponse?.waitingRoom\n }\n })\n if (episodeResponse?.waitingRoom?.is_open) {\n setWaitingRoomModalOpen(true)\n setGoToPlayer(false)\n }\n else {\n setWaitingRoomModalOpen(false)\n // if (!hasVisrtualWorld()) { // || isVirtualWorldOpen()\n setGoToPlayer(true)\n // }\n }\n }\n\n const openInitialModal = () => {\n if (\n // ((\n // window._.get(event, `theme.config.initial-popup`) && (\n // contents.initialPopupBox1Title ||\n // contents.initialPopupBox2Title ||\n // contents.initialPopupBox3Title ||\n // contents.initialPopupBox4Title\n // )\n // ) || theme?.showInitialPopup) &&\n theme?.showInitialPopup &&\n location.pathname !== \"/videotest\" &&\n location.pathname !== \"/evaluation\" &&\n !getIam() &&\n !initialModalInit\n ) {\n setInitialModalOpen(true)\n setInitialModalInit(true)\n }\n }\n\n const forceEpisode = (forceEpisodeId) => {\n consoleLog(\"forceEpisodeId\", forceEpisodeId)\n setEpisodeId(forceEpisodeId)\n // setForceEpisodeId(forceEpisodeId)\n }\n\n const forcedEpisodeId = () => {\n return query.get(\"eid\")\n }\n\n const loadFont = (fontFamily = \"Poppins\") => {\n\n const font = document.createElement('link');\n font.rel = 'stylesheet'\n font.id = 'dynamic-font'\n document.head.appendChild(font)\n // font.href = \"https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,400;0,700;1,300;1,400;1,700&display=swap\"\n font.href = `${process.env.REACT_APP_FONT_BASE_URI}/css/${window._.kebabCase(fontFamily)}.css`\n }\n\n const globalCallback = (eventName, data) => {\n consoleLog(`bind global: The event ${eventName} was triggered with data ${JSON.stringify(data)}`);\n switch (eventName) {\n case \"App\\\\Events\\\\ForceLogout\":\n const remove = window._.get(data, \"remove\")\n consoleLog(\"ForceLogout\", remove)\n if (window._.indexOf(remove, user.id) >= 0) {\n onLogoutClicked(true)\n }\n break\n case \"App\\\\Events\\\\AcceptUser\":\n const accept = window._.get(data, \"accept\")\n if (window._.indexOf(accept, user.subscription.code) >= 0) {\n acceptUserFromWaitingRoom()\n }\n break\n }\n }\n\n const getIam = () => {\n return query.get(\"iam\")\n }\n\n const loadData = async (args) => {\n const { force, ln } = args\n\n const langId = ln || language\n if (getIam()) {\n let loginParams = {\n email: getIam(),\n auto: true\n }\n if (force) {\n loginParams = {\n ...loginParams,\n force: force\n }\n }\n if (langId) {\n loginParams = {\n ...loginParams,\n lang_id: langId\n }\n }\n if (query.get(\"mode\") === \"vw\") {\n loginParams = {\n ...loginParams,\n iframe: 1\n }\n }\n if (query.get(\"eid\")) {\n loginParams = {\n ...loginParams,\n episode_id: query.get(\"eid\")\n }\n }\n\n if (!loginParams.iframe) {\n setTimeout(() => {\n onLoginClicked(loginParams)\n }, 2000)\n }\n else {\n onLoginClicked(loginParams)\n }\n }\n else {\n // setRetrivingUserData(true)\n window.setTimeout(async () => {\n let userData = null\n let loginParams = {\n lang_id: langId\n }\n try {\n userData = await loadUserData(loginParams)\n }\n catch (e) {\n // history.push(\"/\");\n }\n finally {\n // setRetrivingUserData(false)\n }\n setUser(userData)\n }, 2000)\n // if (userData) {\n // setGoToPlayer(true)\n // }\n }\n }\n\n const loadTranslatable = async (newLang) => {\n // let newContens = null\n // let newLegals = null\n consoleLog(\"loadTranslatable\", language, newLang)\n\n // if (newLang) {\n // if (!newLang) {\n // newLang = language\n // }\n setLoadingContents(true)\n if (newLang) {\n\n\n let params = {\n lang_id: newLang,\n }\n if (isPreview) {\n params = {\n ...params,\n preview: isPreview\n }\n }\n\n const newContens = await loadContents(params)\n\n const newLegals = await loadLegals({\n ...params,\n country_id: country\n })\n\n setLegals(newLegals)\n loadAgenda()\n loadSpeakers()\n // }\n setWebsiteContents(newContens)\n\n if (newContens.episodes) {\n setEvent(event => {\n return {\n ...event,\n episodes: newContens.episodes\n }\n })\n\n const newEpisode = newContens.episodes.find(item => item.id === episodeId)\n\n if (newEpisode) {\n setEpisode(newEpisode)\n }\n }\n }\n setLoadingContents(false)\n // }\n }\n\n const setWebsiteContents = (value) => {\n document.title = window._.get(value, \"siteTitle\") || \"Maintenance\"\n setContents(value)\n }\n\n const loadByCountry = async () => {\n // let newContens = null\n // let newLegals = null\n // console.log(\"loadByCountry\", country)\n setLoadingContents(true)\n if (country || internal) {\n\n let params = {\n // is_internal: internal,\n lang_id: language,\n internal: internal,\n country_id: internal ? countryOfWork : country,\n }\n if (registrationMode) {\n params = {\n ...params,\n registration_mode: registrationMode\n }\n }\n // const newLegals = await loadLegals(params)\n // setLegals(newLegals)\n saveLegals(params)\n\n if (isMsdCtio2022()) {\n loadEligibleEpisodes(params)\n }\n else {\n loadAgenda()\n loadSpeakers()\n }\n }\n setLoadingContents(false)\n }\n\n const saveLegals = async (params) => {\n const newLegals = await loadLegals(params)\n setLegals(newLegals)\n return newLegals\n }\n\n const loadAgenda = async () => {\n\n consoleLog(\"loadAgenda\", event)\n if (event && event.episodes.length > 1) {\n\n event.episodes.forEach(async epi => {\n const epiId = epi.id\n // consoleLog(\"epiId\", epiId)\n const res = await getAgenda({ country, language, episodeId: epiId, internal })\n\n if (epiId === episodeId) {\n setEpisode(episode => {\n return {\n ...episode,\n agenda: res\n }\n })\n }\n setEvent(event => {\n let eventEpisodes = event.episodes\n // const selectedEpisode = eventEpisodes.find(item => item.id === episodeId)\n const episodeIndex = window._.findIndex(eventEpisodes, (item) => { return item.id === epiId });\n eventEpisodes[episodeIndex] = {\n ...eventEpisodes[episodeIndex],\n agenda: res\n }\n return {\n ...event,\n episodes: eventEpisodes\n }\n })\n })\n }\n else {\n // deprecated\n const res = await getAgenda({ country, language, episodeId, internal })\n setAgenda(res)\n }\n }\n\n const loadSpeakers = async () => {\n if (event && event.episodes.length > 1) {\n\n event.episodes.forEach(async epi => {\n const epiId = epi.id\n consoleLog(\"epiId\", epiId)\n const res = await getSpeakers({ country, language, episodeId: epiId, internal })\n if (epiId === episodeId) {\n setEpisode(episode => {\n return {\n ...episode,\n speakers: res\n }\n })\n }\n setEvent(event => {\n let eventEpisodes = event.episodes\n // const selectedEpisode = eventEpisodes.find(item => item.id === episodeId)\n const episodeIndex = window._.findIndex(eventEpisodes, (item) => { return item.id === epiId });\n consoleLog(\"epiId pre \" + episodeIndex, eventEpisodes[episodeIndex])\n eventEpisodes[episodeIndex] = {\n ...eventEpisodes[episodeIndex],\n speakers: res\n }\n consoleLog(\"epiId post \" + episodeIndex, eventEpisodes[episodeIndex])\n return {\n ...event,\n episodes: eventEpisodes\n }\n })\n })\n }\n else {\n const res = await getSpeakers({ country, language, episodeId, internal })\n setSpeakers(res)\n }\n }\n\n const loadEligibleEpisodes = async (params) => {\n const res = await getEligibleEpisodes({\n ...params,\n selectedEpisodeCategories,\n selectedEpisodes,\n all: true\n })\n // console.log(\"find\", res.find(item => item.id == episodeId))\n setEvent(event => {\n return {\n ...event,\n episodes: res\n }\n })\n const filteredEpisodes = res.filter(item => item.has_future_events)\n if (\n filteredEpisodes.length === 0 &&\n (\n [\n MSD_CTIO_A\n ].includes(registrationMode) ||\n (\n [\n MSD_CTIO_B\n ].includes(registrationMode) &&\n selectedEpisodeCategories?.length > 0\n )\n )\n ) {\n setEpisodesListEmptyModalOpen(true)\n }\n else if ([\n MSD_CTIO_C\n ].includes(registrationMode)) {\n const filteredEpisodesId = filteredEpisodes.map(item => item.id)\n const diff = selectedEpisodes.filter(item => !filteredEpisodesId.includes(item))\n if (diff.length > 0) {\n setEpisodesListEmptyModalOpen(true)\n }\n }\n setEpisode(res.find(item => item.id == episodeId))\n }\n\n const loadUserData = async (loginParams) => {\n const token = getAuthToken()\n if (token && token !== \"null\") {\n const res = await me(loginParams)\n // Redirect to player page when user data are loaded \n // and user has subscribed at least a channel\n // useEffect(() => {\n // console.log(\"loadUserData\", window._.get(context, \"user.channels\"))\n // if (window._.get(res, \"channels\")) {\n // history.push(\"/play\");\n // }\n // }, [context.user]) \n return res\n }\n else {\n return null\n }\n\n }\n\n const loadEvent = async (args) => {\n const { episodeId, force, ln } = args\n let res = null\n setLoadingContents(true)\n\n let langId = language || window.navigator.language\n if (ln) {\n langId = ln\n }\n try {\n if (query.get(\"preview\")) {\n // eventPreview\n let previewParams = {\n preview: query.get(\"preview\"),\n lang_id: langId\n }\n if (force) {\n previewParams = {\n ...previewParams,\n force: force\n }\n }\n if (episodeId) {\n previewParams = {\n ...previewParams,\n episode_id: episodeId\n }\n }\n res = await eventPreview(previewParams)\n }\n else {\n let params = {\n domain: window.location.hostname,\n lang_id: langId\n }\n if (force) {\n params = {\n ...params,\n force: force\n }\n }\n if (episodeId) {\n params = {\n ...params,\n episode_id: episodeId\n }\n }\n if (country) {\n params = {\n ...params,\n country_id: country\n }\n }\n res = await detectEvent(params)\n }\n }\n catch (e) {\n // console.error(\"clearStatus\", window._.get(e, \"response.status\"))\n if (window._.get(e, \"response.status\") === 404) {\n setFnf(true)\n return false\n }\n }\n finally {\n\n }\n if (window._.get(res, \"id\")) {\n if (!event) {\n window.axios.defaults.baseURL = `${window.axios.defaults.baseURL}${res.id}/`;\n }\n\n if (res.locale !== language) {\n setLanguage(res.locale)\n }\n // Use 'event_countries' if 'countries' variable is empty\n const countriesList = res.countries || res.event_countries\n // console.log(\"process.env.REACT_APP_SET_DEFAULT_COUNTRY\", window._.get(countriesList[0], \"id\") !== country && !country && process.env.REACT_APP_SET_DEFAULT_COUNTRY)\n if (\n window._.get(countriesList[0], \"id\") !== country &&\n !country &&\n parseInt(process.env.REACT_APP_SET_DEFAULT_COUNTRY)\n // &&\n // ![3, 4].includes(parseInt(window._.get(event, \"registration_form\")))\n ) {\n setCountry(countriesList[0].id)\n }\n\n // Detect whether or not the website is published. If not shows 404 error page\n if (!window._.get(res, \"published\")) {\n setFnf(true)\n return false\n }\n\n // Website contents\n if (window._.get(res, \"contents\")) {\n const newContents = cleanContents(window._.get(res, \"contents\"))\n setWebsiteContents(newContents)\n }\n\n // Cookie consent popup content\n if (window._.get(res, \"cookie_consent\")) {\n const ccCheckboxLabel = window._.get(res, \"cookie_consent.checkbox_label\")\n const ccContent = window._.get(res, \"cookie_consent.content\")\n const ccButtonLabel = window._.get(res, \"cookie_consent.cookieconsent_button_label\")\n setCookieConsent({\n ccCheckboxLabel,\n ccContent,\n ccButtonLabel\n })\n }\n const ctio2022 = window._.get(res, `theme.config.event`) === \"ctio-2022\"\n\n if (window._.get(res, \"agenda\")) {\n setAgenda(window._.get(res, \"agenda\"))\n }\n\n if (window._.get(res, \"speakers\")) {\n setSpeakers(window._.get(res, \"speakers\"))\n }\n\n if (window._.get(res, \"faqs\")) {\n setFaqs(window._.get(res, \"faqs\"))\n }\n\n setMaintenance(window._.get(res, \"maintenance\"))\n if (window._.get(res, \"maintenance\")) {\n setTheme(loadTheme(window._.get(res, \"styles\"), window._.get(res, \"media\")))\n setEvent(res)\n return false\n }\n else if (!user) (\n loadData({ force, ln })\n )\n if (window._.get(res, \"tagmanager\")) {\n initializeGTM(window._.get(res, \"tagmanager\"))\n }\n\n if (window._.get(res, \"legals\")) {\n setLegals(window._.get(res, \"legals\"))\n }\n if (!forcedEpisodeId()) {\n // userEpisodes.filter(item => item.is_player_active)\n let episode_categories = window._.get(res, \"episodecategories\") || []\n let eventEpisodes = window._.get(res, \"episodes\") || []\n eventEpisodes = ctio2022 ? eventEpisodes : eventEpisodes.filter(item => item.is_player_active)\n const openEpisodes = eventEpisodes.filter(item => {\n return (\n // item.is_player_active &&\n item.is_subscriptions_open\n )\n })\n setEpisodeCategories(episode_categories)\n if (eventEpisodes.length) {\n // eventEpisodes.forEach(item => {\n // item.episode_categories.forEach(ec => {\n // if (ec.id) {\n // episode_categories.push(ec)\n // }\n // })\n // })\n const firstAvailableEpisode = ctio2022 ? openEpisodes.shift() : eventEpisodes.shift()\n\n if (!forcedEpisodeId() && firstAvailableEpisode && firstAvailableEpisode.id !== episode) {\n changeEpisode(firstAvailableEpisode)\n }\n setAllEpisodes(window._.get(res, \"episodes\"))\n }\n else {\n const defaultEpisode = window._.get(res, \"default_episode\") || []\n if (!window._.isEmpty(defaultEpisode) && !episode) {\n if (window._.get(defaultEpisode, \"id\") !== episode) {\n changeEpisode(defaultEpisode)\n }\n }\n }\n }\n const newTheme = loadTheme(window._.get(res, \"styles\"), window._.get(res, \"media\"))\n\n setTheme(newTheme)\n setLoadingContents(false)\n setEvent(res)\n loadFont(newTheme.defaultFontFamily)\n }\n return res\n }\n\n const loadTheme = (resStyles, resMedia) => {\n let newTheme = {}\n Object.keys(resStyles).forEach(k => {\n newTheme = {\n ...newTheme,\n [window._.camelCase(k)]: resStyles[k]\n }\n })\n\n Object.keys(resMedia).forEach(k => {\n newTheme = {\n ...newTheme,\n [window._.camelCase(`media_${k}`)]: resMedia[k]\n }\n })\n\n if (window._.get(newTheme, \"mediaFavicon.url\")) {\n const favicon = document.getElementById(\"favicon\");\n favicon.href = window._.get(newTheme, \"mediaFavicon.url\")\n }\n return newTheme\n }\n\n const loadContents = async (params) => {\n\n // consoleLog(\"params\", params)\n // if (!event) {\n // return {}\n // }\n // let newContens = {\n // ...contents\n // }\n params = {\n lang_id: language,\n ...params\n }\n const resContents = await getContents(params)\n return cleanContents(resContents)\n // Object.keys(resContents).forEach(k => {\n // newContens = {\n // ...newContens,\n // [window._.camelCase(`${k}`)]: resContents[k]\n // }\n // })\n // return newContens\n }\n\n const cleanContents = (resContents) => {\n let newContens = {\n ...contents\n }\n Object.keys(resContents).forEach(k => {\n newContens = {\n ...newContens,\n [window._.camelCase(`${k}`)]: resContents[k]\n }\n })\n return newContens\n }\n\n const loadLegals = async (params) => {\n\n if (internal) {\n params = {\n ...params,\n internal: internal\n }\n }\n const resLegals = await getLegals({\n country: country,\n language: language,\n ...params\n })\n return resLegals\n }\n\n const setToken = async (token, userData) => {\n setAuthToken(token)\n if (token) {\n window.axios.defaults.headers.common[\"Authorization\"] = \"Bearer \" + token;\n // const userData = await loadUserData()\n // setUser(userData)\n if (window._.get(userData, \"channels\")) {\n // history.push(`/e/${episode}/play`);\n }\n }\n else {\n window.axios.defaults.headers.common[\"Authorization\"] = \"\";\n setUser(null)\n }\n }\n\n const onRegistred = () => {\n setRegistered(true)\n setTankyouRegistrationModalOpen(true)\n }\n\n const onLoginClicked = async (args) => {\n const { ln, lang_id } = args\n const langId = ln || language\n if (langId && !lang_id) {\n args = {\n ...args,\n lang_id: langId\n }\n }\n setLoginWaiting(true)\n setAlreadyLoggedError()\n setLoginErrors([])\n let res = null\n\n try {\n res = await login(args)\n setUser(res.me)\n setToken(res.token, res.me)\n // console.log(\"me.episodes\", window._.get(res, \"me.episodes\"))\n // if (window._.get(res, \"me.episodes\").length > 1) {\n // setSelectEpisodeModalOpen(true)\n // console.log(\"me.episodes\", goToPlayer)\n // }\n // else {\n // setGoToPlayer(true)\n // }\n setLoginModalOpen(false)\n }\n catch (e) {\n // console.log(\"setLoginErrors\", window._.get(e, \"response.data\"))\n const newErrors = window._.get(e, \"response.data.errors\") ? window._.get(e, \"response.data.errors\") : [window._.get(e, \"response.data.message\")]\n // consoleLog(\"errorAAAA\", window._.get(e, \"response.status\"))\n setLoginErrors(newErrors)\n // setAlreadyLoggedError(parseInt(e.response.status) === 409)\n setAlreadyLoggedError(window._.get(e, \"response.data.concurrent\"))//concurrent\n if (!loginModalOpen) {\n setAlreadyLoggedInModalOpen(true)\n }\n // Auto: iam query param is set\n // Force: force query param is set\n if (args.auto && !args.force) {\n setFormErrors({\n alreadyLogged: newErrors\n })\n // setFormErrorsModalOpen(true)\n setAlreadyLoggedInModalOpen(true)\n // loginModalOpen\n }\n }\n setLoginWaiting(false)\n return res\n }\n\n const onLogoutClicked = async (forced) => {\n setLoggingOut(true)\n try {\n if (!forced) {\n const res = await logout()\n }\n setIsLogout(false)\n }\n catch (e) {\n }\n finally {\n setToken(null)\n setUser(null)\n setGoToPlayer(false)\n if (window._.get(event, `theme.config.header.hidden`)) {\n setNavHeight(0)\n }\n let logoutUrl = \"/\"\n if (query.get(\"preview\")) {\n logoutUrl += `?preview=${query.get(\"preview\")}`\n }\n if (inIframe()) {\n setEvent()\n }\n else {\n history.push(logoutUrl);\n }\n // console.log(\"originalEvent\", originalEvent)\n setEvent(originalEvent)\n if (episodeId) {\n setEpisode(originalEvent.episodes.find(item => item.id === parseInt(episodeId)))\n }\n else {\n setEpisode(originalEvent.episodes[0])\n }\n // setEpisode(originalEvent.episodes.find(item => item.id === parseInt(episodeId)))\n\n setLoggingOut(false)\n }\n }\n\n const onForceLogoutClicked = async () => {\n setLoggingOut(true)\n try {\n const res = await forceLogout({\n concurrent: alreadyLoggedError\n })\n\n if (res.status) {\n setAlreadyLoggedError()\n setAlreadyLoggedInModalOpen()\n setLoginErrors([])\n if (getIam()) {\n const args = {\n email: getIam(),\n auto: true\n }\n onLoginClicked(args)\n }\n\n }\n }\n catch (e) {\n }\n finally {\n setLoggingOut(false)\n }\n }\n\n const changeLanguage = (value) => {\n if (value && value !== language) {\n setLanguage(value)\n if (country) {\n setAllowChangeContents(true)\n }\n }\n }\n\n const changeCountry = (value) => {\n if (value && value !== country) {\n setCountry(value)\n if (language) {\n setAllowChangeContents(true)\n }\n }\n }\n\n const changeCountryOfWork = (value) => {\n if (value && value !== countryOfWork) {\n setCountryOfWork(value)\n }\n }\n\n const changeRegistrationMode = (value) => {\n if (value && value !== registrationMode) {\n setRegistrationMode(value)\n if (language && country) {\n setAllowChangeContents(true)\n }\n }\n }\n\n const changeIntrernal = (value) => {\n setInternal(value)\n setAllowChangeContents(true)\n }\n\n const changeEpisode = (value) => {\n const id = window._.get(value, \"id\")\n if (value && (episodeId !== id || window._.get(episode, \"id\") !== id)) {\n setEpisode(value)\n setEpisodeId(window._.get(value, \"id\"))\n }\n }\n\n const onEpisodeChange = (e, direct) => {\n const value = direct ? e : e.target.value\n setAllowChangeContents(true)\n setEpisodeId(value)\n // console.log(\"onEpisodeChange\", window._.get(event, `theme.config.event`))\n if (\n value !== episodeId\n ) {\n if (!isCtio2022()) {\n // loadEvent({ episodeId: value })\n }\n }\n }\n\n const onEpisodeSelected = (e) => {\n onEpisodeChange(e, true)\n setSelectEpisodeModalOpen(false)\n if (!waitingRoomIsOpen()) {\n setGoToPlayer(true)\n }\n }\n\n const onLanguageChange = (value) => {\n changeLanguage(value)\n }\n\n const onCountryChange = (value) => {\n changeCountry(value)\n }\n\n const onCountryOfWorkChange = (value) => {\n changeCountryOfWork(value)\n }\n\n const onInternalChange = (value) => {\n value = (value === \"int\" || value === 1 || value === true || value === \"1\")\n value = value ? 1 : 0\n changeIntrernal(value)\n }\n\n const onRegistrationModeChange = (value) => {\n changeRegistrationMode(parseInt(value))\n }\n\n const onFaqButtonClicked = () => {\n setFaqsModalOpen(true)\n }\n\n const openFormErrorsModal = (newErrors) => {\n setFormErrors(newErrors)\n setFormErrorsModalOpen(true)\n }\n\n const closeFormErrorsModal = () => {\n setFormErrors([])\n setFormErrorsModalOpen(false)\n }\n\n const goToVt = () => {\n let vwUrl = event.virtual_world_url + `?iam=${user.email}`\n if (isPreview) {\n vwUrl += `&preview=${isPreview}`\n }\n window.location.assign(vwUrl)\n }\n\n const onEvaluationFormModalClose = () => {\n if (\n event.virtual_world_url &&\n event.is_virtualworld_active &&\n user\n ) {\n goToVt()\n }\n }\n\n const acceptUserFromWaitingRoom = () => {\n setGoToPlayer(true)\n setWaitingRoomModalOpen(false)\n }\n\n // const openEvaluartionFormModal = () => {\n // setEvaluartionFormModalOpen(true)\n // }\n\n // const closeEvaluartionFormModal = () => {\n // setEvaluartionFormModalOpen(false)\n // }\n\n const questions = window._.get(episode, `evaluation_questions`)\n const isEfEnabled = window._.get(episode, `is_evaluation_open`)\n\n // const userEpisodes = window._.get(user, `episodes`)\n const userQuestions = window._.get(user, `questions`)\n let userHasOpenEvaluationForms = false\n\n if (userQuestions) {\n userQuestions.forEach(item => {\n if (\n item.evaluation_questions &&\n item.is_evaluation_open\n ) {\n userHasOpenEvaluationForms = true\n }\n })\n }\n if (userQuestions) {\n userQuestions.forEach(itemId => {\n const epi = event.episodes?.find(item => item.id === itemId)\n if (\n epi &&\n epi.evaluation_questions &&\n epi.is_evaluation_open\n ) {\n userHasOpenEvaluationForms = true\n }\n })\n }\n // consoleLog(\"userEpisodes\", userEpisodes, userHasOpenEvaluationForms)\n\n const userIsAttendant = (_user) => {\n // console.log(\"userIsAttendant\", _user)\n return (\n !window._.get(_user, \"is_chairman\") &&\n !window._.get(_user, \"is_moderator\")\n )\n }\n\n const evaluationFormEnabled = () => {\n return (\n forceEF &&\n window._.get(user, \"is_staff\")\n ) ||\n (\n user &&\n // episodeId &&\n // questions &&\n // isEfEnabled &&\n userHasOpenEvaluationForms &&\n // !window._.isEmpty(questions) &&\n userIsAttendant(user)\n // !window._.get(user, \"is_chairman\") &&\n // !window._.get(user, \"is_moderator\")\n )\n }\n\n const hasUnansweredQuestions = () => {\n let _hasUnansweredQuestions = false\n consoleLog(\"userQuestions\", userQuestions)\n if (userQuestions) {\n userQuestions.filter(item => item.is_evaluation_open).forEach(item => {\n consoleLog(\"userQuestions \" + item.id, window._.get(user, `answers.${item.id}.answered`))\n if (\n window._.get(user, `answers.${item.id}.answered`) !== true\n ) {\n _hasUnansweredQuestions = true\n }\n })\n }\n consoleLog(\"userEpisodes AAA\", _hasUnansweredQuestions && evaluationFormEnabled())\n return _hasUnansweredQuestions && evaluationFormEnabled()\n }\n\n const inIframe = () => {\n try {\n return window.self !== window.top;\n } catch (e) {\n return true;\n }\n }\n\n const allowIframe = () => {\n return inIframe() || process.env.REACT_APP_ALLOW_IFRAME_IN_TOP_WINDOW\n }\n\n const isCtio2022 = () => {\n return window._.get(event, `theme.config.event`) === \"ctio-2022\"\n }\n\n const isAppView = window._.get(event, `theme.config.view`) === \"app\"\n const is2ColsView = window._.get(event, `theme.config.view`) === \"2cols\"\n const rfOnLeft = window._.get(event, `theme.config.registration-form.position`) === \"left\"\n const hideRegistrationFormTitle = window._.get(event, `theme.config.registration-form.hide-title`)\n const hiddenHeader = window._.get(event, `theme.config.header.hidden`)\n const hideDropDown = window._.get(event, `theme.config.episodes.hideDropDown`)\n const showAllEpisodes = window._.get(event, `theme.config.episodes.showAll`)\n const narrow = window._.get(event, `theme.config.width`) === \"narrow\"\n // title\n const titleFontSize = window._.get(event, `theme.config.title.size`)\n const titleLineHeight = window._.get(event, `theme.config.title.line-height`)\n const titleFontWeight = window._.get(event, `theme.config.title.weight`)\n // sub-title\n const subTitleFontSize = window._.get(event, `theme.config.subtitle.size`)\n const subTitleLineHeight = window._.get(event, `theme.config.subtitle.line-height`)\n const subTitleFontWeight = window._.get(event, `theme.config.subtitle.weight`)\n // sub-sub-title\n const subSubTitleFontSize = window._.get(event, `theme.config.subsubtitle.size`)\n const subSubTitleLineHeight = window._.get(event, `theme.config.subsubtitle.line-height`)\n const subSubTitleFontWeight = window._.get(event, `theme.config.subsubtitle.weight`)\n\n const registrationFormHasLoginForm = window._.get(event, `theme.config.registration-form.login-form`)\n const contactsAlign = window._.get(event, `theme.config.contacts.text-align`)\n const hideContactsTitle = window._.get(event, `theme.config.contacts.hide-title`)\n const nestedAgenda = window._.get(event, `theme.config.agenda.nested`)\n const removeBorderFromEpisodeTitle = window._.get(event, `theme.config.episodes.title.remove-border`)\n const episodeTitleFontSize = window._.get(event, `theme.config.episodes.title.font-size`)\n const episodeTitleLineHeight = window._.get(event, `theme.config.episodes.title.line-height`)\n\n const mainContext = {\n user: user,\n event: event,\n version: version,\n country: country,\n internal: internal,\n language: language,\n episode: episode,\n episodeId: episodeId,\n contents: contents,\n legals: legals,\n channelId: channelId,\n status: status,\n loadingContents: loadingContents,\n isAppView: isAppView,\n is2ColsView: is2ColsView,\n navHeight: navHeight,\n headerTitleHeight: headerTitleHeight,\n loginModalOpen: loginModalOpen,\n loginWaiting: loginWaiting,\n faqsModalOpen: faqsModalOpen,\n channelStatus: channelStatus,\n loggingOut: loggingOut,\n loginErrors: loginErrors,\n agenda: agenda,\n faqs: faqs,\n speakers: speakers,\n registered: registered,\n isPreview: isPreview,\n alreadyLoggedError: alreadyLoggedError,\n episodeCategories: episodeCategories,\n registrationMode: registrationMode,\n allEpisodes: allEpisodes,\n selectedStreamId: selectedStreamId,\n streamChangedModalOpen: streamChangedModalOpen,\n // formErrors, formErrors,\n // formErrorsModalOpen, formErrorsModalOpen,\n setLanguage: (value) => onLanguageChange(value),\n setCountry: (value) => onCountryChange(value),\n setCountryOfWork: (value) => onCountryOfWorkChange(value),\n setInternal: (value) => onInternalChange(value),\n setRegistrationMode: (value) => onRegistrationModeChange(value),\n setToken: (token, userData) => setToken(token, userData),\n setUser: (value) => setUser(value),\n onRegistred: (value) => onRegistred(value),\n setNavHeight: (value) => setNavHeight(value),\n setHeaderTitleHeight: (value) => setHeaderTitleHeight(value),\n setLoginModalOpen: (value) => setLoginModalOpen(value),\n setSelectEpisodeModalOpen: (value) => setSelectEpisodeModalOpen(value),\n setChannelStatus: (value) => setChannelStatus(value),\n setTankyouRegistrationModalOpen: (value) => setTankyouRegistrationModalOpen(value),\n openFormErrorsModal: (value) => openFormErrorsModal(value),\n closeFormErrorsModal: () => closeFormErrorsModal(),\n closeAlreadyLoggedInModal: () => setAlreadyLoggedInModalOpen(false),\n openStreamChangedModal: () => setStreamChangedModalOpen(true),\n closeStreamChangedModal: () => setStreamChangedModalOpen(false),\n closeWaitingRoomModal: () => setWaitingRoomModalOpen(false),\n setSelectedEpisodes: (value) => setSelectedEpisodes(value),\n setSelectedStreamId: (value) => setSelectedStreamId(value),\n setSelectedEpisodeCategories: (value) => setSelectedEpisodeCategories(value)\n }\n\n const buttonTheme = getThemeConfig(mainContext, \"buttons\")\n const headerTheme = getThemeConfig(mainContext, \"header\")\n const speakersTheme = getThemeConfig(mainContext, \"speakers\")\n const sectionsTheme = getThemeConfig(mainContext, \"sections\")\n\n const headerContentAlign = window._.get(headerTheme, \"content-align\")\n\n const isGridLayout = (!window._.isEmpty(speakersTheme)) ? speakersTheme.theme === \"grid\" : false\n\n const sectionTitleUnderline = window._.get(sectionsTheme, \"title.underline\")\n const thumbsRounded = (!window._.isEmpty(speakersTheme)) ? speakersTheme['thumbs-shape'] === \"round\" : false\n const textCentered = (!window._.isEmpty(speakersTheme)) ? speakersTheme[\"text-align\"] === \"center\" : false\n const thumbBordered = (!window._.isEmpty(speakersTheme)) ? speakersTheme[\"thumbs-border\"] : false\n const speakerPictureWidth = (!window._.isEmpty(speakersTheme)) ? speakersTheme[\"picture-width\"] : \"100%\"\n const speakerBoxShadow = (!window._.isEmpty(speakersTheme)) ? speakersTheme[\"box-shadow\"] : false\n const defaultBorderRadius = getThemeConfig(mainContext, \"default-border-radius\") || \"3px\"\n const fullPageHeader = getThemeConfig(mainContext, \"header.fullpage\") || false\n const mainCols = getThemeConfig(mainContext, \"main.cols\") || {}\n const defaultTransition = \"all 0.5s ease-in-out\"\n\n const footerAlign = window._.get(event, `theme.config.footer.text-align`)\n // let mainContent = useMemo(() => {\n // let mainContent_\n // if (user) {\n\n // if (window._.get(user, \"is_chairman\")) {\n // mainContent_ = (\n // \n // \n // \n // )\n // }\n // else if (window._.get(user, \"is_moderator\")) {\n // mainContent_ = (\n // \n // \n // \n // )\n // }\n // else {\n // mainContent_ = (goToPlayer) ? (\n // \n // \n //
\n // {\n // [LIVE, PRE_LIVE, VOD].includes(channelStatus) ? (\n //
\n // ) : null\n // }\n //
\n // \n // \n // ) : (\n // <>\n // {\n // fullPageHeader ? (\n //