n8n/packages/editor-ui/src/components/ShortenName.vue
Alex Grozav 9c94050deb
feat: Replace Vue.extend with defineComponent in editor-ui (no-changelog) (#6033)
* refactor: replace Vue.extend with defineComponent in editor-ui

* fix: change $externalHooks extractions from mixins

* fix: refactor externalHooks mixin
2023-04-21 18:51:08 +03:00

28 lines
583 B
Vue

<template>
<span :title="name" :data-test-id="testId">
<slot :shortenedName="shortenedName"></slot>
</span>
</template>
<script lang="ts">
import { defineComponent } from 'vue';
import { shorten } from '@/utils';
const DEFAULT_WORKFLOW_NAME_LIMIT = 25;
const WORKFLOW_NAME_END_COUNT_TO_KEEP = 4;
export default defineComponent({
name: 'ShortenName',
props: ['name', 'limit', 'testId'],
computed: {
shortenedName(): string {
return shorten(
this.name,
this.limit || DEFAULT_WORKFLOW_NAME_LIMIT,
WORKFLOW_NAME_END_COUNT_TO_KEEP,
);
},
},
});
</script>