mirror of
https://github.com/n8n-io/n8n.git
synced 2025-01-10 12:27:31 -08:00
f386d9e90a
Essentially scrubbed through .vue files in packages/editor-ui/src/components and copy edited labels/ tooltips etc. Tried to prevent opinionated editing, simply rewriting existing meaning for clarity. I did however make an opinionated decision on changing a node's "Notes" to "Note" (only labels, nothing code related) because it feels more like a singluar note - especially when used as a subtitle in the workflow. Singular form also futureproofs functionality like showing a list of all node notes across a workflow (or versioning/ collaborative notes features). So far, have gotten up to PageContentWrapper.vue (when sorted alphabetically). In a followup, will review ParameterInput.vue and onwards in /components folder
159 lines
4 KiB
Vue
159 lines
4 KiB
Vue
<template>
|
|
<div>
|
|
<div class="input-wrapper">
|
|
<el-input placeholder="Type to filter..." v-model="nodeFilter" ref="inputField" size="small" type="text" prefix-icon="el-icon-search" @keydown.native="nodeFilterKeyDown" clearable ></el-input>
|
|
</div>
|
|
<div class="type-selector">
|
|
<el-tabs v-model="selectedType" stretch>
|
|
<el-tab-pane label="Regular" name="Regular"></el-tab-pane>
|
|
<el-tab-pane label="Trigger" name="Trigger"></el-tab-pane>
|
|
<el-tab-pane label="All" name="All"></el-tab-pane>
|
|
</el-tabs>
|
|
</div>
|
|
<div class="node-create-list-wrapper">
|
|
<div class="node-create-list">
|
|
<div v-if="filteredNodeTypes.length === 0" class="no-results">
|
|
🙃 no nodes matching your search criteria
|
|
</div>
|
|
<node-create-item :active="index === activeNodeTypeIndex" :nodeType="nodeType" v-for="(nodeType, index) in filteredNodeTypes" v-bind:key="nodeType.name" @nodeTypeSelected="nodeTypeSelected"></node-create-item>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</template>
|
|
|
|
<script lang="ts">
|
|
|
|
import Vue from 'vue';
|
|
import { INodeTypeDescription } from 'n8n-workflow';
|
|
import NodeCreateItem from '@/components/NodeCreateItem.vue';
|
|
|
|
export default Vue.extend({
|
|
name: 'NodeCreateList',
|
|
components: {
|
|
NodeCreateItem,
|
|
},
|
|
data () {
|
|
return {
|
|
activeNodeTypeIndex: 0,
|
|
nodeFilter: '',
|
|
selectedType: 'Regular',
|
|
};
|
|
},
|
|
computed: {
|
|
nodeTypes (): INodeTypeDescription[] {
|
|
return this.$store.getters.allNodeTypes;
|
|
},
|
|
filteredNodeTypes () {
|
|
const filter = this.nodeFilter.toLowerCase();
|
|
const nodeTypes: INodeTypeDescription[] = this.$store.getters.allNodeTypes;
|
|
|
|
// Apply the filters
|
|
const returnData = nodeTypes.filter((nodeType) => {
|
|
if (filter && nodeType.displayName.toLowerCase().indexOf(filter) === -1) {
|
|
return false;
|
|
}
|
|
if (this.selectedType !== 'All') {
|
|
if (this.selectedType === 'Trigger' && !nodeType.group.includes('trigger')) {
|
|
return false;
|
|
} else if (this.selectedType === 'Regular' && nodeType.group.includes('trigger')) {
|
|
return false;
|
|
}
|
|
}
|
|
return true;
|
|
});
|
|
|
|
// Sort the node types
|
|
let textA, textB;
|
|
returnData.sort((a, b) => {
|
|
textA = a.displayName.toLowerCase();
|
|
textB = b.displayName.toLowerCase();
|
|
return (textA < textB) ? -1 : (textA > textB) ? 1 : 0;
|
|
});
|
|
|
|
return returnData;
|
|
},
|
|
},
|
|
watch: {
|
|
nodeFilter (newVal, oldVal) {
|
|
// Reset the index whenver the filter-value changes
|
|
this.activeNodeTypeIndex = 0;
|
|
},
|
|
},
|
|
methods: {
|
|
nodeFilterKeyDown (e: KeyboardEvent) {
|
|
const activeNodeType = this.filteredNodeTypes[this.activeNodeTypeIndex];
|
|
|
|
if (e.key === 'ArrowDown') {
|
|
this.activeNodeTypeIndex++;
|
|
// Make sure that we stop at the last nodeType
|
|
this.activeNodeTypeIndex = Math.min(this.activeNodeTypeIndex, this.filteredNodeTypes.length - 1);
|
|
} else if (e.key === 'ArrowUp') {
|
|
this.activeNodeTypeIndex--;
|
|
// Make sure that we do not get before the first nodeType
|
|
this.activeNodeTypeIndex = Math.max(this.activeNodeTypeIndex, 0);
|
|
} else if (e.key === 'Enter' && activeNodeType) {
|
|
this.nodeTypeSelected(activeNodeType.name);
|
|
}
|
|
|
|
if (!['Escape', 'Tab'].includes(e.key)) {
|
|
// We only want to propagate "Escape" as it closes the node-creator and
|
|
// "Tab" which toggles it
|
|
e.stopPropagation();
|
|
}
|
|
},
|
|
nodeTypeSelected (nodeTypeName: string) {
|
|
this.$emit('nodeTypeSelected', nodeTypeName);
|
|
},
|
|
},
|
|
});
|
|
</script>
|
|
|
|
<style scoped>
|
|
|
|
.node-create-list-wrapper {
|
|
position: absolute;
|
|
top: 160px;
|
|
left: 0px;
|
|
right: 0px;
|
|
bottom: 0;
|
|
overflow-y: auto;
|
|
overflow-x: hidden;
|
|
background-color: #fff;
|
|
}
|
|
|
|
.node-create-list {
|
|
position: relative;
|
|
width: 100%;
|
|
}
|
|
|
|
.group-name {
|
|
font-size: 0.9em;
|
|
padding: 15px 0 5px 10px;
|
|
}
|
|
|
|
.input-wrapper >>> .el-input__inner,
|
|
.input-wrapper >>> .el-input__inner:hover {
|
|
background-color: #fff;
|
|
}
|
|
.input-wrapper {
|
|
margin: 10px;
|
|
height: 35px;
|
|
}
|
|
|
|
.type-selector {
|
|
height: 50px;
|
|
text-align: center;
|
|
}
|
|
|
|
.type-selector >>> .el-tabs__nav {
|
|
padding-bottom: 10px;
|
|
}
|
|
|
|
.no-results {
|
|
margin: 20px 10px 0 10px;
|
|
line-height: 1.5em;
|
|
text-align: center;
|
|
}
|
|
|
|
</style>
|