n8n/packages/editor-ui/src/components/UpdatesPanel.vue
2021-11-12 16:02:48 +01:00

140 lines
2.8 KiB
Vue

<template>
<ModalDrawer
:name="VERSIONS_MODAL_KEY"
direction="ltr"
width="520px"
>
<template slot="header">
<span :class="$style.title">
{{ $baseText('updatesPanel.weVeBeenBusy') }}
</span>
</template>
<template slot="content">
<section :class="$style['description']">
<p v-if="currentVersion">
{{ $baseText(
'updatesPanel.youReOnVersion',
{ interpolate: { currentVersionName: currentVersion.name } }
) }}
<strong><TimeAgo :date="currentVersion.createdAt" /></strong>{{ $baseText('updatesPanel.andIs') }} <strong>{{ $baseText(
'updatesPanel.version',
{
interpolate: {
numberOfVersions: nextVersions.length,
howManySuffix: nextVersions.length > 1 ? "s" : "",
}
}
)}}</strong> {{ $baseText('updatesPanel.behindTheLatest') }}
</p>
<a
:class="$style['info-url']"
:href="infoUrl"
v-if="infoUrl"
target="_blank"
>
<font-awesome-icon icon="info-circle"></font-awesome-icon>
<span>
{{ $baseText('updatesPanel.howToUpdateYourN8nVersion') }}
</span>
</a>
</section>
<section :class="$style.versions">
<div
v-for="version in nextVersions"
:key="version.name"
:class="$style['versions-card']"
>
<VersionCard :version="version" />
</div>
</section>
</template>
</ModalDrawer>
</template>
<script lang="ts">
import Vue from 'vue';
import { mapGetters } from 'vuex';
import ModalDrawer from './ModalDrawer.vue';
import TimeAgo from './TimeAgo.vue';
import VersionCard from './VersionCard.vue';
import { VERSIONS_MODAL_KEY } from '../constants';
import { renderText } from './mixins/renderText';
import mixins from 'vue-typed-mixins';
export default mixins(renderText).extend({
name: 'UpdatesPanel',
components: {
ModalDrawer,
VersionCard,
TimeAgo,
},
computed: {
...mapGetters('versions', ['nextVersions', 'currentVersion', 'infoUrl']),
},
data() {
return {
VERSIONS_MODAL_KEY,
};
},
});
</script>
<style module lang="scss">
.title {
margin: 0;
font-size: 24px;
line-height: 24px;
color: $--updates-panel-text-color;
font-weight: 400;
}
.description {
padding: 0px 30px;
margin-block-start: 16px;
margin-block-end: 30px;
p {
font-size: 16px;
line-height: 22px;
color: $--updates-panel-description-text-color;
font-weight: 400;
margin: 0 0 16px 0;
}
div {
padding-top: 20px;
}
}
.versions {
background-color: $--updates-panel-dark-background-color;
border-top: $--updates-panel-border;
height: 100%;
padding: 30px;
overflow-y: scroll;
padding-bottom: 220px;
}
.versions-card {
margin-block-end: 15px;
}
.info-url {
text-decoration: none;
font-size: 14px;
svg {
color: $--updates-panel-info-icon-color;
margin-right: 5px;
}
span {
color: $--updates-panel-info-url-color;
font-weight: 600;
}
}
</style>