mirror of
https://github.com/n8n-io/n8n.git
synced 2024-11-16 17:44:09 -08:00
4ae0f5b6fb
* 🐛 Fix `defaultLocale` watcher * ⚡ Improve error handling for headers * ✏️ Improve naming * 🐛 Fix hiring banner check * ⚡ Flatten base text keys * ⚡ Fix miscorrected key * ⚡ Implement pluralization * ✏️ Update docs * 🚚 Move headers fetching to `App.vue` * fix hiring banner * ⚡ Fix missing import * ✏️ Alphabetize translations * ⚡ Switch to async check * feat(editor): Refactor Output Panel + fix i18n issues (#3097) * update main panel * finish up tabs * fix docs link * add icon * update node settings * clean up settings * add rename modal * fix component styles * fix spacing * truncate name * remove mixin * fix spacing * fix spacing * hide docs url * fix bug * fix renaming * refactor tabs out * refactor execute button * refactor header * add more views * fix error view * fix workflow rename bug * rename component * fix small screen bug * move items, fix positions * add hover state * show selector on empty state * add empty run state * fix binary view * 1 item * add vjs styles * show empty row for every item * refactor tabs * add branch names * fix spacing * fix up spacing * add run selector * fix positioning * clean up * increase width of selector * fix up spacing * fix copy button * fix branch naming; type issues * fix docs in custom nodes * add type * hide items when run selector is shown * increase selector size * add select prepend * clean up a bit * Add pagination * add stale icon * enable stale data in execution run * Revert "enable stale data in execution run"8edb68dbff
* move metadata to its own state * fix smaller size * add scroll buttons * update tabs on resize * update stale data on rename * remove metadata on delete * hide x * change title colors * binary data classes * remove duplicate css * add colors * delete unused keys * use event bus * update styles of pagination * fix ts issues * fix ts issues * use chevron icons * fix design with download button * add back to canvas button * add trigger warning disabled * show trigger warning tooltip * update button labels for triggers * update node output message * fix add-option bug * add page selector * fix pagination selector bug * fix executions bug * remove hint * add json colors * add colors for json * add color json keys * fix select options bug * update keys * address comments * update name limit * align pencil * update icon size * update radio buttons height * address comments * fix pencil bug * change buttons alignment * fully center * change order of buttons * add no output message in branch * scroll to top * change active state * fix page size * all items * update expression background * update naming * align pencil * update modal background * add schedule group * update schedule nodes messages * use ellpises for last chars * fix spacing * fix tabs issue * fix too far data bug * fix executions bug * fix table wrapping * fix rename bug * add padding * handle unkown errors * add sticky header * ignore empty input, trim node name * nudge lightness of color * center buttons * update pagination * set colors of title * increase table font, fix alignment * fix pencil bug * fix spacing * use date now * address pagination issues * delete unused keys * update keys sort * fix prepend * fix radio button position * Revert "fix radio button position"ae42781786
Co-authored-by: Mutasem <mutdmour@gmail.com> Co-authored-by: Mutasem Aldmour <4711238+mutdmour@users.noreply.github.com>
136 lines
2.7 KiB
Vue
136 lines
2.7 KiB
Vue
<template>
|
|
<span :class="$style.container" @click="onEdit">
|
|
<span :class="$style.iconWrapper"><NodeIcon :nodeType="nodeType" :size="18" /></span>
|
|
<el-popover placement="right" width="200" :value="editName" :disabled="readOnly">
|
|
<div
|
|
:class="$style.editContainer"
|
|
@keydown.enter="onRename"
|
|
@keydown.stop
|
|
@keydown.esc="editName = false"
|
|
>
|
|
<n8n-text :class="$style.renameText" :bold="true" color="text-base" tag="div"
|
|
>{{ $locale.baseText('ndv.title.renameNode') }}</n8n-text>
|
|
<n8n-input ref="input" size="small" v-model="newName" />
|
|
<div :class="$style.editButtons">
|
|
<n8n-button type="outline" size="small" @click="editName = false" :label="$locale.baseText('ndv.title.cancel')" />
|
|
<n8n-button type="primary" size="small" @click="onRename" :label="$locale.baseText('ndv.title.rename')" />
|
|
</div>
|
|
</div>
|
|
<div slot="reference" :class="{[$style.title]: true, [$style.hoverable]: !readOnly}">
|
|
{{ value }}
|
|
<div :class="$style.editIconContainer">
|
|
<font-awesome-icon :class="$style.editIcon" icon="pencil-alt" v-if="!readOnly" />
|
|
</div>
|
|
</div>
|
|
</el-popover>
|
|
</span>
|
|
</template>
|
|
|
|
<script lang="ts">
|
|
import Vue from 'vue';
|
|
|
|
export default Vue.extend({
|
|
name: 'NodeTitle',
|
|
props: {
|
|
value: {
|
|
type: String,
|
|
},
|
|
nodeType: {},
|
|
readOnly: {
|
|
type: Boolean,
|
|
default: false,
|
|
},
|
|
},
|
|
data() {
|
|
return {
|
|
editName: false,
|
|
newName: '',
|
|
};
|
|
},
|
|
methods: {
|
|
onEdit() {
|
|
this.newName = this.value;
|
|
this.editName = true;
|
|
this.$nextTick(() => {
|
|
const input = this.$refs.input;
|
|
if (input) {
|
|
(input as HTMLInputElement).focus();
|
|
}
|
|
});
|
|
},
|
|
onRename() {
|
|
if (this.newName.trim() !== '') {
|
|
this.$emit('input', this.newName.trim());
|
|
}
|
|
|
|
this.editName = false;
|
|
},
|
|
},
|
|
});
|
|
</script>
|
|
|
|
<style lang="scss" module>
|
|
.container {
|
|
font-weight: var(--font-weight-bold);
|
|
display: flex;
|
|
font-size: var(--font-size-m);
|
|
line-height: var(--font-line-height-compact);
|
|
overflow-wrap: anywhere;
|
|
padding-right: var(--spacing-s);
|
|
overflow: hidden;
|
|
}
|
|
|
|
.title {
|
|
max-height: 100px;
|
|
display: -webkit-box;
|
|
-webkit-line-clamp: 5;
|
|
-webkit-box-orient: vertical;
|
|
color: var(--color-text-dark);
|
|
}
|
|
|
|
.hoverable {
|
|
&:hover {
|
|
cursor: pointer;
|
|
.editIcon {
|
|
display: inline-block;
|
|
}
|
|
}
|
|
}
|
|
|
|
.iconWrapper {
|
|
display: inline-flex;
|
|
margin-right: var(--spacing-2xs);
|
|
}
|
|
|
|
.editIcon {
|
|
display: none;
|
|
font-size: var(--font-size-xs);
|
|
color: var(--color-text-base);
|
|
position: absolute;
|
|
bottom: 0;
|
|
}
|
|
|
|
.editIconContainer {
|
|
display: inline-block;
|
|
position: relative;
|
|
width: 0;
|
|
}
|
|
|
|
.editButtons {
|
|
text-align: right;
|
|
margin-top: var(--spacing-s);
|
|
|
|
> * {
|
|
margin-left: var(--spacing-4xs);
|
|
}
|
|
}
|
|
|
|
.editContainer {
|
|
text-align: left;
|
|
|
|
> *:first-child {
|
|
margin-bottom: var(--spacing-4xs);
|
|
}
|
|
}
|
|
</style>
|