mirror of
https://github.com/YunoHost/yunohost-admin.git
synced 2024-09-03 20:06:15 +02:00
appv2: try to further simplify the app install and app info views
This commit is contained in:
parent
20e8a6920b
commit
771a5b7f25
3 changed files with 219 additions and 161 deletions
|
@ -55,6 +55,8 @@
|
||||||
"api_not_responding": "The YunoHost API is not responding. Maybe 'yunohost-api' is down or got restarted?",
|
"api_not_responding": "The YunoHost API is not responding. Maybe 'yunohost-api' is down or got restarted?",
|
||||||
"api_waiting": "Waiting for the server's response...",
|
"api_waiting": "Waiting for the server's response...",
|
||||||
"app": {
|
"app": {
|
||||||
|
"installed_version": "Installed version: {version}",
|
||||||
|
"open_this_app": "Open this app",
|
||||||
"antifeatures": "This app has features you may not like:",
|
"antifeatures": "This app has features you may not like:",
|
||||||
"doc": {
|
"doc": {
|
||||||
"about": {
|
"about": {
|
||||||
|
@ -127,7 +129,8 @@
|
||||||
"package": "YunoHost package repository",
|
"package": "YunoHost package repository",
|
||||||
"title": "Links",
|
"title": "Links",
|
||||||
"userdoc": "Official User documentation",
|
"userdoc": "Official User documentation",
|
||||||
"website": "Website"
|
"website": "Official Website",
|
||||||
|
"license": "License"
|
||||||
},
|
},
|
||||||
"potential_alternative_to": "Potential alternative to:",
|
"potential_alternative_to": "Potential alternative to:",
|
||||||
"upgrade": {
|
"upgrade": {
|
||||||
|
|
|
@ -1,34 +1,50 @@
|
||||||
<template>
|
<template>
|
||||||
<view-base :queries="queries" @queries-response="onQueriesResponse" ref="view">
|
<view-base :queries="queries" @queries-response="onQueriesResponse" ref="view">
|
||||||
<!-- BASIC INFOS -->
|
|
||||||
<card v-if="infos" :title="app.label" icon="cube">
|
|
||||||
<template #header-next>
|
|
||||||
<small class="text-secondary">{{ app.id }}</small>
|
|
||||||
</template>
|
|
||||||
<template #header-buttons>
|
|
||||||
<b-button @click="uninstall" id="uninstall" variant="danger">
|
|
||||||
<icon iname="trash-o" /> {{ $t('uninstall') }}
|
|
||||||
</b-button>
|
|
||||||
</template>
|
|
||||||
|
|
||||||
<description-row
|
<template v-if="app">
|
||||||
v-for="(value, key) in infos" :key="key"
|
<h1>
|
||||||
:term="$t(key)"
|
<icon iname="cube" />
|
||||||
|
{{ app.label }}
|
||||||
|
|
||||||
|
<span class="text-secondary tiny">
|
||||||
|
{{ app.id }}
|
||||||
|
</span>
|
||||||
|
|
||||||
|
<b-button
|
||||||
|
class="mx-3"
|
||||||
|
v-if="app.url"
|
||||||
|
size="xs"
|
||||||
|
:href="app.url" variant="success" target="_blank"
|
||||||
>
|
>
|
||||||
<a v-if="key === 'url'" :href="value" target="_blank">{{ value }}</a>
|
<icon iname="external-link" />
|
||||||
<template v-else>{{ value }}</template>
|
{{ $t('app.open_this_app') }}
|
||||||
</description-row>
|
</b-button>
|
||||||
|
|
||||||
<template #footer>
|
<b-button
|
||||||
<b-card-text class="text-warning">
|
class="float-right"
|
||||||
{{ $t('app.info.problem') }}
|
@click="uninstall"
|
||||||
<b-link :href="`https://forum.yunohost.org/tag/${id}`" target="_blank">
|
id="uninstall"
|
||||||
{{ $t('app.info.forum') }}
|
variant="danger"
|
||||||
</b-link>
|
>
|
||||||
</b-card-text>
|
<icon iname="trash-o" /> {{ $t('uninstall') }}
|
||||||
</template>
|
</b-button>
|
||||||
</card>
|
</h1>
|
||||||
|
|
||||||
|
<section>
|
||||||
|
<p>
|
||||||
|
<span class="text-secondary">{{ $t('app.installed_version', { version: app.version }) }}</span><br/>
|
||||||
|
<icon iname="comments" /> {{ $t('app.info.problem') }}
|
||||||
|
<a :href="`https://forum.yunohost.org/tag/${id}`" target="_blank"
|
||||||
|
>{{ $t('app.info.forum') }}
|
||||||
|
</a>
|
||||||
|
{{ app.alternativeTo }}
|
||||||
|
</p>
|
||||||
|
|
||||||
|
<vue-showdown :markdown="doc.about.description" flavor="github" />
|
||||||
|
</section>
|
||||||
|
</template>
|
||||||
|
|
||||||
|
<!-- BASIC INFOS -->
|
||||||
<config-panels v-bind="config" @submit="onConfigSubmit">
|
<config-panels v-bind="config" @submit="onConfigSubmit">
|
||||||
<!-- OPERATIONS TAB -->
|
<!-- OPERATIONS TAB -->
|
||||||
<template v-if="currentTab === 'operations'" #tab-top>
|
<template v-if="currentTab === 'operations'" #tab-top>
|
||||||
|
@ -168,68 +184,63 @@
|
||||||
</section>
|
</section>
|
||||||
</b-tab>
|
</b-tab>
|
||||||
|
|
||||||
<b-tab :title="$t('app.doc.admin.title')">
|
<b-tab :title="$t('app.doc.admin.title')" no-body>
|
||||||
{{ doc.admin.links }}
|
{{ doc.admin.links }}
|
||||||
<vue-showdown :markdown="doc.admin.content" flavor="github" />
|
<vue-showdown :markdown="doc.admin.content" flavor="github" />
|
||||||
</b-tab>
|
|
||||||
|
|
||||||
<b-tab :title="$t('app.doc.about.title')" no-body>
|
|
||||||
<section class="p-3">
|
|
||||||
<b-card-title>{{ $t('app.doc.about.description') }}</b-card-title>
|
|
||||||
|
|
||||||
<p v-if="doc.about.alternativeTo">
|
|
||||||
<strong v-t="'app.potential_alternative_to'" />
|
|
||||||
{{ doc.about.alternativeTo }}
|
|
||||||
</p>
|
|
||||||
|
|
||||||
<vue-showdown :markdown="doc.about.description" flavor="github" />
|
|
||||||
|
|
||||||
<p>
|
|
||||||
{{ $t('install_time') }} : {{ doc.about.install_time }}<br/>
|
|
||||||
{{ $t('app.install.license', { license: doc.about.license }) }}
|
|
||||||
</p>
|
|
||||||
</section>
|
|
||||||
|
|
||||||
<card-collapse
|
|
||||||
id="app-integration" :title="$t('app.integration.title')"
|
|
||||||
flush visible
|
|
||||||
v-if="packaging_format >= 2"
|
|
||||||
>
|
|
||||||
<b-list-group flush tag="section">
|
|
||||||
<yuno-list-group-item variant="info">
|
|
||||||
{{ $t('app.integration.archs') }} {{ doc.about.integration.archs }}
|
|
||||||
</yuno-list-group-item>
|
|
||||||
<yuno-list-group-item v-if="doc.about.integration.ldap" :variant="doc.about.integration.ldap === true ? 'success' : 'warning'">
|
|
||||||
{{ $t(`app.integration.ldap.${doc.about.integration.ldap}`) }}
|
|
||||||
</yuno-list-group-item>
|
|
||||||
<yuno-list-group-item v-if="doc.about.integration.sso" :variant="doc.about.integration.sso === true ? 'success' : 'warning'">
|
|
||||||
{{ $t(`app.integration.sso.${doc.about.integration.sso}`) }}
|
|
||||||
</yuno-list-group-item>
|
|
||||||
<yuno-list-group-item variant="info">
|
|
||||||
{{ $t(`app.integration.multi_instance.${doc.about.integration.multi_instance}`) }}
|
|
||||||
</yuno-list-group-item>
|
|
||||||
<yuno-list-group-item variant="info">
|
|
||||||
{{ $t('app.integration.resources', doc.about.integration.resources) }}
|
|
||||||
</yuno-list-group-item>
|
|
||||||
</b-list-group>
|
|
||||||
</card-collapse>
|
|
||||||
|
|
||||||
<card-collapse
|
|
||||||
id="app-links" :title="$t('app.links.title')"
|
|
||||||
flush visible
|
|
||||||
>
|
|
||||||
<b-list-group flush tag="section">
|
|
||||||
<yuno-list-group-item v-for="[key, link] in doc.about.links" :key="key" no-status>
|
|
||||||
<b-link :href="link" target="_blank">
|
|
||||||
{{ $t('app.links.' + key) }}
|
|
||||||
</b-link>
|
|
||||||
</yuno-list-group-item>
|
|
||||||
</b-list-group>
|
|
||||||
</card-collapse>
|
|
||||||
</b-tab>
|
</b-tab>
|
||||||
</b-tabs>
|
</b-tabs>
|
||||||
</b-card>
|
</b-card>
|
||||||
|
|
||||||
|
<card
|
||||||
|
id="app-integration"
|
||||||
|
collapsable :collapsed="1"
|
||||||
|
flush visible
|
||||||
|
v-if="packaging_format >= 2 && doc"
|
||||||
|
>
|
||||||
|
<template #header>
|
||||||
|
<h2>{{ $t('app.integration.title') }}</h2>
|
||||||
|
</template>
|
||||||
|
|
||||||
|
<b-list-group flush tag="section">
|
||||||
|
<yuno-list-group-item variant="info">
|
||||||
|
{{ $t('app.integration.archs') }} {{ doc.about.integration.archs }}
|
||||||
|
</yuno-list-group-item>
|
||||||
|
<yuno-list-group-item v-if="doc.about.integration.ldap" :variant="doc.about.integration.ldap === true ? 'success' : 'warning'">
|
||||||
|
{{ $t(`app.integration.ldap.${doc.about.integration.ldap}`) }}
|
||||||
|
</yuno-list-group-item>
|
||||||
|
<yuno-list-group-item v-if="doc.about.integration.sso" :variant="doc.about.integration.sso === true ? 'success' : 'warning'">
|
||||||
|
{{ $t(`app.integration.sso.${doc.about.integration.sso}`) }}
|
||||||
|
</yuno-list-group-item>
|
||||||
|
<yuno-list-group-item variant="info">
|
||||||
|
{{ $t(`app.integration.multi_instance.${doc.about.integration.multi_instance}`) }}
|
||||||
|
</yuno-list-group-item>
|
||||||
|
<yuno-list-group-item variant="info">
|
||||||
|
{{ $t('app.integration.resources', doc.about.integration.resources) }}
|
||||||
|
</yuno-list-group-item>
|
||||||
|
</b-list-group>
|
||||||
|
</card>
|
||||||
|
|
||||||
|
<card
|
||||||
|
id="app-links"
|
||||||
|
collapsable :collapsed="1"
|
||||||
|
no-body button-unbreak="lg"
|
||||||
|
flush visible
|
||||||
|
v-if="doc"
|
||||||
|
>
|
||||||
|
<template #header>
|
||||||
|
<h2><icon iname="link" /> {{ $t('app.links.title') }}</h2>
|
||||||
|
</template>
|
||||||
|
<b-list-group flush tag="section">
|
||||||
|
<yuno-list-group-item v-for="[key, link] in doc.about.links" :key="key" no-status>
|
||||||
|
<b-link :href="link" target="_blank">
|
||||||
|
<icon :iname="appLinksIcons(key)" />
|
||||||
|
{{ $t('app.links.' + key) }}
|
||||||
|
</b-link>
|
||||||
|
</yuno-list-group-item>
|
||||||
|
</b-list-group>
|
||||||
|
</card>
|
||||||
|
|
||||||
<template #skeleton>
|
<template #skeleton>
|
||||||
<card-info-skeleton :item-count="8" />
|
<card-info-skeleton :item-count="8" />
|
||||||
<card-form-skeleton />
|
<card-form-skeleton />
|
||||||
|
@ -251,13 +262,11 @@ import {
|
||||||
formatYunoHostConfigPanels
|
formatYunoHostConfigPanels
|
||||||
} from '@/helpers/yunohostArguments'
|
} from '@/helpers/yunohostArguments'
|
||||||
import ConfigPanels from '@/components/ConfigPanels'
|
import ConfigPanels from '@/components/ConfigPanels'
|
||||||
import CardCollapse from '@/components/CardCollapse'
|
|
||||||
|
|
||||||
export default {
|
export default {
|
||||||
name: 'AppInfo',
|
name: 'AppInfo',
|
||||||
|
|
||||||
components: {
|
components: {
|
||||||
CardCollapse,
|
|
||||||
ConfigPanels
|
ConfigPanels
|
||||||
},
|
},
|
||||||
|
|
||||||
|
@ -274,7 +283,6 @@ export default {
|
||||||
['GET', `apps/${this.id}/config?full`]
|
['GET', `apps/${this.id}/config?full`]
|
||||||
],
|
],
|
||||||
packaging_format: undefined,
|
packaging_format: undefined,
|
||||||
infos: undefined,
|
|
||||||
app: undefined,
|
app: undefined,
|
||||||
form: undefined,
|
form: undefined,
|
||||||
config: {
|
config: {
|
||||||
|
@ -317,6 +325,18 @@ export default {
|
||||||
},
|
},
|
||||||
|
|
||||||
methods: {
|
methods: {
|
||||||
|
appLinksIcons (link_type) {
|
||||||
|
const links_icons = {
|
||||||
|
license: "institution",
|
||||||
|
website: "globe",
|
||||||
|
admindoc: "book",
|
||||||
|
userdoc: "book",
|
||||||
|
code: "code",
|
||||||
|
package: "code",
|
||||||
|
forum: "comments"
|
||||||
|
}
|
||||||
|
return links_icons[link_type]
|
||||||
|
},
|
||||||
onQueriesResponse (app, _, __, config) {
|
onQueriesResponse (app, _, __, config) {
|
||||||
if (app.supports_config_panel) {
|
if (app.supports_config_panel) {
|
||||||
const config_ = formatYunoHostConfigPanels(config)
|
const config_ = formatYunoHostConfigPanels(config)
|
||||||
|
@ -348,21 +368,10 @@ export default {
|
||||||
}
|
}
|
||||||
|
|
||||||
this.packaging_format = app.packaging_format
|
this.packaging_format = app.packaging_format
|
||||||
this.infos = {
|
|
||||||
description: app.description,
|
|
||||||
version: app.version
|
|
||||||
}
|
|
||||||
if (app.settings.domain && app.settings.path) {
|
|
||||||
this.infos.url = 'https://' + app.settings.domain + app.settings.path
|
|
||||||
form.url = {
|
|
||||||
domain: app.settings.domain,
|
|
||||||
path: app.settings.path.slice(1)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
this.form = form
|
this.form = form
|
||||||
this.app = {
|
this.app = {
|
||||||
id: this.id,
|
id: this.id,
|
||||||
|
version: app.version,
|
||||||
label: mainPermission.label,
|
label: mainPermission.label,
|
||||||
domain: app.settings.domain,
|
domain: app.settings.domain,
|
||||||
is_webapp: app.is_webapp,
|
is_webapp: app.is_webapp,
|
||||||
|
@ -371,6 +380,13 @@ export default {
|
||||||
supports_config_panel: app.supports_config_panel,
|
supports_config_panel: app.supports_config_panel,
|
||||||
permissions
|
permissions
|
||||||
}
|
}
|
||||||
|
if (app.settings.domain && app.settings.path) {
|
||||||
|
this.app.url = 'https://' + app.settings.domain + app.settings.path
|
||||||
|
form.url = {
|
||||||
|
domain: app.settings.domain,
|
||||||
|
path: app.settings.path.slice(1)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
const notifs = app.manifest.notifications
|
const notifs = app.manifest.notifications
|
||||||
const { DESCRIPTION, ADMIN, ...doc } = app.manifest.doc
|
const { DESCRIPTION, ADMIN, ...doc } = app.manifest.doc
|
||||||
|
@ -392,7 +408,6 @@ export default {
|
||||||
alternativeTo: app.from_catalog.potential_alternative_to.length
|
alternativeTo: app.from_catalog.potential_alternative_to.length
|
||||||
? app.from_catalog.potential_alternative_to.join(this.$i18n.t('words.separator'))
|
? app.from_catalog.potential_alternative_to.join(this.$i18n.t('words.separator'))
|
||||||
: null,
|
: null,
|
||||||
install_time: readableDate(app.settings.install_time, true, true),
|
|
||||||
description: DESCRIPTION ? formatI18nField(DESCRIPTION) : app.description,
|
description: DESCRIPTION ? formatI18nField(DESCRIPTION) : app.description,
|
||||||
license: app.manifest.upstream.license,
|
license: app.manifest.upstream.license,
|
||||||
integration: {
|
integration: {
|
||||||
|
@ -403,6 +418,7 @@ export default {
|
||||||
resources: { ram: ram.runtime, disk }
|
resources: { ram: ram.runtime, disk }
|
||||||
},
|
},
|
||||||
links: [
|
links: [
|
||||||
|
['license', `https://spdx.org/licenses/${app.manifest.upstream.license}`],
|
||||||
...['website', 'admindoc', 'userdoc', 'code'].map((key) => ([key, app.manifest.upstream[key]])),
|
...['website', 'admindoc', 'userdoc', 'code'].map((key) => ([key, app.manifest.upstream[key]])),
|
||||||
['forum', `https://forum.yunohost.org/tag/${this.id}`]
|
['forum', `https://forum.yunohost.org/tag/${this.id}`]
|
||||||
].filter(([key, val]) => !!val)
|
].filter(([key, val]) => !!val)
|
||||||
|
@ -439,7 +455,7 @@ export default {
|
||||||
api.put(
|
api.put(
|
||||||
'users/permissions/' + permName,
|
'users/permissions/' + permName,
|
||||||
data,
|
data,
|
||||||
{ key: 'apps.change_label', prevName: this.infos.label, nextName: data.label }
|
{ key: 'apps.change_label', prevName: this.app.label, nextName: data.label }
|
||||||
).then(this.$refs.view.fetchQueries)
|
).then(this.$refs.view.fetchQueries)
|
||||||
},
|
},
|
||||||
|
|
||||||
|
@ -451,7 +467,7 @@ export default {
|
||||||
api.put(
|
api.put(
|
||||||
`apps/${this.id}/changeurl`,
|
`apps/${this.id}/changeurl`,
|
||||||
{ domain, path: '/' + path },
|
{ domain, path: '/' + path },
|
||||||
{ key: 'apps.change_url', name: this.infos.label }
|
{ key: 'apps.change_url', name: this.app.label }
|
||||||
).then(this.$refs.view.fetchQueries)
|
).then(this.$refs.view.fetchQueries)
|
||||||
},
|
},
|
||||||
|
|
||||||
|
@ -462,7 +478,7 @@ export default {
|
||||||
api.put(
|
api.put(
|
||||||
`apps/${this.id}/default${undo ? '?undo' : ''}`,
|
`apps/${this.id}/default${undo ? '?undo' : ''}`,
|
||||||
{},
|
{},
|
||||||
{ key: 'apps.set_default', name: this.infos.label, domain: this.app.domain }
|
{ key: 'apps.set_default', name: this.app.label, domain: this.app.domain }
|
||||||
).then(this.$refs.view.fetchQueries)
|
).then(this.$refs.view.fetchQueries)
|
||||||
},
|
},
|
||||||
|
|
||||||
|
@ -472,7 +488,7 @@ export default {
|
||||||
)
|
)
|
||||||
if (!confirmed) return
|
if (!confirmed) return
|
||||||
|
|
||||||
api.delete('apps/' + this.id, {}, { key: 'apps.uninstall', name: this.infos.label }).then(() => {
|
api.delete('apps/' + this.id, {}, { key: 'apps.uninstall', name: this.app.label }).then(() => {
|
||||||
this.$router.push({ name: 'app-list' })
|
this.$router.push({ name: 'app-list' })
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
|
@ -492,4 +508,13 @@ select {
|
||||||
.input-group input {
|
.input-group input {
|
||||||
min-width: 5rem;
|
min-width: 5rem;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.tiny {
|
||||||
|
font-size: 50%;
|
||||||
|
font-weight: normal;
|
||||||
|
}
|
||||||
|
|
||||||
|
.float-right {
|
||||||
|
float: right;
|
||||||
|
}
|
||||||
</style>
|
</style>
|
||||||
|
|
|
@ -1,71 +1,83 @@
|
||||||
<template>
|
<template>
|
||||||
<view-base :queries="queries" @queries-response="onQueriesResponse">
|
<view-base :queries="queries" @queries-response="onQueriesResponse">
|
||||||
<template v-if="app">
|
<template v-if="app">
|
||||||
<card :title="app.name" icon="download" body-class="p-0">
|
|
||||||
|
|
||||||
<template #header-buttons>
|
<h1>
|
||||||
<b-button
|
{{ app.name}}
|
||||||
v-if="app.demo"
|
|
||||||
:href="app.demo" variant="primary" target="_blank"
|
<b-button
|
||||||
>
|
class="ml-3 float-right"
|
||||||
<icon iname="external-link" />
|
v-if="app.demo"
|
||||||
{{ $t('app.install.try_demo') }}
|
:href="app.demo" variant="primary" target="_blank"
|
||||||
</b-button>
|
>
|
||||||
|
<icon iname="external-link" />
|
||||||
|
{{ $t('app.install.try_demo') }}
|
||||||
|
</b-button>
|
||||||
|
</h1>
|
||||||
|
|
||||||
|
<section>
|
||||||
|
<p class="text-secondary small mb-0">
|
||||||
|
{{ $t('app.install.version', { version: app.version }) }}<br>
|
||||||
|
</p>
|
||||||
|
<p class="text-secondary small mb-0" v-if="app.alternativeTo">
|
||||||
|
{{ $t('app.potential_alternative_to') }} {{ app.alternativeTo }}
|
||||||
|
</p>
|
||||||
|
|
||||||
|
<vue-showdown class="mt-3" :markdown="app.description" flavor="github" />
|
||||||
|
|
||||||
|
<b-img
|
||||||
|
v-if="app.screenshot"
|
||||||
|
:src="app.screenshot"
|
||||||
|
aria-hidden="true" class="d-block mb-3" fluid
|
||||||
|
/>
|
||||||
|
</section>
|
||||||
|
|
||||||
|
<card
|
||||||
|
id="app-integration"
|
||||||
|
collapsable :collapsed="1"
|
||||||
|
no-body button-unbreak="lg"
|
||||||
|
v-if="packaging_format >= 2"
|
||||||
|
>
|
||||||
|
<template #header>
|
||||||
|
<h2>{{ $t('app.integration.title') }}</h2>
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
<section class="p-3">
|
<b-list-group flush tag="section">
|
||||||
|
<yuno-list-group-item variant="info">
|
||||||
|
{{ $t('app.integration.archs') }} {{ app.integration.archs }}
|
||||||
|
</yuno-list-group-item>
|
||||||
|
<yuno-list-group-item v-if="app.integration.ldap" :variant="app.integration.ldap === true ? 'success' : 'warning'">
|
||||||
|
{{ $t(`app.integration.ldap.${app.integration.ldap}`) }}
|
||||||
|
</yuno-list-group-item>
|
||||||
|
<yuno-list-group-item v-if="app.integration.sso" :variant="app.integration.sso === true ? 'success' : 'warning'">
|
||||||
|
{{ $t(`app.integration.sso.${app.integration.sso}`) }}
|
||||||
|
</yuno-list-group-item>
|
||||||
|
<yuno-list-group-item variant="info">
|
||||||
|
{{ $t(`app.integration.multi_instance.${app.integration.multi_instance}`) }}
|
||||||
|
</yuno-list-group-item>
|
||||||
|
<yuno-list-group-item variant="info">
|
||||||
|
{{ $t('app.integration.resources', app.integration.resources) }}
|
||||||
|
</yuno-list-group-item>
|
||||||
|
</b-list-group>
|
||||||
|
</card>
|
||||||
|
|
||||||
<vue-showdown :markdown="app.description" flavor="github" />
|
<card
|
||||||
|
id="app-links"
|
||||||
|
collapsable :collapsed="1"
|
||||||
|
no-body button-unbreak="lg"
|
||||||
|
>
|
||||||
|
<template #header>
|
||||||
|
<h2><icon iname="link" /> {{ $t('app.links.title') }}</h2>
|
||||||
|
</template>
|
||||||
|
|
||||||
<b-img
|
<b-list-group flush tag="section">
|
||||||
v-if="app.screenshot"
|
<yuno-list-group-item v-for="[key, link] in app.links" :key="key" no-status>
|
||||||
:src="app.screenshot"
|
<b-link :href="link" target="_blank">
|
||||||
aria-hidden="true" class="d-block mb-3" fluid
|
<icon :iname="appLinksIcons(key)" />
|
||||||
/>
|
{{ $t('app.links.' + key) }}
|
||||||
|
</b-link>
|
||||||
<p v-if="app.alternativeTo">
|
</yuno-list-group-item>
|
||||||
{{ $t('app.potential_alternative_to') }} {{ app.alternativeTo }}
|
</b-list-group>
|
||||||
</p>
|
|
||||||
<p>
|
|
||||||
{{ $t('app.install.version', { version: app.version }) }}<br>
|
|
||||||
{{ $t('app.install.license', { license: app.license }) }}
|
|
||||||
</p>
|
|
||||||
|
|
||||||
</section>
|
|
||||||
|
|
||||||
<card-collapse
|
|
||||||
id="app-integration"
|
|
||||||
:title="$t('app.integration.title')"
|
|
||||||
v-if="packaging_format >= 2"
|
|
||||||
flush>
|
|
||||||
<b-list-group flush tag="section">
|
|
||||||
<yuno-list-group-item variant="info">
|
|
||||||
{{ $t('app.integration.archs') }} {{ app.integration.archs }}
|
|
||||||
</yuno-list-group-item>
|
|
||||||
<yuno-list-group-item v-if="app.integration.ldap" :variant="app.integration.ldap === true ? 'success' : 'warning'">
|
|
||||||
{{ $t(`app.integration.ldap.${app.integration.ldap}`) }}
|
|
||||||
</yuno-list-group-item>
|
|
||||||
<yuno-list-group-item v-if="app.integration.sso" :variant="app.integration.sso === true ? 'success' : 'warning'">
|
|
||||||
{{ $t(`app.integration.sso.${app.integration.sso}`) }}
|
|
||||||
</yuno-list-group-item>
|
|
||||||
<yuno-list-group-item variant="info">
|
|
||||||
{{ $t(`app.integration.multi_instance.${app.integration.multi_instance}`) }}
|
|
||||||
</yuno-list-group-item>
|
|
||||||
<yuno-list-group-item variant="info">
|
|
||||||
{{ $t('app.integration.resources', app.integration.resources) }}
|
|
||||||
</yuno-list-group-item>
|
|
||||||
</b-list-group>
|
|
||||||
</card-collapse>
|
|
||||||
|
|
||||||
<card-collapse id="app-links" :title="$t('app.links.title')" flush>
|
|
||||||
<b-list-group flush tag="section">
|
|
||||||
<yuno-list-group-item v-for="[key, link] in app.links" :key="key" no-status>
|
|
||||||
<b-link :href="link" target="_blank">
|
|
||||||
{{ $t('app.links.' + key) }}
|
|
||||||
</b-link>
|
|
||||||
</yuno-list-group-item>
|
|
||||||
</b-list-group>
|
|
||||||
</card-collapse>
|
|
||||||
</card>
|
</card>
|
||||||
|
|
||||||
<yuno-alert v-if="app.hasWarning" variant="warning" class="my-4">
|
<yuno-alert v-if="app.hasWarning" variant="warning" class="my-4">
|
||||||
|
@ -194,6 +206,18 @@ export default {
|
||||||
},
|
},
|
||||||
|
|
||||||
methods: {
|
methods: {
|
||||||
|
appLinksIcons (link_type) {
|
||||||
|
const links_icons = {
|
||||||
|
license: "institution",
|
||||||
|
website: "globe",
|
||||||
|
admindoc: "book",
|
||||||
|
userdoc: "book",
|
||||||
|
code: "code",
|
||||||
|
package: "code",
|
||||||
|
forum: "comments"
|
||||||
|
}
|
||||||
|
return links_icons[link_type]
|
||||||
|
},
|
||||||
onQueriesResponse (catalog, _app) {
|
onQueriesResponse (catalog, _app) {
|
||||||
const antifeaturesList = Object.fromEntries(catalog.antifeatures.map((af) => ([af.id, af])))
|
const antifeaturesList = Object.fromEntries(catalog.antifeatures.map((af) => ([af.id, af])))
|
||||||
|
|
||||||
|
@ -222,6 +246,7 @@ export default {
|
||||||
// ram support is non-blocking requirement and handled on its own.
|
// ram support is non-blocking requirement and handled on its own.
|
||||||
return key === 'ram' || requirements[key].pass
|
return key === 'ram' || requirements[key].pass
|
||||||
})
|
})
|
||||||
|
|
||||||
const app = {
|
const app = {
|
||||||
id,
|
id,
|
||||||
name,
|
name,
|
||||||
|
@ -241,6 +266,7 @@ export default {
|
||||||
resources: { ram: _app.integration.ram.runtime, disk: _app.integration.disk }
|
resources: { ram: _app.integration.ram.runtime, disk: _app.integration.disk }
|
||||||
},
|
},
|
||||||
links: [
|
links: [
|
||||||
|
['license', `https://spdx.org/licenses/${_app.upstream.license}`],
|
||||||
...['website', 'admindoc', 'userdoc', 'code'].map((key) => ([key, _app.upstream[key]])),
|
...['website', 'admindoc', 'userdoc', 'code'].map((key) => ([key, _app.upstream[key]])),
|
||||||
['package', _app.remote.url],
|
['package', _app.remote.url],
|
||||||
['forum', `https://forum.yunohost.org/tag/${id}`]
|
['forum', `https://forum.yunohost.org/tag/${id}`]
|
||||||
|
@ -327,4 +353,8 @@ export default {
|
||||||
list-style: none;
|
list-style: none;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.float-right {
|
||||||
|
float: right;
|
||||||
|
}
|
||||||
</style>
|
</style>
|
||||||
|
|
Loading…
Reference in a new issue