n8n/packages/editor-ui/src/components/AboutModal.vue
कारतोफ्फेलस्क्रिप्ट™ 600b285a44
refactor: Migrate Vue slots to the new syntax (#4603)
Co-authored-by: Alex Grozav <alex@grozav.com>
2022-11-18 14:59:31 +01:00

95 lines
2.2 KiB
Vue

<template>
<Modal
width="540px"
:title="$locale.baseText('about.aboutN8n')"
:eventBus="modalBus"
:name="ABOUT_MODAL_KEY"
:center="true"
>
<template #content>
<div :class="$style.container">
<el-row>
<el-col :span="8" class="info-name">
<n8n-text>{{ $locale.baseText('about.n8nVersion') }}</n8n-text>
</el-col>
<el-col :span="16">
<n8n-text>{{ rootStore.versionCli }}</n8n-text>
</el-col>
</el-row>
<el-row>
<el-col :span="8" class="info-name">
<n8n-text>{{ $locale.baseText('about.sourceCode') }}</n8n-text>
</el-col>
<el-col :span="16">
<n8n-link to="https://github.com/n8n-io/n8n">https://github.com/n8n-io/n8n</n8n-link>
</el-col>
</el-row>
<el-row>
<el-col :span="8" class="info-name">
<n8n-text>{{ $locale.baseText('about.license') }}</n8n-text>
</el-col>
<el-col :span="16">
<n8n-link to="https://github.com/n8n-io/n8n/blob/master/packages/cli/LICENSE.md">
{{ $locale.baseText('about.n8nLicense') }}
</n8n-link>
</el-col>
</el-row>
<el-row>
<el-col :span="8" class="info-name">
<n8n-text>{{ $locale.baseText('about.instanceID') }}</n8n-text>
</el-col>
<el-col :span="16">
<n8n-text>{{ rootStore.instanceId }}</n8n-text>
</el-col>
</el-row>
</div>
</template>
<template #footer>
<div class="action-buttons">
<n8n-button @click="closeDialog" float="right" :label="$locale.baseText('about.close')" />
</div>
</template>
</Modal>
</template>
<script lang="ts">
import Vue from 'vue';
import Modal from './Modal.vue';
import { ABOUT_MODAL_KEY } from '../constants';
import { mapStores } from 'pinia';
import { useSettingsStore } from '@/stores/settings';
import { useRootStore } from '@/stores/n8nRootStore';
export default Vue.extend({
name: 'About',
components: {
Modal,
},
data() {
return {
ABOUT_MODAL_KEY,
modalBus: new Vue(),
};
},
computed: {
...mapStores(
useRootStore,
useSettingsStore,
),
},
methods: {
closeDialog() {
this.modalBus.$emit('close');
},
},
});
</script>
<style module lang="scss">
.container > * {
margin-bottom: var(--spacing-s);
overflow-wrap: break-word;
}
</style>