All files / src/containers/QuestionnarieDetails/components/SplitterPaneLayout ProFormsList.js

0% Statements 0/53
0% Branches 0/50
0% Functions 0/13
0% Lines 0/50
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
import React, { Component, Fragment } from 'react';
import {
    MenuList,
    MenuItem,
    Typography,
    ExpansionPanel,
    ExpansionPanelSummary,
    ExpansionPanelDetails,
    ListItemText
    // Grid
} from '@material-ui/core';
import { FontAwesomeIcon } from '@fortawesome/react-fontawesome';
import _ from 'lodash';
// import ExpandMoreIcon from '@material-ui/icons/ExpandMore';
 
class ProFormsList extends Component {
    constructor(props) {
        super(props);
        const {
            formsArray,
            selectedFormIndex,
            selectedSectionIndex,
            visibleSectionsArray,
            sectionsMetaData,
            formData
        } = this.props;
        this.state = {
            formsArray,
            selectedFormIndex,
            selectedSectionIndex:
                selectedSectionIndex && selectedSectionIndex > -1 ? selectedSectionIndex : 0,
            visibleSectionsArray,
            formData,
            expanded: false,
            sectionsMetaData
        };
    }
 
    componentWillReceiveProps(nextProps) {
        if (nextProps.selectedSectionIndex !== this.state.selectedSectionIndex) {
            this.setState({
                selectedSectionIndex: nextProps.selectedSectionIndex
            });
        }
        if (nextProps.selectedFormIndex !== this.state.selectedFormIndex) {
            this.setState({
                selectedFormIndex: nextProps.selectedFormIndex
            });
        }
        if (nextProps.visibleSectionsArray !== this.state.visibleSectionsArray) {
            this.setState({
                visibleSectionsArray: nextProps.visibleSectionsArray
            });
        }
 
        if (nextProps.formData !== this.state.formData) {
            this.setState({
                formData: nextProps.formData
            });
        }
 
        if (!_.isEqual(nextProps.formsArray, this.state.formsArray)) {
            this.setState({
                formsArray: nextProps.formsArray
            });
        }
 
        if (!_.isEqual(nextProps.sectionsMetaData, this.state.sectionsMetaData)) {
            this.setState({
                sectionsMetaData: nextProps.sectionsMetaData
            });
        }
    }
 
    handlePanelChange = newFormIndex => {
        const { expanded, selectedFormIndex } = this.state;
        this.setState({
            expanded: newFormIndex !== selectedFormIndex ? true : !expanded
        });
        this.props.handleFormNameClick(newFormIndex);
    };
 
    handleSectionClick = section => {
        this.props.handleSectionNameClick(section);
    };
 
    getSectionStatus = (sectionName, formData) => {
        let statusIcon = <FontAwesomeIcon icon={['fas', 'circle']} size='1x' color='#DEE9F2' />;
        if (formData && formData[sectionName]) {
            const { totalQuestionsInSection, totalQuestionsAnsweredInSection } = formData[
                sectionName
            ];
            if (
                totalQuestionsInSection > totalQuestionsAnsweredInSection &&
                totalQuestionsAnsweredInSection > 0
            ) {
                statusIcon = <FontAwesomeIcon icon={['fas', 'circle']} size='1x' color='#F9BD4E' />;
            } else if (totalQuestionsInSection === totalQuestionsAnsweredInSection) {
                statusIcon = <FontAwesomeIcon icon={['fas', 'circle']} size='1x' color='#39A300' />;
            }
        }
 
        return statusIcon;
    };
 
    getFormStatus = formData => {
        let statusIcon = <FontAwesomeIcon icon={['far', 'check']} size='1x' color='#DEE9F2' />;
 
        if (formData) {
            const { totalQuestionsInForm, totalQuestionsAnsweredInForm } = formData;
            if (
                totalQuestionsInForm > totalQuestionsAnsweredInForm &&
                totalQuestionsAnsweredInForm > 0
            ) {
                statusIcon = <FontAwesomeIcon icon={['far', 'check']} size='1x' color='#F9BD4E' />;
            } else if (totalQuestionsInForm === totalQuestionsAnsweredInForm) {
                statusIcon = <FontAwesomeIcon icon={['far', 'check']} size='1x' color='#39A300' />;
            }
        }
        return statusIcon;
    };
 
    getSectionName = (sectionKey, sectionsMetaData) => {
        const sectionindex = _.findIndex(sectionsMetaData, function (sectionMetaData) { return sectionMetaData.sectionKey == sectionKey; });
        return sectionsMetaData[sectionindex].sectionName;
    }
 
    render() {
        const {
            selectedFormIndex,
            formsArray,
            expanded,
            selectedSectionIndex,
            visibleSectionsArray,
            sectionsMetaData
        } = this.state;
        return (
            <Fragment>
                <Typography className='proFormList-title'> Set List </Typography>
                <MenuList className=' padding-0 proform-list-wrapper'>
                    {formsArray.map((form, index) => {
                        return (
                            <ExpansionPanel
                                expanded={expanded && selectedFormIndex === index}
                                onChange={() => {
                                    this.handlePanelChange(index);
                                }}
                                key={form.formDefinitionId}
                                className={
                                    !expanded && selectedFormIndex === index
                                        ? 'selected-list'
                                        : 'default-list'
                                }
                            >
                                <ExpansionPanelSummary
                                    className='borderPane'
                                    expandIcon={
                                        expanded && selectedFormIndex === index ? (
                                            <FontAwesomeIcon
                                                icon={['far', 'angle-up']}
                                                size='1x'
                                                color='#848484'
                                            />
                                        ) : (
                                            <FontAwesomeIcon
                                                icon={['far', 'angle-right']}
                                                size='1x'
                                                color='#848484'
                                            />
                                        )
                                    }
                                >
                                    <Typography className='form-check-container'>
                                        <div className='form-check'>
                                            {this.getFormStatus(
                                                form['formDataWidNoOfQuestions'],
                                                index
                                            )}
                                        </div>
                                        <div className='proform-details'>
                                            <span className='proform-title'>
                                                <span
                                                    className={
                                                        index === selectedFormIndex
                                                            ? 'selected-form'
                                                            : ''
                                                    }
                                                >
                                                    {form.title}
                                                </span>
                                            </span>
                                            <br />
                                            <span className='proform-date'>
                                                <span className='redFont'>Expiration Date : </span>
                                                {form.expirationDate}
                                            </span>
                                        </div>
                                    </Typography>
                                </ExpansionPanelSummary>
                                <ExpansionPanelDetails className='padding0 expansionPanel'>
                                    <MenuList>
                                        {visibleSectionsArray.map((section, listItemindex) => (
                                            <div
                                                key={section}
                                                className='SplitterLayoutMenuContainer'
                                            >
                                                <MenuItem
                                                    selected={
                                                        listItemindex === selectedSectionIndex
                                                    }
                                                    className={
                                                        listItemindex === selectedSectionIndex
                                                            ? 'menuSel'
                                                            : 'menuItem'
                                                    }
                                                    onClick={() => {
                                                        this.handleSectionClick(section);
                                                    }}
                                                >
                                                    {this.getSectionStatus(
                                                        section,
                                                        form['formDataWidNoOfQuestions']
                                                    )}
                                                    <ListItemText
                                                        // classes={{ primary: classNames.primary }}
                                                        inset
                                                        primary={this.getSectionName(section, sectionsMetaData)} //fetcing section title from section dataschema
                                                        // primary={section}
                                                    />
                                                </MenuItem>
                                            </div>
                                        ))}
                                    </MenuList>
                                </ExpansionPanelDetails>
                            </ExpansionPanel>
                        );
                    })}
                </MenuList>
            </Fragment>
        );
    }
}
 
export default ProFormsList;