mirror of
https://github.com/LibreSign/libresign.git
synced 2025-12-18 05:20:45 +01:00
68 lines
1.3 KiB
Vue
68 lines
1.3 KiB
Vue
<template>
|
|
<AppContent>
|
|
<div v-if="error" class="emptycontent">
|
|
<div class="icon icon-error" />
|
|
<h2>{{ error }}</h2>
|
|
</div>
|
|
<div v-else id="content" class="app-signer">
|
|
<h2>{{ t('signer', 'Criar nova assinatura') }}</h2>
|
|
<FormSigner />
|
|
</div>
|
|
</AppContent>
|
|
</template>
|
|
|
|
<script>
|
|
import FormSigner from './FormSigner'
|
|
import AppContent from '@nextcloud/vue/dist/Components/AppContent'
|
|
import { translate as t } from '@nextcloud/l10n'
|
|
import axios from '@nextcloud/axios'
|
|
import { generateUrl } from '@nextcloud/router'
|
|
|
|
import '@nextcloud/dialogs/styles/toast.scss'
|
|
|
|
export default {
|
|
name: 'App',
|
|
components: {
|
|
FormSigner,
|
|
AppContent,
|
|
},
|
|
data() {
|
|
return {
|
|
loading: true,
|
|
error: '',
|
|
}
|
|
},
|
|
computed: {},
|
|
async mounted() {
|
|
await this.checkRootCertificate()
|
|
},
|
|
|
|
methods: {
|
|
async checkRootCertificate() {
|
|
this.error = ''
|
|
try {
|
|
const response = await axios.get(
|
|
generateUrl('/apps/signer/api/0.1/signature/check'),
|
|
)
|
|
if (!response.data || !response.data.hasRootCert) {
|
|
this.error = t('signer', 'Certificado raiz não foi configurado pelo Administrador!')
|
|
}
|
|
} catch (e) {
|
|
console.error(e)
|
|
}
|
|
},
|
|
},
|
|
}
|
|
|
|
</script>
|
|
<style scoped>
|
|
#content {
|
|
width: 100vw;
|
|
padding: 20px;
|
|
padding-top: 70px;
|
|
display: flex;
|
|
flex-direction: column;
|
|
flex-grow: 1;
|
|
align-items: center;
|
|
}
|
|
</style>
|