split admin/users component, ref #28
you could take this as reference for other components
This commit is contained in:
parent
c197ead49f
commit
0cf02a0b53
3 changed files with 119 additions and 109 deletions
115
components/admin/Users.vue
Normal file
115
components/admin/Users.vue
Normal file
|
@ -0,0 +1,115 @@
|
||||||
|
<template lang="pug">
|
||||||
|
div
|
||||||
|
//- ADD NEW USER
|
||||||
|
el-collapse
|
||||||
|
el-collapse-item
|
||||||
|
template(slot='title')
|
||||||
|
h4 <v-icon name='plus'/> {{$t('common.new_user')}}
|
||||||
|
el-form(inline)
|
||||||
|
el-form-item(:label="$t('common.email')")
|
||||||
|
el-input(v-model='new_user.email')
|
||||||
|
el-form-item(:label="$t('common.admin')")
|
||||||
|
el-switch(v-model='new_user.is_admin')
|
||||||
|
el-button.float-right(@click='create_user' type='success' plain) {{$t('common.send')}}
|
||||||
|
|
||||||
|
//- USERS LIST
|
||||||
|
el-table(:data='paginatedUsers' small)
|
||||||
|
el-table-column(label='Email')
|
||||||
|
template(slot-scope='data')
|
||||||
|
el-popover(trigger='hover' :content='data.row.description' width='400')
|
||||||
|
span(slot='reference') {{data.row.email}}
|
||||||
|
|
||||||
|
el-table-column(:label="$t('common.actions')")
|
||||||
|
template(slot-scope='data')
|
||||||
|
div(v-if='data.row.id!==$auth.user.id')
|
||||||
|
el-button.mr-1(size='mini'
|
||||||
|
:type='data.row.is_active?"warning":"success"'
|
||||||
|
@click='toggle(data.row)') {{data.row.is_active?$t('common.deactivate'):$t('common.activate')}}
|
||||||
|
el-button(size='mini'
|
||||||
|
:type='data.row.is_admin?"danger":"warning"'
|
||||||
|
@click='toggleAdmin(data.row)') {{data.row.is_admin?$t('admin.remove_admin'):$t('common.admin')}}
|
||||||
|
el-button(size='mini'
|
||||||
|
type='danger'
|
||||||
|
@click='delete_user(data.row)') {{$t('admin.delete_user')}}
|
||||||
|
div(v-else)
|
||||||
|
span {{$t('common.me')}}
|
||||||
|
|
||||||
|
no-ssr
|
||||||
|
el-pagination(:page-size='perPage' :currentPage.sync='userPage' :total='users_.length')
|
||||||
|
|
||||||
|
</template>
|
||||||
|
<script>
|
||||||
|
import { Message, MessageBox } from 'element-ui'
|
||||||
|
|
||||||
|
export default {
|
||||||
|
name: 'Users',
|
||||||
|
props: ['users'],
|
||||||
|
data () {
|
||||||
|
return {
|
||||||
|
perPage: 10,
|
||||||
|
userPage: 1,
|
||||||
|
new_user: {
|
||||||
|
email: '',
|
||||||
|
is_admin: false,
|
||||||
|
},
|
||||||
|
users_: this.users
|
||||||
|
}
|
||||||
|
},
|
||||||
|
computed: {
|
||||||
|
paginatedUsers () {
|
||||||
|
return this.users_.slice((this.userPage-1) * this.perPage,
|
||||||
|
this.userPage * this.perPage)
|
||||||
|
},
|
||||||
|
},
|
||||||
|
methods: {
|
||||||
|
async delete_user (user) {
|
||||||
|
MessageBox.confirm(this.$t('admin.delete_user_confirm'),
|
||||||
|
this.$t('common.confirm'), {
|
||||||
|
confirmButtonText: this.$t('common.ok'),
|
||||||
|
cancelButtonText: this.$t('common.cancel'),
|
||||||
|
type: 'error'
|
||||||
|
})
|
||||||
|
.then( () => this.$axios.delete(`/user/${user.id}`) )
|
||||||
|
.then( () => {
|
||||||
|
Message({
|
||||||
|
showClose: true,
|
||||||
|
type: 'success',
|
||||||
|
message: this.$t('admin.user_remove_ok')
|
||||||
|
})
|
||||||
|
this.users_ = this.users_.filter(u => u.id!==user.id)
|
||||||
|
})
|
||||||
|
},
|
||||||
|
async toggle(user) {
|
||||||
|
user.is_active = !user.is_active
|
||||||
|
this.$axios.$put('/user', user)
|
||||||
|
},
|
||||||
|
async toggleAdmin(user) {
|
||||||
|
try {
|
||||||
|
user.is_admin = !user.is_admin
|
||||||
|
await this.$axios.$put('/user', user)
|
||||||
|
} catch(e) {
|
||||||
|
console.error(e)
|
||||||
|
}
|
||||||
|
},
|
||||||
|
async create_user () {
|
||||||
|
try {
|
||||||
|
this.loading = true
|
||||||
|
const user = await this.$axios.$post('/user', this.new_user)
|
||||||
|
this.new_user = { email: '', is_admin: false }
|
||||||
|
Message({
|
||||||
|
showClose: true,
|
||||||
|
type: 'success',
|
||||||
|
message: this.$t('admin.user_create_ok')
|
||||||
|
})
|
||||||
|
this.users_.push(user)
|
||||||
|
} catch (e) {
|
||||||
|
Message({
|
||||||
|
showClose: true,
|
||||||
|
type: 'error',
|
||||||
|
message: this.$t('user.error_create') + e
|
||||||
|
})
|
||||||
|
}
|
||||||
|
},
|
||||||
|
}
|
||||||
|
}
|
||||||
|
</script>
|
112
pages/admin.vue
112
pages/admin.vue
|
@ -11,42 +11,7 @@
|
||||||
template(slot='label')
|
template(slot='label')
|
||||||
v-icon(name='users')
|
v-icon(name='users')
|
||||||
span.ml-1 {{$t('common.users')}}
|
span.ml-1 {{$t('common.users')}}
|
||||||
|
Users(:users='users')
|
||||||
//- ADD NEW USER
|
|
||||||
el-collapse
|
|
||||||
el-collapse-item
|
|
||||||
template(slot='title')
|
|
||||||
h4 <v-icon name='plus'/> {{$t('common.new_user')}}
|
|
||||||
el-form(inline)
|
|
||||||
el-form-item(:label="$t('common.email')")
|
|
||||||
el-input(v-model='new_user.email')
|
|
||||||
//- el-form-item(:label="$t('common.password')")
|
|
||||||
//- el-input(v-model='new_user.password' type='password')
|
|
||||||
el-form-item(:label="$t('common.admin')")
|
|
||||||
el-switch(v-model='new_user.is_admin')
|
|
||||||
el-button.float-right(@click='create_user' type='success' plain) {{$t('common.send')}}
|
|
||||||
|
|
||||||
el-table(:data='paginatedUsers' small)
|
|
||||||
el-table-column(label='Email')
|
|
||||||
template(slot-scope='data')
|
|
||||||
el-popover(trigger='hover' :content='data.row.description' width='400')
|
|
||||||
span(slot='reference') {{data.row.email}}
|
|
||||||
el-table-column(:label="$t('common.actions')")
|
|
||||||
template(slot-scope='data')
|
|
||||||
div(v-if='data.row.id!==$auth.user.id')
|
|
||||||
el-button.mr-1(size='mini'
|
|
||||||
:type='data.row.is_active?"warning":"success"'
|
|
||||||
@click='toggle(data.row)') {{data.row.is_active?$t('common.deactivate'):$t('common.activate')}}
|
|
||||||
el-button(size='mini'
|
|
||||||
:type='data.row.is_admin?"danger":"warning"'
|
|
||||||
@click='toggleAdmin(data.row)') {{data.row.is_admin?$t('admin.remove_admin'):$t('common.admin')}}
|
|
||||||
el-button(size='mini'
|
|
||||||
type='danger'
|
|
||||||
@click='delete_user(data.row)') {{$t('admin.delete_user')}}
|
|
||||||
div(v-else)
|
|
||||||
span {{$t('common.me')}}
|
|
||||||
no-ssr
|
|
||||||
el-pagination(:page-size='perPage' :currentPage.sync='userPage' :total='users.length')
|
|
||||||
|
|
||||||
//- PLACES
|
//- PLACES
|
||||||
el-tab-pane.pt-1
|
el-tab-pane.pt-1
|
||||||
|
@ -108,18 +73,6 @@
|
||||||
el-form-item(v-show='allow_recurrent_event' :label="$t('admin.recurrent_event_visible')")
|
el-form-item(v-show='allow_recurrent_event' :label="$t('admin.recurrent_event_visible')")
|
||||||
el-switch(v-model='recurrent_event_visible')
|
el-switch(v-model='recurrent_event_visible')
|
||||||
|
|
||||||
el-divider {{$t('admin.personalization')}}
|
|
||||||
span {{$t('common.info')}}
|
|
||||||
el-input(type='textarea' v-model='about')
|
|
||||||
|
|
||||||
el-upload(action=''
|
|
||||||
:limit="1"
|
|
||||||
:auto-upload='false'
|
|
||||||
drag
|
|
||||||
accept='image/*'
|
|
||||||
:multiple='false')
|
|
||||||
|
|
||||||
|
|
||||||
el-divider {{$t('admin.federation')}}
|
el-divider {{$t('admin.federation')}}
|
||||||
el-form(inline @submit.native.prevent='associate_mastondon_instance' label-width='240px')
|
el-form(inline @submit.native.prevent='associate_mastondon_instance' label-width='240px')
|
||||||
p {{$t('admin.mastodon_description')}}
|
p {{$t('admin.mastodon_description')}}
|
||||||
|
@ -134,18 +87,18 @@
|
||||||
<script>
|
<script>
|
||||||
import { mapState, mapActions } from 'vuex'
|
import { mapState, mapActions } from 'vuex'
|
||||||
import { Message, MessageBox } from 'element-ui'
|
import { Message, MessageBox } from 'element-ui'
|
||||||
|
import Users from '../components/admin/Users'
|
||||||
|
|
||||||
export default {
|
export default {
|
||||||
name: 'Admin',
|
name: 'Admin',
|
||||||
|
components: { Users },
|
||||||
middleware: ['auth'],
|
middleware: ['auth'],
|
||||||
data () {
|
data () {
|
||||||
return {
|
return {
|
||||||
perPage: 10,
|
perPage: 10,
|
||||||
users: [],
|
|
||||||
userFields: ['email', 'action'],
|
userFields: ['email', 'action'],
|
||||||
placeFields: ['name', 'address'],
|
placeFields: ['name', 'address'],
|
||||||
placePage: 1,
|
placePage: 1,
|
||||||
userPage: 1,
|
|
||||||
eventPage: 1,
|
eventPage: 1,
|
||||||
tagPage: 1,
|
tagPage: 1,
|
||||||
tagFields: ['tag', 'color'],
|
tagFields: ['tag', 'color'],
|
||||||
|
@ -154,13 +107,8 @@ export default {
|
||||||
tag: {name: '', color: ''},
|
tag: {name: '', color: ''},
|
||||||
events: [],
|
events: [],
|
||||||
loading: false,
|
loading: false,
|
||||||
new_user: {
|
|
||||||
email: '',
|
|
||||||
admin: false,
|
|
||||||
},
|
|
||||||
tab: "0",
|
tab: "0",
|
||||||
open: true,
|
open: true,
|
||||||
about: ''
|
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
async mounted () {
|
async mounted () {
|
||||||
|
@ -210,10 +158,7 @@ export default {
|
||||||
return this.tags.slice((this.tagPage-1) * this.perPage,
|
return this.tags.slice((this.tagPage-1) * this.perPage,
|
||||||
this.tagPage * this.perPage)
|
this.tagPage * this.perPage)
|
||||||
},
|
},
|
||||||
paginatedUsers () {
|
|
||||||
return this.users.slice((this.userPage-1) * this.perPage,
|
|
||||||
this.userPage * this.perPage)
|
|
||||||
},
|
|
||||||
paginatedPlaces () {
|
paginatedPlaces () {
|
||||||
return this.places.slice((this.placePage-1) * this.perPage,
|
return this.places.slice((this.placePage-1) * this.perPage,
|
||||||
this.placePage * this.perPage)
|
this.placePage * this.perPage)
|
||||||
|
@ -237,19 +182,6 @@ export default {
|
||||||
async savePlace () {
|
async savePlace () {
|
||||||
const place = await this.$axios.$put('/place', this.place)
|
const place = await this.$axios.$put('/place', this.place)
|
||||||
},
|
},
|
||||||
async toggle(user) {
|
|
||||||
user.is_active = !user.is_active
|
|
||||||
this.$axios.$put('/user', user)
|
|
||||||
},
|
|
||||||
async toggleAdmin(user) {
|
|
||||||
if (user.id === this.$auth.user.id) return
|
|
||||||
user.is_admin = !user.is_admin
|
|
||||||
try {
|
|
||||||
this.$axios.$put('/user', user)
|
|
||||||
} catch(e) {
|
|
||||||
console.error(e)
|
|
||||||
}
|
|
||||||
},
|
|
||||||
preview (id) {
|
preview (id) {
|
||||||
this.$router.push(`/event/${id}`)
|
this.$router.push(`/event/${id}`)
|
||||||
},
|
},
|
||||||
|
@ -259,42 +191,6 @@ export default {
|
||||||
const url = await this.$axios.$post('/settings/getauthurl', { instance: this.mastodon_instance })
|
const url = await this.$axios.$post('/settings/getauthurl', { instance: this.mastodon_instance })
|
||||||
setTimeout( () => window.location.href=url, 100);
|
setTimeout( () => window.location.href=url, 100);
|
||||||
},
|
},
|
||||||
async delete_user (user) {
|
|
||||||
MessageBox.confirm(this.$t('admin.delete_user_confirm'),
|
|
||||||
this.$t('common.confirm'), {
|
|
||||||
confirmButtonText: this.$t('common.ok'),
|
|
||||||
cancelButtonText: this.$t('common.cancel'),
|
|
||||||
type: 'error'
|
|
||||||
})
|
|
||||||
.then( () => this.$axios.delete(`/user/${user.id}`) )
|
|
||||||
.then( () => {
|
|
||||||
Message({
|
|
||||||
showClose: true,
|
|
||||||
type: 'success',
|
|
||||||
message: this.$t('admin.user_remove_ok')
|
|
||||||
})
|
|
||||||
this.users = this.users.filter(u => u.id!==user.id)
|
|
||||||
})
|
|
||||||
},
|
|
||||||
async create_user () {
|
|
||||||
try {
|
|
||||||
this.loading = true
|
|
||||||
const user = await this.$axios.$post('/user', this.new_user)
|
|
||||||
this.new_user = { email: '', is_admin: false }
|
|
||||||
Message({
|
|
||||||
showClose: true,
|
|
||||||
type: 'success',
|
|
||||||
message: this.$t('admin.user_create_ok')
|
|
||||||
})
|
|
||||||
this.users.push(user)
|
|
||||||
} catch (e) {
|
|
||||||
Message({
|
|
||||||
showClose: true,
|
|
||||||
type: 'error',
|
|
||||||
message: this.$t('user.error_create') + e
|
|
||||||
})
|
|
||||||
}
|
|
||||||
},
|
|
||||||
async confirm (id) {
|
async confirm (id) {
|
||||||
try {
|
try {
|
||||||
this.loading = true
|
this.loading = true
|
||||||
|
|
|
@ -45,7 +45,6 @@ const settingsController = {
|
||||||
},
|
},
|
||||||
|
|
||||||
async getUserLocale(req, res) {
|
async getUserLocale(req, res) {
|
||||||
console.error(user_locale_path)
|
|
||||||
// load user locale specified in configuration
|
// load user locale specified in configuration
|
||||||
if (user_locale_path) {
|
if (user_locale_path) {
|
||||||
res.json(require(user_locale_path))
|
res.json(require(user_locale_path))
|
||||||
|
|
Loading…
Reference in a new issue