mirror of
https://github.com/YunoHost/yunohost-admin.git
synced 2024-09-03 20:06:15 +02:00
[enh] Add Import and export button
This commit is contained in:
parent
f2dbbe91d0
commit
ec61c84939
3 changed files with 67 additions and 5 deletions
|
@ -491,6 +491,7 @@
|
|||
"users_new": "New user",
|
||||
"users_no": "No users.",
|
||||
"users_import": "Import users",
|
||||
"users_export": "Export users",
|
||||
"users_import_csv_file": "CSV File",
|
||||
"users_import_update": "Update existing users",
|
||||
"users_import_delete": "Delete non listed users",
|
||||
|
|
|
@ -117,6 +117,42 @@ body {
|
|||
width: 1.25em !important;
|
||||
}
|
||||
|
||||
// custom css
|
||||
.actions {
|
||||
margin-bottom: 2rem;
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
|
||||
@include media-breakpoint-down(xs) {
|
||||
.buttons {
|
||||
flex-direction: column;
|
||||
justify-content: space-between;
|
||||
}
|
||||
}
|
||||
|
||||
@include media-breakpoint-down(sm) {
|
||||
flex-direction: column-reverse;
|
||||
margin-bottom: 2rem;
|
||||
|
||||
.buttons {
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
|
||||
.btn {
|
||||
margin-bottom: .5rem;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@include media-breakpoint-up(md) {
|
||||
.btn ~ .btn {
|
||||
margin-left: .5rem;
|
||||
}
|
||||
.btn ~ .dropdown-toggle-split {
|
||||
margin-left: 0;
|
||||
}
|
||||
}
|
||||
}
|
||||
// Do not display ligatures in invalid-feedback to avoid confusion.
|
||||
.invalid-feedback {
|
||||
code {
|
||||
|
|
|
@ -12,10 +12,30 @@
|
|||
{{ $t('groups_and_permissions_manage') }}
|
||||
</b-button>
|
||||
|
||||
<b-button variant="success" :to="{ name: 'user-create' }">
|
||||
<div class="btn-group">
|
||||
<b-dropdown split class="m-2" variant="success"
|
||||
:split-to="{name: 'user-create'}">
|
||||
<template #button-content>
|
||||
<icon iname="plus" />
|
||||
{{ $t('users_new') }}
|
||||
</b-button>
|
||||
</template>
|
||||
<b-dropdown-item :to="{name: 'user-import'}">
|
||||
<icon iname="plus" /> {{ $t('users_import') }}
|
||||
</b-dropdown-item>
|
||||
<b-dropdown-item @click="downloadExport">
|
||||
<icon iname="download" /> {{ $t('users_export') }}
|
||||
</b-dropdown-item>
|
||||
</b-dropdown>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<template v-if="users === null">
|
||||
<b-alert variant="warning" show>
|
||||
<icon iname="exclamation-triangle" class="fa-fw mr-1" />
|
||||
{{ $t('users_no') }}
|
||||
</b-alert>
|
||||
</template>
|
||||
|
||||
<b-list-group>
|
||||
|
@ -53,7 +73,12 @@ export default {
|
|||
search: ''
|
||||
}
|
||||
},
|
||||
|
||||
methods: {
|
||||
downloadExport () {
|
||||
const host = this.$store.getters.host
|
||||
window.open(`https://${host}/yunohost/api/users/export`, '_blank')
|
||||
}
|
||||
},
|
||||
computed: {
|
||||
...mapGetters(['users']),
|
||||
|
||||
|
|
Loading…
Reference in a new issue