feat(admin): migrate users to vue 3 composable

pull/5698/head
Nicolas Giard 2 years ago
parent 6e303ac648
commit 47ed7b371c
No known key found for this signature in database
GPG Key ID: 85061B8F9D55B7C8

@ -89,7 +89,7 @@ module.exports = {
await WIKI.models.users.createNewUser({ ...args, passwordRaw: args.password, isVerified: true }) await WIKI.models.users.createNewUser({ ...args, passwordRaw: args.password, isVerified: true })
return { return {
status: graphHelper.generateSuccess('User created successfully') operation: graphHelper.generateSuccess('User created successfully')
} }
} catch (err) { } catch (err) {
return graphHelper.generateError(err) return graphHelper.generateError(err)
@ -106,7 +106,7 @@ module.exports = {
WIKI.events.outbound.emit('addAuthRevoke', { id: args.id, kind: 'u' }) WIKI.events.outbound.emit('addAuthRevoke', { id: args.id, kind: 'u' })
return { return {
status: graphHelper.generateSuccess('User deleted successfully') operation: graphHelper.generateSuccess('User deleted successfully')
} }
} catch (err) { } catch (err) {
if (err.message.indexOf('foreign') >= 0) { if (err.message.indexOf('foreign') >= 0) {
@ -121,7 +121,7 @@ module.exports = {
await WIKI.models.users.updateUser(args.id, args.patch) await WIKI.models.users.updateUser(args.id, args.patch)
return { return {
status: graphHelper.generateSuccess('User updated successfully') operation: graphHelper.generateSuccess('User updated successfully')
} }
} catch (err) { } catch (err) {
return graphHelper.generateError(err) return graphHelper.generateError(err)
@ -132,7 +132,7 @@ module.exports = {
await WIKI.models.users.query().patch({ isVerified: true }).findById(args.id) await WIKI.models.users.query().patch({ isVerified: true }).findById(args.id)
return { return {
status: graphHelper.generateSuccess('User verified successfully') operation: graphHelper.generateSuccess('User verified successfully')
} }
} catch (err) { } catch (err) {
return graphHelper.generateError(err) return graphHelper.generateError(err)
@ -143,7 +143,7 @@ module.exports = {
await WIKI.models.users.query().patch({ isActive: true }).findById(args.id) await WIKI.models.users.query().patch({ isActive: true }).findById(args.id)
return { return {
status: graphHelper.generateSuccess('User activated successfully') operation: graphHelper.generateSuccess('User activated successfully')
} }
} catch (err) { } catch (err) {
return graphHelper.generateError(err) return graphHelper.generateError(err)
@ -160,7 +160,7 @@ module.exports = {
WIKI.events.outbound.emit('addAuthRevoke', { id: args.id, kind: 'u' }) WIKI.events.outbound.emit('addAuthRevoke', { id: args.id, kind: 'u' })
return { return {
status: graphHelper.generateSuccess('User deactivated successfully') operation: graphHelper.generateSuccess('User deactivated successfully')
} }
} catch (err) { } catch (err) {
return graphHelper.generateError(err) return graphHelper.generateError(err)
@ -171,7 +171,7 @@ module.exports = {
await WIKI.models.users.query().patch({ tfaIsActive: true, tfaSecret: null }).findById(args.id) await WIKI.models.users.query().patch({ tfaIsActive: true, tfaSecret: null }).findById(args.id)
return { return {
status: graphHelper.generateSuccess('User 2FA enabled successfully') operation: graphHelper.generateSuccess('User 2FA enabled successfully')
} }
} catch (err) { } catch (err) {
return graphHelper.generateError(err) return graphHelper.generateError(err)
@ -182,7 +182,7 @@ module.exports = {
await WIKI.models.users.query().patch({ tfaIsActive: false, tfaSecret: null }).findById(args.id) await WIKI.models.users.query().patch({ tfaIsActive: false, tfaSecret: null }).findById(args.id)
return { return {
status: graphHelper.generateSuccess('User 2FA disabled successfully') operation: graphHelper.generateSuccess('User 2FA disabled successfully')
} }
} catch (err) { } catch (err) {
return graphHelper.generateError(err) return graphHelper.generateError(err)
@ -225,7 +225,7 @@ module.exports = {
const newToken = await WIKI.models.users.refreshToken(usr.id) const newToken = await WIKI.models.users.refreshToken(usr.id)
return { return {
status: graphHelper.generateSuccess('User profile updated successfully'), operation: graphHelper.generateSuccess('User profile updated successfully'),
jwt: newToken.token jwt: newToken.token
} }
} catch (err) { } catch (err) {

@ -76,6 +76,7 @@
"uuid": "8.3.2", "uuid": "8.3.2",
"v-network-graph": "0.5.16", "v-network-graph": "0.5.16",
"vue": "3.2.31", "vue": "3.2.31",
"vue-codemirror": "5.0.1",
"vue-i18n": "9.1.10", "vue-i18n": "9.1.10",
"vue-router": "4.0.15", "vue-router": "4.0.15",
"vuedraggable": "4.1.0", "vuedraggable": "4.1.0",

@ -501,7 +501,7 @@ import { fileOpen } from 'browser-fs-access'
import { useI18n } from 'vue-i18n' import { useI18n } from 'vue-i18n'
import { exportFile, useQuasar } from 'quasar' import { exportFile, useQuasar } from 'quasar'
import { computed, onBeforeUnmount, onMounted, reactive, watch } from 'vue' import { computed, onMounted, reactive, watch } from 'vue'
import { useRouter, useRoute } from 'vue-router' import { useRouter, useRoute } from 'vue-router'
import { useAdminStore } from 'src/stores/admin' import { useAdminStore } from 'src/stores/admin'

@ -1,24 +1,21 @@
<template lang="pug"> <template lang="pug">
q-dialog(ref='dialog', @hide='onDialogHide') q-dialog(ref='dialogRef', @hide='onDialogHide')
q-card(style='min-width: 650px;') q-card(style='min-width: 650px;')
q-card-section.card-header q-card-section.card-header
q-icon(name='img:/_assets/icons/fluent-password-reset.svg', left, size='sm') q-icon(name='img:/_assets/icons/fluent-password-reset.svg', left, size='sm')
span {{$t(`admin.users.changePassword`)}} span {{t(`admin.users.changePassword`)}}
q-form.q-py-sm(ref='changeUserPwdForm', @submit='save') q-form.q-py-sm(ref='changeUserPwdForm', @submit='save')
q-item q-item
blueprint-icon(icon='password') blueprint-icon(icon='password')
q-item-section q-item-section
q-input( q-input(
outlined outlined
v-model='userPassword' v-model='state.userPassword'
dense dense
:rules=`[ :rules='userPasswordValidation'
val => val.length > 0 || $t('admin.users.passwordMissing'),
val => val.length >= 8 || $t('admin.users.passwordTooShort')
]`
hide-bottom-space hide-bottom-space
:label='$t(`admin.users.password`)' :label='t(`admin.users.password`)'
:aria-label='$t(`admin.users.password`)' :aria-label='t(`admin.users.password`)'
lazy-rules='ondemand' lazy-rules='ondemand'
autofocus autofocus
) )
@ -41,159 +38,182 @@ q-dialog(ref='dialog', @hide='onDialogHide')
q-item(tag='label', v-ripple) q-item(tag='label', v-ripple)
blueprint-icon(icon='password-reset') blueprint-icon(icon='password-reset')
q-item-section q-item-section
q-item-label {{$t(`admin.users.mustChangePwd`)}} q-item-label {{t(`admin.users.mustChangePwd`)}}
q-item-label(caption) {{$t(`admin.users.mustChangePwdHint`)}} q-item-label(caption) {{t(`admin.users.mustChangePwdHint`)}}
q-item-section(avatar) q-item-section(avatar)
q-toggle( q-toggle(
v-model='userMustChangePassword' v-model='state.userMustChangePassword'
color='primary' color='primary'
checked-icon='las la-check' checked-icon='las la-check'
unchecked-icon='las la-times' unchecked-icon='las la-times'
:aria-label='$t(`admin.users.mustChangePwd`)' :aria-label='t(`admin.users.mustChangePwd`)'
) )
q-card-actions.card-actions q-card-actions.card-actions
q-space q-space
q-btn.acrylic-btn( q-btn.acrylic-btn(
flat flat
:label='$t(`common.actions.cancel`)' :label='t(`common.actions.cancel`)'
color='grey' color='grey'
padding='xs md' padding='xs md'
@click='hide' @click='onDialogCancel'
) )
q-btn( q-btn(
unelevated unelevated
:label='$t(`common.actions.update`)' :label='t(`common.actions.update`)'
color='primary' color='primary'
padding='xs md' padding='xs md'
@click='save' @click='save'
:loading='isLoading' :loading='state.isLoading'
) )
</template> </template>
<script> <script setup>
import gql from 'graphql-tag' import gql from 'graphql-tag'
import sampleSize from 'lodash/sampleSize' import sampleSize from 'lodash/sampleSize'
import zxcvbn from 'zxcvbn' import zxcvbn from 'zxcvbn'
export default { import { useI18n } from 'vue-i18n'
props: { import { useDialogPluginComponent, useQuasar } from 'quasar'
userId: { import { computed, reactive, ref } from 'vue'
type: String,
required: true // PROPS
}
}, const props = defineProps({
emits: ['ok', 'hide'], userId: {
data () { type: String,
required: true
}
})
// EMITS
defineEmits([
...useDialogPluginComponent.emits
])
// QUASAR
const { dialogRef, onDialogHide, onDialogOK, onDialogCancel } = useDialogPluginComponent()
const $q = useQuasar()
// I18N
const { t } = useI18n()
// DATA
const state = reactive({
userPassword: '',
userMustChangePassword: false,
isLoading: false
})
// REFS
const changeUserPwdForm = ref(null)
// COMPUTED
const passwordStrength = computed(() => {
if (state.userPassword.length < 8) {
return { return {
userPassword: '', color: 'negative',
userMustChangePassword: false, label: t('admin.users.pwdStrengthWeak')
isLoading: false
} }
}, } else {
computed: { switch (zxcvbn(state.userPassword).score) {
passwordStrength () { case 1:
if (this.userPassword.length < 8) {
return { return {
color: 'negative', color: 'deep-orange-7',
label: this.$t('admin.users.pwdStrengthWeak') label: t('admin.users.pwdStrengthPoor')
} }
} else { case 2:
switch (zxcvbn(this.userPassword).score) { return {
case 1: color: 'purple-7',
return { label: t('admin.users.pwdStrengthMedium')
color: 'deep-orange-7',
label: this.$t('admin.users.pwdStrengthPoor')
}
case 2:
return {
color: 'purple-7',
label: this.$t('admin.users.pwdStrengthMedium')
}
case 3:
return {
color: 'blue-7',
label: this.$t('admin.users.pwdStrengthGood')
}
case 4:
return {
color: 'green-7',
label: this.$t('admin.users.pwdStrengthStrong')
}
default:
return {
color: 'negative',
label: this.$t('admin.users.pwdStrengthWeak')
}
} }
} case 3:
} return {
}, color: 'blue-7',
methods: { label: t('admin.users.pwdStrengthGood')
show () {
this.$refs.dialog.show()
},
hide () {
this.$refs.dialog.hide()
},
onDialogHide () {
this.$emit('hide')
},
randomizePassword () {
const pwdChars = 'abcdefghkmnpqrstuvwxyzABCDEFHJKLMNPQRSTUVWXYZ23456789_*=?#!()+'
this.userPassword = sampleSize(pwdChars, 16).join('')
},
async save () {
this.isLoading = true
try {
const isFormValid = await this.$refs.changeUserPwdForm.validate(true)
if (!isFormValid) {
throw new Error(this.$t('admin.users.createInvalidData'))
} }
const resp = await this.$apollo.mutate({ case 4:
mutation: gql` return {
mutation adminUpdateUserPwd ( color: 'green-7',
$id: UUID! label: t('admin.users.pwdStrengthStrong')
$patch: UserUpdateInput! }
) { default:
updateUser ( return {
id: $id color: 'negative',
patch: $patch label: t('admin.users.pwdStrengthWeak')
) { }
status { }
succeeded }
message })
}
} // VALIDATION RULES
}
`, const userPasswordValidation = [
variables: { val => val.length > 0 || t('admin.users.passwordMissing'),
id: this.userId, val => val.length >= 8 || t('admin.users.passwordTooShort')
patch: { ]
newPassword: this.userPassword,
mustChangePassword: this.userMustChangePassword // METHODS
function randomizePassword () {
const pwdChars = 'abcdefghkmnpqrstuvwxyzABCDEFHJKLMNPQRSTUVWXYZ23456789_*=?#!()+'
state.userPassword = sampleSize(pwdChars, 16).join('')
}
async function save () {
state.isLoading = true
try {
const isFormValid = await changeUserPwdForm.value.validate(true)
if (!isFormValid) {
throw new Error(t('admin.users.createInvalidData'))
}
const resp = await APOLLO_CLIENT.mutate({
mutation: gql`
mutation adminUpdateUserPwd (
$id: UUID!
$patch: UserUpdateInput!
) {
updateUser (
id: $id
patch: $patch
) {
operation {
succeeded
message
} }
} }
})
if (resp?.data?.updateUser?.status?.succeeded) {
this.$q.notify({
type: 'positive',
message: this.$t('admin.users.createSuccess')
})
this.$emit('ok', {
mustChangePassword: this.userMustChangePassword
})
this.hide()
} else {
throw new Error(resp?.data?.updateUser?.status?.message || 'An unexpected error occured.')
} }
} catch (err) { `,
this.$q.notify({ variables: {
type: 'negative', id: props.userId,
message: err.message patch: {
}) newPassword: state.userPassword,
mustChangePassword: state.userMustChangePassword
}
} }
this.isLoading = false })
if (resp?.data?.updateUser?.operation?.succeeded) {
$q.notify({
type: 'positive',
message: t('admin.users.createSuccess')
})
onDialogOK({
mustChangePassword: state.userMustChangePassword
})
} else {
throw new Error(resp?.data?.updateUser?.operation?.message || 'An unexpected error occured.')
} }
} catch (err) {
$q.notify({
type: 'negative',
message: err.message
})
} }
state.isLoading = false
} }
</script> </script>

@ -1,24 +1,21 @@
<template lang="pug"> <template lang="pug">
q-dialog(ref='dialog', @hide='onDialogHide') q-dialog(ref='dialogRef', @hide='onDialogHide')
q-card(style='min-width: 650px;') q-card(style='min-width: 650px;')
q-card-section.card-header q-card-section.card-header
q-icon(name='img:/_assets/icons/fluent-plus-plus.svg', left, size='sm') q-icon(name='img:/_assets/icons/fluent-plus-plus.svg', left, size='sm')
span {{$t(`admin.users.create`)}} span {{t(`admin.users.create`)}}
q-form.q-py-sm(ref='createUserForm', @submit='create') q-form.q-py-sm(ref='createUserForm', @submit='create')
q-item q-item
blueprint-icon(icon='person') blueprint-icon(icon='person')
q-item-section q-item-section
q-input( q-input(
outlined outlined
v-model='userName' v-model='state.userName'
dense dense
:rules=`[ :rules='userNameValidation'
val => val.length > 0 || $t('admin.users.nameMissing'),
val => /^[^<>"]+$/.test(val) || $t('admin.users.nameInvalidChars')
]`
hide-bottom-space hide-bottom-space
:label='$t(`common.field.name`)' :label='t(`common.field.name`)'
:aria-label='$t(`common.field.name`)' :aria-label='t(`common.field.name`)'
lazy-rules='ondemand' lazy-rules='ondemand'
autofocus autofocus
ref='iptName' ref='iptName'
@ -28,16 +25,13 @@ q-dialog(ref='dialog', @hide='onDialogHide')
q-item-section q-item-section
q-input( q-input(
outlined outlined
v-model='userEmail' v-model='state.userEmail'
dense dense
type='email' type='email'
:rules=`[ :rules='userEmailValidation'
val => val.length > 0 || $t('admin.users.emailMissing'),
val => /^.+\@.+\..+$/.test(val) || $t('admin.users.emailInvalid')
]`
hide-bottom-space hide-bottom-space
:label='$t(`admin.users.email`)' :label='t(`admin.users.email`)'
:aria-label='$t(`admin.users.email`)' :aria-label='t(`admin.users.email`)'
lazy-rules='ondemand' lazy-rules='ondemand'
autofocus autofocus
) )
@ -46,15 +40,12 @@ q-dialog(ref='dialog', @hide='onDialogHide')
q-item-section q-item-section
q-input( q-input(
outlined outlined
v-model='userPassword' v-model='state.userPassword'
dense dense
:rules=`[ :rules='userPasswordValidation'
val => val.length > 0 || $t('admin.users.passwordMissing'),
val => val.length >= 8 || $t('admin.users.passwordTooShort')
]`
hide-bottom-space hide-bottom-space
:label='$t(`admin.users.password`)' :label='t(`admin.users.password`)'
:aria-label='$t(`admin.users.password`)' :aria-label='t(`admin.users.password`)'
lazy-rules='ondemand' lazy-rules='ondemand'
autofocus autofocus
) )
@ -79,8 +70,8 @@ q-dialog(ref='dialog', @hide='onDialogHide')
q-item-section q-item-section
q-select( q-select(
outlined outlined
:options='groups' :options='state.groups'
v-model='userGroups' v-model='state.userGroups'
multiple multiple
map-options map-options
emit-value emit-value
@ -88,29 +79,26 @@ q-dialog(ref='dialog', @hide='onDialogHide')
option-label='name' option-label='name'
options-dense options-dense
dense dense
:rules=`[ :rules='userGroupsValidation'
val => val.length > 0 || $t('admin.users.groupsMissing')
]`
hide-bottom-space hide-bottom-space
:label='$t(`admin.users.groups`)' :label='t(`admin.users.groups`)'
:aria-label='$t(`admin.users.groups`)' :aria-label='t(`admin.users.groups`)'
lazy-rules='ondemand' lazy-rules='ondemand'
:loading='loadingGroups' :loading='state.loadingGroups'
) )
template(v-slot:selected) template(v-slot:selected)
.text-caption(v-if='userGroups.length > 1') .text-caption(v-if='state.userGroups.length > 1')
i18n-t(keypath='admin.users.groupsSelected') i18n-t(keypath='admin.users.groupsSelected')
template(#count) template(#count)
strong {{ userGroups.length }} strong {{ state.userGroups.length }}
.text-caption(v-else-if='userGroups.length === 1') .text-caption(v-else-if='state.userGroups.length === 1')
i18n-t(keypath='admin.users.groupSelected') i18n-t(keypath='admin.users.groupSelected')
template(#group) template(#group)
strong {{ selectedGroupName }} strong {{ selectedGroupName }}
span(v-else) span(v-else)
template(v-slot:option='{ itemProps, itemEvents, opt, selected, toggleOption }') template(v-slot:option='{ itemProps, opt, selected, toggleOption }')
q-item( q-item(
v-bind='itemProps' v-bind='itemProps'
v-on='itemEvents'
) )
q-item-section(side) q-item-section(side)
q-checkbox( q-checkbox(
@ -123,214 +111,254 @@ q-dialog(ref='dialog', @hide='onDialogHide')
q-item(tag='label', v-ripple) q-item(tag='label', v-ripple)
blueprint-icon(icon='password-reset') blueprint-icon(icon='password-reset')
q-item-section q-item-section
q-item-label {{$t(`admin.users.mustChangePwd`)}} q-item-label {{t(`admin.users.mustChangePwd`)}}
q-item-label(caption) {{$t(`admin.users.mustChangePwdHint`)}} q-item-label(caption) {{t(`admin.users.mustChangePwdHint`)}}
q-item-section(avatar) q-item-section(avatar)
q-toggle( q-toggle(
v-model='userMustChangePassword' v-model='state.userMustChangePassword'
color='primary' color='primary'
checked-icon='las la-check' checked-icon='las la-check'
unchecked-icon='las la-times' unchecked-icon='las la-times'
:aria-label='$t(`admin.users.mustChangePwd`)' :aria-label='t(`admin.users.mustChangePwd`)'
) )
q-item(tag='label', v-ripple) q-item(tag='label', v-ripple)
blueprint-icon(icon='email-open') blueprint-icon(icon='email-open')
q-item-section q-item-section
q-item-label {{$t(`admin.users.sendWelcomeEmail`)}} q-item-label {{t(`admin.users.sendWelcomeEmail`)}}
q-item-label(caption) {{$t(`admin.users.sendWelcomeEmailHint`)}} q-item-label(caption) {{t(`admin.users.sendWelcomeEmailHint`)}}
q-item-section(avatar) q-item-section(avatar)
q-toggle( q-toggle(
v-model='userSendWelcomeEmail' v-model='state.userSendWelcomeEmail'
color='primary' color='primary'
checked-icon='las la-check' checked-icon='las la-check'
unchecked-icon='las la-times' unchecked-icon='las la-times'
:aria-label='$t(`admin.users.sendWelcomeEmail`)' :aria-label='t(`admin.users.sendWelcomeEmail`)'
) )
q-card-actions.card-actions q-card-actions.card-actions
q-checkbox( q-checkbox(
v-model='keepOpened' v-model='state.keepOpened'
color='primary' color='primary'
:label='$t(`admin.users.createKeepOpened`)' :label='t(`admin.users.createKeepOpened`)'
size='sm' size='sm'
) )
q-space q-space
q-btn.acrylic-btn( q-btn.acrylic-btn(
flat flat
:label='$t(`common.actions.cancel`)' :label='t(`common.actions.cancel`)'
color='grey' color='grey'
padding='xs md' padding='xs md'
@click='hide' @click='onDialogCancel'
) )
q-btn( q-btn(
unelevated unelevated
:label='$t(`common.actions.create`)' :label='t(`common.actions.create`)'
color='primary' color='primary'
padding='xs md' padding='xs md'
@click='create' @click='create'
:loading='loading > 0' :loading='state.loading > 0'
) )
</template> </template>
<script> <script setup>
import gql from 'graphql-tag' import gql from 'graphql-tag'
import sampleSize from 'lodash/sampleSize' import sampleSize from 'lodash/sampleSize'
import zxcvbn from 'zxcvbn' import zxcvbn from 'zxcvbn'
import cloneDeep from 'lodash/cloneDeep' import cloneDeep from 'lodash/cloneDeep'
import { useI18n } from 'vue-i18n'
import { useDialogPluginComponent, useQuasar } from 'quasar'
import { computed, onMounted, reactive, ref } from 'vue'
export default { // EMITS
emits: ['ok', 'hide'],
data () { defineEmits([
...useDialogPluginComponent.emits
])
// QUASAR
const { dialogRef, onDialogHide, onDialogOK, onDialogCancel } = useDialogPluginComponent()
const $q = useQuasar()
// I18N
const { t } = useI18n()
// DATA
const state = reactive({
userName: '',
userEmail: '',
userPassword: '',
userGroups: [],
userMustChangePassword: false,
userSendWelcomeEmail: false,
keepOpened: false,
groups: [],
loadingGroups: false,
loading: false
})
// REFS
const createUserForm = ref(null)
const iptName = ref(null)
// COMPUTED
const passwordStrength = computed(() => {
if (state.userPassword.length < 8) {
return { return {
userName: '', color: 'negative',
userEmail: '', label: t('admin.users.pwdStrengthWeak')
userPassword: '',
userGroups: [],
userMustChangePassword: false,
userSendWelcomeEmail: false,
keepOpened: false,
groups: [],
loadingGroups: false,
loading: false
} }
}, } else {
computed: { switch (zxcvbn(state.userPassword).score) {
passwordStrength () { case 1:
if (this.userPassword.length < 8) {
return { return {
color: 'negative', color: 'deep-orange-7',
label: this.$t('admin.users.pwdStrengthWeak') label: t('admin.users.pwdStrengthPoor')
} }
} else { case 2:
switch (zxcvbn(this.userPassword).score) { return {
case 1: color: 'purple-7',
return { label: t('admin.users.pwdStrengthMedium')
color: 'deep-orange-7', }
label: this.$t('admin.users.pwdStrengthPoor') case 3:
} return {
case 2: color: 'blue-7',
return { label: t('admin.users.pwdStrengthGood')
color: 'purple-7', }
label: this.$t('admin.users.pwdStrengthMedium') case 4:
} return {
case 3: color: 'green-7',
return { label: t('admin.users.pwdStrengthStrong')
color: 'blue-7', }
label: this.$t('admin.users.pwdStrengthGood') default:
} return {
case 4: color: 'negative',
return { label: t('admin.users.pwdStrengthWeak')
color: 'green-7',
label: this.$t('admin.users.pwdStrengthStrong')
}
default:
return {
color: 'negative',
label: this.$t('admin.users.pwdStrengthWeak')
}
} }
}
},
selectedGroupName () {
return this.groups.filter(g => g.id === this.userGroups[0])[0]?.name
} }
}, }
methods: { })
async show () { const selectedGroupName = computed(() => {
this.$refs.dialog.show() return state.groups.filter(g => g.id === state.userGroups[0])[0]?.name
})
this.loading++ // VALIDATION RULES
this.loadingGroups = true
const resp = await this.$apollo.query({ const userNameValidation = [
query: gql` val => val.length > 0 || t('admin.users.nameMissing'),
query getGroupsForCreateUser { val => /^[^<>"]+$/.test(val) || t('admin.users.nameInvalidChars')
groups { ]
id
name const userEmailValidation = [
} val => val.length > 0 || t('admin.users.emailMissing'),
} val => /^.+@.+\..+$/.test(val) || t('admin.users.emailInvalid')
`, ]
fetchPolicy: 'network-only'
}) const userPasswordValidation = [
this.groups = cloneDeep(resp?.data?.groups?.filter(g => g.id !== '10000000-0000-4000-0000-000000000001') ?? []) val => val.length > 0 || t('admin.users.passwordMissing'),
this.loadingGroups = false val => val.length >= 8 || t('admin.users.passwordTooShort')
this.loading-- ]
},
hide () { const userGroupsValidation = [
this.$refs.dialog.hide() val => val.length > 0 || t('admin.users.groupsMissing')
}, ]
onDialogHide () {
this.$emit('hide') // METHODS
},
randomizePassword () { async function loadGroups () {
const pwdChars = 'abcdefghkmnpqrstuvwxyzABCDEFHJKLMNPQRSTUVWXYZ23456789_*=?#!()+' state.loading++
this.userPassword = sampleSize(pwdChars, 16).join('') state.loadingGroups = true
}, const resp = await APOLLO_CLIENT.query({
async create () { query: gql`
this.loading++ query getGroupsForCreateUser {
try { groups {
const isFormValid = await this.$refs.createUserForm.validate(true) id
if (!isFormValid) { name
throw new Error(this.$t('admin.users.createInvalidData'))
} }
const resp = await this.$apollo.mutate({ }
mutation: gql` `,
mutation createUser ( fetchPolicy: 'network-only'
$name: String! })
$email: String! state.groups = cloneDeep(resp?.data?.groups?.filter(g => g.id !== '10000000-0000-4000-8000-000000000001') ?? [])
$password: String! state.loadingGroups = false
$groups: [UUID]! state.loading--
$mustChangePassword: Boolean! }
$sendWelcomeEmail: Boolean!
) { function randomizePassword () {
createUser ( const pwdChars = 'abcdefghkmnpqrstuvwxyzABCDEFHJKLMNPQRSTUVWXYZ23456789_*=?#!()+'
name: $name state.userPassword = sampleSize(pwdChars, 16).join('')
email: $email }
password: $password
groups: $groups async function create () {
mustChangePassword: $mustChangePassword state.loading++
sendWelcomeEmail: $sendWelcomeEmail try {
) { const isFormValid = await createUserForm.value.validate(true)
status { if (!isFormValid) {
succeeded throw new Error(t('admin.users.createInvalidData'))
message }
} const resp = await APOLLO_CLIENT.mutate({
} mutation: gql`
mutation createUser (
$name: String!
$email: String!
$password: String!
$groups: [UUID]!
$mustChangePassword: Boolean!
$sendWelcomeEmail: Boolean!
) {
createUser (
name: $name
email: $email
password: $password
groups: $groups
mustChangePassword: $mustChangePassword
sendWelcomeEmail: $sendWelcomeEmail
) {
operation {
succeeded
message
} }
`,
variables: {
name: this.userName,
email: this.userEmail,
password: this.userPassword,
groups: this.userGroups,
mustChangePassword: this.userMustChangePassword,
sendWelcomeEmail: this.userSendWelcomeEmail
} }
})
if (resp?.data?.createUser?.status?.succeeded) {
this.$q.notify({
type: 'positive',
message: this.$t('admin.users.createSuccess')
})
if (this.keepOpened) {
this.userName = ''
this.userEmail = ''
this.userPassword = ''
this.$refs.iptName.focus()
} else {
this.$emit('ok')
this.hide()
}
} else {
throw new Error(resp?.data?.createUser?.status?.message || 'An unexpected error occured.')
} }
} catch (err) { `,
this.$q.notify({ variables: {
type: 'negative', name: state.userName,
message: err.message email: state.userEmail,
}) password: state.userPassword,
groups: state.userGroups,
mustChangePassword: state.userMustChangePassword,
sendWelcomeEmail: state.userSendWelcomeEmail
}
})
if (resp?.data?.createUser?.operation?.succeeded) {
$q.notify({
type: 'positive',
message: t('admin.users.createSuccess')
})
if (state.keepOpened) {
state.userName = ''
state.userEmail = ''
state.userPassword = ''
iptName.value.focus()
} else {
onDialogOK()
} }
this.loading-- } else {
throw new Error(resp?.data?.createUser?.operation?.message || 'An unexpected error occured.')
} }
} catch (err) {
$q.notify({
type: 'negative',
message: err.message
})
} }
state.loading--
} }
// MOUNTED
onMounted(loadGroups)
</script> </script>

File diff suppressed because it is too large Load Diff

@ -168,6 +168,8 @@ const headers = [
} }
] ]
// WATCHERS
watch(() => adminStore.overlay, (newValue, oldValue) => { watch(() => adminStore.overlay, (newValue, oldValue) => {
if (newValue === '' && oldValue === 'GroupEditOverlay') { if (newValue === '' && oldValue === 'GroupEditOverlay') {
router.push('/_admin/groups') router.push('/_admin/groups')
@ -175,9 +177,7 @@ watch(() => adminStore.overlay, (newValue, oldValue) => {
} }
}) })
watch(() => route.params.id, () => { watch(() => route.params.id, checkOverlay)
checkOverlay()
})
// METHODS // METHODS

@ -4,12 +4,12 @@ q-page.admin-groups
.col-auto .col-auto
img.admin-icon.animated.fadeInLeft(src='/_assets/icons/fluent-account.svg') img.admin-icon.animated.fadeInLeft(src='/_assets/icons/fluent-account.svg')
.col.q-pl-md .col.q-pl-md
.text-h5.text-primary.animated.fadeInLeft {{ $t('admin.users.title') }} .text-h5.text-primary.animated.fadeInLeft {{ t('admin.users.title') }}
.text-subtitle1.text-grey.animated.fadeInLeft.wait-p2s {{ $t('admin.users.subtitle') }} .text-subtitle1.text-grey.animated.fadeInLeft.wait-p2s {{ t('admin.users.subtitle') }}
.col-auto.flex.items-center .col-auto.flex.items-center
q-input.denser.q-mr-sm( q-input.denser.q-mr-sm(
outlined outlined
v-model='search' v-model='state.search'
dense dense
:class='$q.dark.isActive ? `bg-dark` : `bg-white`' :class='$q.dark.isActive ? `bg-dark` : `bg-white`'
) )
@ -28,29 +28,29 @@ q-page.admin-groups
flat flat
color='secondary' color='secondary'
@click='load' @click='load'
:loading='loading > 0' :loading='state.loading > 0'
) )
q-btn( q-btn(
unelevated unelevated
icon='las la-plus' icon='las la-plus'
:label='$t(`admin.users.create`)' :label='t(`admin.users.create`)'
color='primary' color='primary'
@click='createUser' @click='createUser'
:disabled='loading > 0' :disabled='state.loading > 0'
) )
q-separator(inset) q-separator(inset)
.row.q-pa-md.q-col-gutter-md .row.q-pa-md.q-col-gutter-md
.col-12 .col-12
q-card.shadow-1 q-card.shadow-1
q-table( q-table(
:rows='users' :rows='state.users'
:columns='headers' :columns='headers'
row-key='id' row-key='id'
flat flat
hide-header hide-header
hide-bottom hide-bottom
:rows-per-page-options='[0]' :rows-per-page-options='[0]'
:loading='loading > 0' :loading='state.loading > 0'
) )
template(v-slot:body-cell-id='props') template(v-slot:body-cell-id='props')
q-td(:props='props') q-td(:props='props')
@ -92,7 +92,7 @@ q-page.admin-groups
:to='`/_admin/users/` + props.row.id' :to='`/_admin/users/` + props.row.id'
icon='las la-pen' icon='las la-pen'
color='indigo' color='indigo'
:label='$t(`common.actions.edit`)' :label='t(`common.actions.edit`)'
no-caps no-caps
) )
q-btn.acrylic-btn( q-btn.acrylic-btn(
@ -100,146 +100,178 @@ q-page.admin-groups
flat flat
icon='las la-trash' icon='las la-trash'
color='accent' color='accent'
@click='deleteGroup(props.row)' @click='deleteUser(props.row)'
) )
</template> </template>
<script> <script setup>
import gql from 'graphql-tag' import gql from 'graphql-tag'
import cloneDeep from 'lodash/cloneDeep' import cloneDeep from 'lodash/cloneDeep'
import { DateTime } from 'luxon' import { DateTime } from 'luxon'
import { sync } from 'vuex-pathify' import { useI18n } from 'vue-i18n'
import { createMetaMixin } from 'quasar' import { useMeta, useQuasar } from 'quasar'
import { onBeforeUnmount, onMounted, reactive, watch } from 'vue'
import { useRouter, useRoute } from 'vue-router'
import { useAdminStore } from 'src/stores/admin'
import UserCreateDialog from '../components/UserCreateDialog.vue' import UserCreateDialog from '../components/UserCreateDialog.vue'
export default { // QUASAR
mixins: [
createMetaMixin(function () { const $q = useQuasar()
return {
title: this.$t('admin.users.title') // STORES
}
}) const adminStore = useAdminStore()
],
data () { // ROUTER
return {
users: [], const router = useRouter()
loading: 0, const route = useRoute()
search: ''
} // I18N
},
computed: { const { t } = useI18n()
overlay: sync('admin/overlay', false),
headers () { // META
return [
{ useMeta({
align: 'center', title: t('admin.users.title')
field: 'id', })
name: 'id',
sortable: false, // DATA
style: 'width: 20px'
}, const state = reactive({
{ users: [],
label: this.$t('common.field.name'), loading: 0,
align: 'left', search: ''
field: 'name', })
name: 'name',
sortable: true const headers = [
}, {
{ align: 'center',
label: this.$t('admin.users.email'), field: 'id',
align: 'left', name: 'id',
field: 'email', sortable: false,
name: 'email', style: 'width: 20px'
sortable: false
},
{
align: 'left',
field: 'createdAt',
name: 'date',
sortable: false
},
{
label: '',
align: 'right',
field: 'edit',
name: 'edit',
sortable: false,
style: 'width: 250px'
}
]
}
}, },
watch: { {
overlay (newValue, oldValue) { label: t('common.field.name'),
if (newValue === '' && oldValue === 'UserEditOverlay') { align: 'left',
this.$router.push('/_admin/users') field: 'name',
this.load() name: 'name',
} sortable: true
},
$route: 'checkOverlay'
}, },
mounted () { {
this.checkOverlay() label: t('admin.users.email'),
this.load() align: 'left',
field: 'email',
name: 'email',
sortable: false
}, },
beforeUnmount () { {
this.overlay = '' align: 'left',
field: 'createdAt',
name: 'date',
sortable: false
}, },
methods: { {
async load () { label: '',
this.loading++ align: 'right',
this.$q.loading.show() field: 'edit',
const resp = await this.$apollo.query({ name: 'edit',
query: gql` sortable: false,
query getUsers { style: 'width: 250px'
users { }
id ]
name
email // WATCHERS
isSystem
isActive watch(() => adminStore.overlay, (newValue, oldValue) => {
createdAt if (newValue === '' && oldValue === 'UserEditOverlay') {
lastLoginAt router.push('/_admin/users')
} load()
} }
`, })
fetchPolicy: 'network-only'
}) watch(() => route.params.id, checkOverlay)
this.users = cloneDeep(resp?.data?.users)
this.$q.loading.hide() // METHODS
this.loading--
}, async function load () {
humanizeDate (val) { state.loading++
return DateTime.fromISO(val).toRelative() $q.loading.show()
}, const resp = await APOLLO_CLIENT.query({
checkOverlay () { query: gql`
if (this.$route.params && this.$route.params.id) { query getUsers {
this.$store.set('admin/overlayOpts', { id: this.$route.params.id }) users {
this.$store.set('admin/overlay', 'UserEditOverlay') id
} else { name
this.$store.set('admin/overlay', '') email
} isSystem
}, isActive
createUser () { createdAt
this.$q.dialog({ lastLoginAt
component: UserCreateDialog
}).onOk(() => {
this.load()
})
},
deleteUser (gr) {
this.$q.dialog({
// component: UserDeleteDialog,
componentProps: {
group: gr
} }
}).onOk(() => { }
this.load() `,
}) fetchPolicy: 'network-only'
} })
state.users = cloneDeep(resp?.data?.users)
$q.loading.hide()
state.loading--
}
function humanizeDate (val) {
return DateTime.fromISO(val).toRelative()
}
function checkOverlay () {
if (route.params?.id) {
adminStore.$patch({
overlayOpts: { id: route.params.id },
overlay: 'UserEditOverlay'
})
} else {
adminStore.$patch({
overlay: ''
})
} }
} }
function createUser () {
$q.dialog({
component: UserCreateDialog
}).onOk(() => {
this.load()
})
}
function deleteUser (usr) {
$q.dialog({
// component: UserDeleteDialog,
componentProps: {
user: usr
}
}).onOk(load)
}
// MOUNTED
onMounted(() => {
checkOverlay()
load()
})
// BEFORE UNMOUNT
onBeforeUnmount(() => {
adminStore.$patch({
overlay: ''
})
})
</script> </script>
<style lang='scss'> <style lang='scss'>

@ -42,7 +42,7 @@ const routes = [
// -> Users // -> Users
// { path: 'auth', component: () => import('../pages/AdminAuth.vue') }, // { path: 'auth', component: () => import('../pages/AdminAuth.vue') },
{ path: 'groups/:id?/:section?', component: () => import('../pages/AdminGroups.vue') }, { path: 'groups/:id?/:section?', component: () => import('../pages/AdminGroups.vue') },
// { path: 'users/:id?/:section?', component: () => import('../pages/AdminUsers.vue') }, { path: 'users/:id?/:section?', component: () => import('../pages/AdminUsers.vue') },
// -> System // -> System
// { path: 'api', component: () => import('../pages/AdminApi.vue') }, // { path: 'api', component: () => import('../pages/AdminApi.vue') },
{ path: 'extensions', component: () => import('../pages/AdminExtensions.vue') }, { path: 'extensions', component: () => import('../pages/AdminExtensions.vue') },

@ -97,7 +97,7 @@ __metadata:
languageName: node languageName: node
linkType: hard linkType: hard
"@codemirror/basic-setup@npm:0.20.0": "@codemirror/basic-setup@npm:0.20.0, @codemirror/basic-setup@npm:^0.20.0":
version: 0.20.0 version: 0.20.0
resolution: "@codemirror/basic-setup@npm:0.20.0" resolution: "@codemirror/basic-setup@npm:0.20.0"
dependencies: dependencies:
@ -6717,6 +6717,7 @@ __metadata:
uuid: 8.3.2 uuid: 8.3.2
v-network-graph: 0.5.16 v-network-graph: 0.5.16
vue: 3.2.31 vue: 3.2.31
vue-codemirror: 5.0.1
vue-i18n: 9.1.10 vue-i18n: 9.1.10
vue-router: 4.0.15 vue-router: 4.0.15
vuedraggable: 4.1.0 vuedraggable: 4.1.0
@ -6816,6 +6817,22 @@ __metadata:
languageName: node languageName: node
linkType: hard linkType: hard
"vue-codemirror@npm:5.0.1":
version: 5.0.1
resolution: "vue-codemirror@npm:5.0.1"
dependencies:
"@codemirror/basic-setup": ^0.20.0
"@codemirror/commands": ^0.20.0
"@codemirror/language": ^0.20.0
"@codemirror/state": ^0.20.0
"@codemirror/view": ^0.20.0
csstype: ^2.6.8
peerDependencies:
vue: 3.x
checksum: 5d96312123d109e619ecec56e8ddb1b2bdf294738a1ac796d6d35deefba9bfa25e1a311a29aa79315ba2ef48c0a6df33597a8e062f64b93166801dbed632f599
languageName: node
linkType: hard
"vue-demi@npm:*": "vue-demi@npm:*":
version: 0.12.5 version: 0.12.5
resolution: "vue-demi@npm:0.12.5" resolution: "vue-demi@npm:0.12.5"

Loading…
Cancel
Save