mirror of
https://github.com/YunoHost/yunohost-admin.git
synced 2024-09-03 20:06:15 +02:00
Manage default application using DomainConfig
This commit is contained in:
parent
00a8482762
commit
37a83eeab9
3 changed files with 23 additions and 2 deletions
|
@ -115,7 +115,7 @@ export function formatYunoHostArgument (arg) {
|
|||
props: ['id:name', 'choices']
|
||||
},
|
||||
{
|
||||
types: ['user', 'domain'],
|
||||
types: ['user', 'domain', 'app'],
|
||||
name: 'SelectItem',
|
||||
props: ['id:name', 'choices'],
|
||||
callback: function () {
|
||||
|
|
|
@ -11,6 +11,7 @@ export default {
|
|||
users: undefined, // basic user data: Object {username: {data}}
|
||||
users_details: {}, // precise user data: Object {username: {data}}
|
||||
groups: undefined,
|
||||
apps: undefined,
|
||||
permissions: undefined
|
||||
}),
|
||||
|
||||
|
@ -44,6 +45,15 @@ export default {
|
|||
Vue.set(state.users, user.username, user)
|
||||
},
|
||||
|
||||
'SET_APPS' (state, [apps]) {
|
||||
state.apps = apps || null
|
||||
},
|
||||
|
||||
'ADD_APPS' (state, [app]) {
|
||||
if (!state.apps) state.apps = {}
|
||||
Vue.set(state.apps, app.id, app)
|
||||
},
|
||||
|
||||
'SET_USERS_DETAILS' (state, [username, userData]) {
|
||||
Vue.set(state.users_details, username, userData)
|
||||
if (!state.users) return
|
||||
|
@ -185,6 +195,16 @@ export default {
|
|||
|
||||
mainDomain: state => state.main_domain,
|
||||
|
||||
appsAsChoices: state => {
|
||||
const choices = [{ value: "_none", text: "---" }]
|
||||
if (state.apps) {
|
||||
return choices.concat(Object.values(state.apps).map(({ id, name, domain_path }) => {
|
||||
return { value: id, text: `${name} (${domain_path})` }
|
||||
}))
|
||||
}
|
||||
return choices
|
||||
},
|
||||
|
||||
domainsAsChoices: state => {
|
||||
const mainDomain = state.main_domain
|
||||
return state.domains.map(domain => {
|
||||
|
|
|
@ -58,7 +58,8 @@ export default {
|
|||
data () {
|
||||
return {
|
||||
queries: [
|
||||
['GET', `domains/${this.name}/config?full`]
|
||||
['GET', `domains/${this.name}/config?full`],
|
||||
['GET', { uri: 'apps', storeKey: 'apps' }]
|
||||
],
|
||||
panels: undefined,
|
||||
forms: undefined,
|
||||
|
|
Loading…
Reference in a new issue