|
| 1 | +let React = require('react'); |
| 2 | + |
| 3 | +let Template = require('../Template.js'); |
| 4 | + |
| 5 | +let {isSpecialClick} = require('../../lib/utils.js'); |
| 6 | +let map = require('lodash/collection/map'); |
| 7 | +let cloneDeep = require('lodash/lang/cloneDeep'); |
| 8 | + |
| 9 | +class CurrentRefinedValues extends React.Component { |
| 10 | + _clearAllElement(position, requestedPosition) { |
| 11 | + if (requestedPosition !== position) { |
| 12 | + return undefined; |
| 13 | + } |
| 14 | + return ( |
| 15 | + <a |
| 16 | + className={this.props.cssClasses.clearAll} |
| 17 | + href={this.props.clearAllURL} |
| 18 | + onClick={handleClick(this.props.clearAllClick)} |
| 19 | + > |
| 20 | + <Template templateKey="clearAll" {...this.props.templateProps} /> |
| 21 | + </a> |
| 22 | + ); |
| 23 | + } |
| 24 | + |
| 25 | + _refinementElement(refinement, i) { |
| 26 | + const attribute = this.props.attributes[refinement.attributeName] || {}; |
| 27 | + const templateData = getTemplateData(attribute, refinement, this.props.cssClasses); |
| 28 | + const customTemplateProps = getCustomTemplateProps(attribute); |
| 29 | + const key = refinement.attributeName + |
| 30 | + (refinement.operator ? refinement.operator : ':') + |
| 31 | + (refinement.exclude ? refinement.exclude : '') + |
| 32 | + refinement.name; |
| 33 | + return ( |
| 34 | + <div |
| 35 | + className={this.props.cssClasses.item} |
| 36 | + key={key} |
| 37 | + > |
| 38 | + <a |
| 39 | + className={this.props.cssClasses.link} |
| 40 | + href={this.props.clearRefinementURLs[i]} |
| 41 | + onClick={handleClick(this.props.clearRefinementClicks[i])} |
| 42 | + > |
| 43 | + <Template data={templateData} templateKey="item" {...this.props.templateProps} {...customTemplateProps} /> |
| 44 | + </a> |
| 45 | + </div> |
| 46 | + ); |
| 47 | + } |
| 48 | + |
| 49 | + render() { |
| 50 | + return ( |
| 51 | + <div> |
| 52 | + {this._clearAllElement('before', this.props.clearAllPosition)} |
| 53 | + <div className={this.props.cssClasses.list}> |
| 54 | + {map(this.props.refinements, this._refinementElement, this)} |
| 55 | + </div> |
| 56 | + {this._clearAllElement('after', this.props.clearAllPosition)} |
| 57 | + </div> |
| 58 | + ); |
| 59 | + } |
| 60 | +} |
| 61 | + |
| 62 | +function getCustomTemplateProps(attribute) { |
| 63 | + let customTemplateProps = {}; |
| 64 | + if (attribute.template !== undefined) { |
| 65 | + customTemplateProps.templates = { |
| 66 | + item: attribute.template |
| 67 | + }; |
| 68 | + } |
| 69 | + if (attribute.transformData !== undefined) { |
| 70 | + customTemplateProps.transformData = attribute.transformData; |
| 71 | + } |
| 72 | + return customTemplateProps; |
| 73 | +} |
| 74 | + |
| 75 | +function getTemplateData(attribute, _refinement, cssClasses) { |
| 76 | + let templateData = cloneDeep(_refinement); |
| 77 | + |
| 78 | + templateData.cssClasses = cssClasses; |
| 79 | + if (attribute.label !== undefined) { |
| 80 | + templateData.label = attribute.label; |
| 81 | + } |
| 82 | + if (templateData.operator !== undefined) { |
| 83 | + templateData.displayOperator = templateData.operator; |
| 84 | + if (templateData.operator === '>=') { |
| 85 | + templateData.displayOperator = '≥'; |
| 86 | + } |
| 87 | + if (templateData.operator === '<=') { |
| 88 | + templateData.displayOperator = '≤'; |
| 89 | + } |
| 90 | + } |
| 91 | + |
| 92 | + return templateData; |
| 93 | +} |
| 94 | + |
| 95 | +function handleClick(cb) { |
| 96 | + return (e) => { |
| 97 | + if (isSpecialClick(e)) { |
| 98 | + // do not alter the default browser behavior |
| 99 | + // if one special key is down |
| 100 | + return; |
| 101 | + } |
| 102 | + e.preventDefault(); |
| 103 | + cb(); |
| 104 | + }; |
| 105 | +} |
| 106 | + |
| 107 | +CurrentRefinedValues.propTypes = { |
| 108 | + attributes: React.PropTypes.object, |
| 109 | + clearAllClick: React.PropTypes.func, |
| 110 | + clearAllPosition: React.PropTypes.oneOfType([ |
| 111 | + React.PropTypes.string, |
| 112 | + React.PropTypes.bool |
| 113 | + ]), |
| 114 | + clearAllURL: React.PropTypes.string, |
| 115 | + clearRefinementClicks: React.PropTypes.arrayOf( |
| 116 | + React.PropTypes.func |
| 117 | + ), |
| 118 | + clearRefinementURLs: React.PropTypes.arrayOf( |
| 119 | + React.PropTypes.string |
| 120 | + ), |
| 121 | + cssClasses: React.PropTypes.shape({ |
| 122 | + clearAll: React.PropTypes.string, |
| 123 | + list: React.PropTypes.string, |
| 124 | + item: React.PropTypes.string, |
| 125 | + link: React.PropTypes.string, |
| 126 | + count: React.PropTypes.string |
| 127 | + }).isRequired, |
| 128 | + refinements: React.PropTypes.array, |
| 129 | + templateProps: React.PropTypes.object.isRequired |
| 130 | +}; |
| 131 | + |
| 132 | +module.exports = CurrentRefinedValues; |
0 commit comments