mirror of
https://github.com/n8n-io/n8n.git
synced 2025-01-10 12:27:31 -08:00
5ca2148c7e
* ⚡ Adjust `format` script * 🔥 Remove exemption for `editor-ui` * 🎨 Prettify * 👕 Fix lint
35 lines
736 B
Vue
35 lines
736 B
Vue
<template>
|
|
<div>
|
|
<slot v-if="canAccess" />
|
|
<slot name="fallback" v-else />
|
|
</div>
|
|
</template>
|
|
|
|
<script lang="ts">
|
|
import Vue from 'vue';
|
|
import { EnterpriseEditionFeature } from '@/constants';
|
|
import { mapStores } from 'pinia';
|
|
import { useSettingsStore } from '@/stores/settings';
|
|
|
|
export default Vue.extend({
|
|
name: 'EnterpriseEdition',
|
|
props: {
|
|
features: {
|
|
type: Array,
|
|
default: () => [] as EnterpriseEditionFeature[],
|
|
},
|
|
},
|
|
computed: {
|
|
...mapStores(useSettingsStore),
|
|
canAccess(): boolean {
|
|
return this.features.reduce((acc: boolean, feature) => {
|
|
return (
|
|
acc &&
|
|
!!this.settingsStore.isEnterpriseFeatureEnabled(feature as EnterpriseEditionFeature)
|
|
);
|
|
}, true);
|
|
},
|
|
},
|
|
});
|
|
</script>
|