-
Notifications
You must be signed in to change notification settings - Fork 96
Expand file tree
/
Copy pathNcPasswordField.vue
More file actions
398 lines (350 loc) Ā· 9.11 KB
/
NcPasswordField.vue
File metadata and controls
398 lines (350 loc) Ā· 9.11 KB
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
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
<!--
- SPDX-FileCopyrightText: 2022 Nextcloud GmbH and Nextcloud contributors
- SPDX-License-Identifier: AGPL-3.0-or-later
-->
<docs>
### Description
See [NcInputField](#/Components/NcFields?id=ncinputfield) for a list of all available props.
General purpose password field component.
```
<template>
<div class="wrapper">
<NcPasswordField v-model="text1"
label="Old password" />
<div class="external-label">
<label for="textField">New password</label>
<NcPasswordField id="textField"
v-model="text2"
:label-outside="true"
placeholder="Min. 12 characters"
:success="true"
helper-text="Password is secure" />
</div>
<div class="external-label">
<label for="textField2">New password</label>
<NcPasswordField id="textField2"
v-model="text3"
:error="true"
:label-outside="true"
placeholder="Min. 12 characters"
helper-text="Password is insecure" />
</div>
<NcPasswordField v-model="text4"
label="Validate new password"
check-password-strength
placeholder="Min. 12 characters" />
<NcPasswordField v-model="text5"
:disabled="true"
label="Disabled" />
<NcPasswordField v-model="text6"
label="Secret token"
as-text />
</div>
</template>
<script>
export default {
data() {
return {
text1: '',
text2: 'FWZxt29XEoTQfnBEa',
text3: 'hunter',
text4: '',
text5: '',
text6: 'secret-token',
}
},
}
</script>
<style lang="scss" scoped>
.wrapper {
display: flex;
gap: 4px;
align-items: flex-end;
flex-wrap: wrap;
}
.external-label {
display: flex;
gap: 14px;
width: 100%;
margin-top: 1rem;
}
.external-label label {
padding-top: 7px;
white-space: nowrap;
}
</style>
```
</docs>
<template>
<NcInputField
v-bind="propsAndAttrsToForward"
ref="inputField"
:type="visibility || asText ? 'text' : 'password'"
:trailing-button-label="trailingButtonLabelPassword"
:helper-text="computedHelperText"
:error="computedError"
:success="computedSuccess"
:minlength="rules.minlength"
:input-class="{ 'password-field__input--secure-text': !visibility && asText }"
v-on="$listeners"
@trailing-button-click="toggleVisibility"
@input="handleInput">
<template v-if="!!$scopedSlots.icon || !!$slots.default || !!$scopedSlots.default" #icon>
<!-- @slot Leading icon -->
<slot name="icon">
<!-- @slot Deprecated, removed in v9: use #icon slot instead. -->
<slot />
</slot>
</template>
<template #trailing-button-icon>
<IconEyeOff v-if="visibility" :size="18" />
<IconEye v-else :size="18" />
</template>
</NcInputField>
</template>
<script>
import axios from '@nextcloud/axios'
import { loadState } from '@nextcloud/initial-state'
import { generateOcsUrl } from '@nextcloud/router'
import { useVModel } from '@vueuse/core'
import debounce from 'debounce'
import IconEye from 'vue-material-design-icons/Eye.vue'
import IconEyeOff from 'vue-material-design-icons/EyeOff.vue'
import NcInputField from '../NcInputField/NcInputField.vue'
import { useModelMigration } from '../../composables/useModelMigration.ts'
import { t } from '../../l10n.js'
import { logger } from '../../utils/logger.ts'
/**
* @typedef PasswordPolicy
* @property {object} api - The URLs to the password_policy app methods
* @property {string} api.generate - The URL to the password generator
* @property {string} api.validate - The URL to the password validator
* @property {boolean} enforceNonCommonPassword - Whether to enforce non common passwords
* @property {boolean} enforceNumericCharacters - Whether to enforce numeric characters
* @property {boolean} enforceSpecialCharacters - Whether to enforce special characters
* @property {boolean} enforceUpperLowerCase - Whether to enforce upper and lower case
* @property {number} minLength - The minimum length of the password
*/
/** @type {PasswordPolicy|null} */
const passwordPolicy = loadState('core', 'capabilities', {}).password_policy || null
const NcInputFieldProps = new Set(Object.keys(NcInputField.props))
export default {
name: 'NcPasswordField',
components: {
NcInputField,
IconEye,
IconEyeOff,
},
// Allow forwarding all attributes
inheritAttrs: false,
model: {
prop: 'modelValue',
event: 'update:modelValue',
},
props: {
/**
* Any [NcInputField](#/Components/NcFields?id=ncinputfield) props
*/
// Not an actual prop but needed to show in vue-styleguidist docs
// eslint-disable-next-line
' ': {},
// Reuse all the props from NcInputField for better typing and documentation
...NcInputField.props,
// Redefined props
/**
* Controls whether to display the trailing button.
*/
showTrailingButton: {
type: Boolean,
// eslint-disable-next-line vue/no-boolean-default
default: true,
},
/**
* Removed NcInputField props, defined only by this component
*/
trailingButtonLabel: undefined,
// Custom props
/**
* Check if the user entered a valid password using the password_policy
* app if available.
*
* Warning: this doesn't replace server side checking and will do nothing
* if the password_policy app is disabled.
*/
checkPasswordStrength: {
type: Boolean,
default: false,
},
/**
* The minlength property defines the minimum number of characters
* (as UTF-16 code units) the user can enter
*/
minlength: {
type: Number,
default: undefined,
},
/**
* The maxlength property defines the maximum number of characters
* (as UTF-16 code units) the user can enter
*/
maxlength: {
type: Number,
default: null,
},
/**
* Render as input[type=text] that looks like password field.
* Allows to avoid unwanted password-specific browser behavior,
* such as save or generate password prompt.
* Useful for secret token fields.
* Note: autocomplete="off" is ignored by browsers.
*/
asText: {
type: Boolean,
default: false,
},
/**
* Visibility of the password.
* If this is set to `true` then the password will be shown to the user (input type will be set to `text`).
*/
visible: {
type: Boolean,
default: false,
},
},
emits: [
'valid',
'invalid',
/**
* Removed in v9 - use `update:modelValue` (`v-model`) instead
*
* @deprecated
*/
'update:value',
/**
* Triggers when the value inside the password field is
* updated.
*
* @property {string} The new value
*/
'update:modelValue',
/** Same as update:modelValue for Vue 2 compatibility */
'update:model-value',
/**
* Updated visibility of the password
*
* @property {boolean} visible the new visibility state
*/
'update:visible',
],
setup(props, { emit }) {
const model = useModelMigration('value', 'update:value')
const visibility = useVModel(props, 'visible', emit, { passive: true })
return {
t,
model,
visibility,
}
},
data() {
return {
internalHelpMessage: '',
isValid: null,
}
},
computed: {
computedError() {
return this.error || this.isValid === false
},
computedSuccess() {
return this.success || this.isValid === true
},
computedHelperText() {
if (this.helperText.length > 0) {
return this.helperText
}
return this.internalHelpMessage
},
rules() {
const { minlength } = this
return {
minlength: minlength ?? (this.checkPasswordStrength ? passwordPolicy?.minLength : undefined),
}
},
trailingButtonLabelPassword() {
return this.visibility ? t('Hide password') : t('Show password')
},
propsAndAttrsToForward() {
return {
// Proxy all the HTML attributes
...this.$attrs,
// Proxy original NcInputField's props
...Object.fromEntries(Object.entries(this.$props).filter(([key]) => NcInputFieldProps.has(key))),
}
},
},
watch: {
model(newValue) {
// Reset internal validation state on value change
this.isValid = undefined
this.internalHelpMessage = ''
if (newValue && this.checkPasswordStrength) {
this.checkPassword(newValue)
}
},
},
methods: {
/**
* Focus the input element
*
* @public
*/
focus() {
this.$refs.inputField.focus()
},
/**
* Select all the text in the input
*
* @public
*/
select() {
this.$refs.inputField.select()
},
handleInput(event) {
this.model = event.target.value
},
toggleVisibility() {
this.visibility = !this.visibility
},
checkPassword: debounce(async function(password) {
try {
const { data } = await axios.post(generateOcsUrl('apps/password_policy/api/v1/validate'), { password })
this.isValid = data.ocs.data.passed
if (data.ocs.data.passed) {
this.internalHelpMessage = t('Password is secure')
/**
* Triggers when the internal password_policy detect that the
* password entered is valid.
*/
this.$emit('valid')
return
}
this.internalHelpMessage = data.ocs.data.reason
/**
* Triggers when the internal password_policy detect that the
* password entered is invalid.
*/
this.$emit('invalid')
} catch (e) {
logger.error('Password policy returned an error', e)
}
}, 500),
},
}
</script>
<style lang="scss" scoped>
:deep(.password-field__input--secure-text) {
// Emulate password field look
// This is not a part of the standard but well supported
-webkit-text-security: disc;
}
</style>