Press n or j to go to the next uncovered block, b, p or k for the previous block.
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 | 2x 2x 120x 10x 130x 10x 10x 10x 40x 10x 10x 10x 20x 10x 20x 20x 20x 20x 20x 20x 20x 10x 10x 10x | /* * Copyright (c) 2021, salesforce.com, inc. * All rights reserved. * Licensed under the BSD 3-Clause license. * For full license text, see LICENSE.txt file in the repo root or https://opensource.org/licenses/BSD-3-Clause */ import { LightningElement, api, track } from 'lwc'; import { sentenceCase, camelCase } from 'change-case'; export default class PropertyDefinition extends LightningElement { @api pid = ''; @api targets = []; @track property = { name: '', targets: [], selectedTargets: [], type: '', description: '', label: '', default: '', apexClassName: '', sObjectName: '', min: '', max: '', placeholder: '', required: false, flowInput: true, flowOutput: true, datasource: '' }; nonPropertyTargets = [ 'lightning__Tab', 'lightningSnapin__ChatMessage', 'lightningCommunity__Page', 'lightningSnapin__Minimized', 'lightningSnapin__PreChat', 'lightningSnapin__ChatHeader' ]; get enabledTargets() { const enabled = Object.values(this.targets) .filter((t) => t.enabled) .filter((t) => !this.nonPropertyTargets.includes(t.value)); return enabled; } get isCommunityDefaultOnly() { return ( this.property.selectedTargets.length === 1 && this.property.selectedTargets[0] === 'lightningCommunity__Default' ); } get isFlowOnly() { return ( this.property.selectedTargets.length === 1 && this.property.selectedTargets[0] === 'lightning__FlowScreen' ); } get supportsFlow() { return !!this.property.selectedTargets.find( (t) => t === 'lightning__FlowScreen' ); } get isApexClassType() { return this.property.type === 'apex'; } get isSObjectType() { return this.property.type === 'sobject'; } get isDateType() { return this.property.type === 'Date'; } get isDateTimeType() { return this.property.type === 'DateTime'; } get isBoolean() { return this.property.type === 'Boolean'; } get isInteger() { return this.property.type === 'Integer'; } get isString() { return this.property.type === 'String'; } get propertyNameId() { return `propertyName_${this.pid}`; } get labelId() { return `label_${this.pid}`; } get descId() { return `desc_${this.pid}`; } get defaultId() { return `default_${this.pid}`; } get typeId() { return `type_${this.pid}`; } get apexClassNameId() { return `apexClassName_${this.pid}`; } get sObjectNameId() { return `sObjectName_${this.pid}`; } get minId() { return `min_${this.pid}`; } get maxId() { return `max_${this.pid}`; } get placeholderId() { return `placeholder_${this.pid}`; } get requiredId() { return `required_${this.pid}`; } get flowInputId() { return `flowInput_${this.pid}`; } get flowOutputId() { return `flowOutput_${this.pid}`; } get datasourceId() { return `datasource_${this.pid}`; } get isDefaultEnabled() { return this.property.type !== 'apex' && this.property.type !== 'sobject'; } get defaultType() { switch (this.property.type) { case 'Integer': return 'number'; case 'Date': return 'date'; case 'DateTime': return 'datetime-local'; default: return 'text'; } } onChangeInput = (e) => { const key = e.target.attributes.name.value; const formattedValue = this.formatInputValue(key, e.target.value); this.property[key] = formattedValue; if (key === 'name' && !this.property.label) { this.property.label = sentenceCase(formattedValue); } this.updateProperty(); }; onChangeSelect = (e) => { const key = e.target.attributes.name.value; this.property[key] = e.target.value; this.updateProperty(); }; onChangeCheckbox = (e) => { const key = e.target.attributes.name.value; this.property[key] = e.target.checked; // fix for "You can’t make an output only property required."" if ( this.supportsFlow && key === 'required' && e.target.checked && !this.property.flowInput ) { this.property.flowInput = true; } this.updateProperty(); }; onChangeTargetCheckbox = (e) => { const { target, isChecked } = e.detail; if (isChecked) { this.property.selectedTargets.push(target.value); } else { const indexOfTarget = this.property.selectedTargets.indexOf(target.value); if (indexOfTarget > -1) { this.property.selectedTargets.splice(indexOfTarget, 1); } } this.updateProperty(); }; formatInputValue = (key, value) => { if (key === 'name') { return camelCase(value); } return value; }; updateProperty = () => { this.dispatchEvent( new CustomEvent('changepropdef', { detail: { ...this.property, id: this.pid } }) ); }; deletePropertyRow = () => { this.dispatchEvent( new CustomEvent('deletepropdef', { detail: this.pid }) ); }; } |