|
57 | 57 | @mousemove="resizeHeight"
|
58 | 58 | @keypress="resizeHeight" />
|
59 | 59 |
|
| 60 | + <!-- email with validation--> |
| 61 | + <NcTextField v-else-if="propName === 'email'" |
| 62 | + ref="email" |
| 63 | + :class="{'property__value--with-ext': haveExtHandler}" |
| 64 | + autocapitalize="none" |
| 65 | + autocomplete="email" |
| 66 | + :inputmode="inputmode" |
| 67 | + :readonly="isReadOnly" |
| 68 | + :error="!!helperText && !isReadonly" |
| 69 | + :helper-text="!helperText || isReadonly ? '' : helperText" |
| 70 | + label-outside |
| 71 | + :placeholder="placeholder" |
| 72 | + :value.sync="localValue" |
| 73 | + type="email" |
| 74 | + @update:value="updateEmailValue" /> |
| 75 | + |
60 | 76 | <!-- OR default to input -->
|
61 | 77 | <NcTextField v-else
|
62 | 78 | :value.sync="localValue"
|
|
90 | 106 | <script>
|
91 | 107 | import { NcSelect, NcTextArea, NcTextField } from '@nextcloud/vue'
|
92 | 108 | import debounce from 'debounce'
|
| 109 | +import isEmail from 'validator/lib/isEmail' |
| 110 | +import OpenInNewIcon from 'vue-material-design-icons/OpenInNew.vue' |
93 | 111 | import PropertyMixin from '../../mixins/PropertyMixin.js'
|
94 |
| -import PropertyTitle from './PropertyTitle.vue' |
95 | 112 | import PropertyActions from './PropertyActions.vue'
|
96 |
| -import OpenInNewIcon from 'vue-material-design-icons/OpenInNew.vue' |
| 113 | +import PropertyTitle from './PropertyTitle.vue' |
97 | 114 |
|
98 | 115 | export default {
|
99 | 116 | name: 'PropertyText',
|
@@ -122,6 +139,13 @@ export default {
|
122 | 139 | },
|
123 | 140 | },
|
124 | 141 |
|
| 142 | + data() { |
| 143 | + return { |
| 144 | + helperText: null, |
| 145 | + valueValid: false, |
| 146 | + } |
| 147 | + }, |
| 148 | + |
125 | 149 | computed: {
|
126 | 150 | showProperty() {
|
127 | 151 | return (this.isReadOnly && this.localValue) || !this.isReadOnly
|
@@ -176,11 +200,34 @@ export default {
|
176 | 200 | },
|
177 | 201 | },
|
178 | 202 |
|
| 203 | + watch: { |
| 204 | + isReadOnly(newValue) { |
| 205 | + if (newValue && this.propName === 'email') { |
| 206 | + // If value invalid restore saved valid value |
| 207 | + if (!this.valueValid) { |
| 208 | + this.localValue = this.value |
| 209 | + this.helperText = null |
| 210 | + } |
| 211 | + } |
| 212 | + }, |
| 213 | + }, |
| 214 | + |
179 | 215 | mounted() {
|
180 | 216 | this.resizeHeight()
|
181 | 217 | },
|
182 | 218 |
|
183 | 219 | methods: {
|
| 220 | + updateEmailValue() { |
| 221 | + // If email valid or empty |
| 222 | + this.valueValid = this.localValue === '' || isEmail(this.localValue) |
| 223 | + if (this.valueValid) { |
| 224 | + this.helperText = null |
| 225 | + this.updateValue(this.localValue) |
| 226 | + return |
| 227 | + } |
| 228 | + this.helperText = this.$refs.email.$refs.inputField.$refs.input.validationMessage || null |
| 229 | + }, |
| 230 | + |
184 | 231 | /**
|
185 | 232 | * Watch textarea resize and update the gridSize accordingly
|
186 | 233 | */
|
|
0 commit comments