mirror of
https://github.com/n8n-io/n8n.git
synced 2024-11-16 09:34:07 -08:00
0470740737
* Add codex search properties to node types
* implement basic styles
* update header designs
* update node list designs
* add trigger icon
* refactor node creator list
* implement categories and subcategories
* fix up spacing
* add arrows
* implement navigatable list
* implement more of feature
* implement navigation
* add transitions
* fix lint issues
* fix overlay
* ⚡ Get and add codex categories
* fix up design
* update borders
* implement no-matches view
* fix preview bug
* add color to search
* clean up borders
* add comma
* Revert "Merge branch 'add-codex-data' of github.com:n8n-io/n8n into PROD-819-nodes-panel-redesign"
38b7d7ead1
* use new impl
* remove empty categories
* update scrolling, hide start node
* make scrollable
* remove text while subcategory panel is open
* fix up spacing
* fix lint issues
* update descriptions
* update path
* update images
* fix tags manager
* give min height to image
* gst
* update clear color
* update font size
* fix firefox spacing
* close on click outside
* add external link icon
* update iterator key
* add client side caching for images
* update caching header
* ⚡️ Add properties to codex for nodes panel (#1854)
* ⚡ Get and add codex categories
* ⚡ Add parens to evaluation + destructuring
* 🔥 Remove non-existing class reference
* ⚡ Add alias to codex property
* move constants
* 🔨 Rename CodexCategories to CodexData
* ✏️ Update getCodex documentation
* refactor and move
* refactor no results view
* more refactoring
* refactor subcategory panel
* more refactoring
* update text
* update no results view
* add miscellaneous to end of list
* address design feedback
* reimplement node search
* fix up clear
* update placeholder color
* impl transition
* focus on tab
* update spacing
* fix transition bug on start
* fix up x
* fix position
* build
* safari fix
* remove input changes
* css bleed issue with image
* update css value
* clean up
* simplify impl
* rename again
* rename again
* rename all
* fix hover bug
* remove keep alive
* delete icon
* update interface type
* refactor components
* update scss to module
* clean up impl
* clean up colors as vars
* fix indentation
* clean up scss
* clean up scss
* clean up scss
* clean up scss
* Clean up files
* update logic to be more efficient
* fix search bug
* update type
* remove unused
* clean up js
* update scrollable, border impl, transition
* fix simicolon
* build
* update search
* address max's comments
* change icon border radius
* change margin
* update icon size
* update icon size
* update slide transition out
* add comma
* remove full
* update trigger icon size
* fix image size
* address design feedback
* update external link icons
* address codacy issues
* support custom nodes without codex file
* address jan's feedback
* address Ben's comments
* add subcategory index
* open/close categories with arrow keys
* add lint comment
* Address latest comments
* ⚡ Minor changes
Co-authored-by: Iván Ovejero <ivov.src@gmail.com>
Co-authored-by: Mutasem <mutdmour@gmail.com>
Co-authored-by: Mutasem Aldmour <4711238+mutdmour@users.noreply.github.com>
Co-authored-by: Jan Oberhauser <jan.oberhauser@gmail.com>
109 lines
2.2 KiB
Vue
109 lines
2.2 KiB
Vue
<template>
|
|
<div class="node-icon-wrapper" :style="iconStyleData" :class="{shrink: isSvgIcon && shrink, full: !shrink}">
|
|
<div v-if="nodeIconData !== null" class="icon">
|
|
<img :src="nodeIconData.path" style="max-width: 100%; max-height: 100%;" v-if="nodeIconData.type === 'file'"/>
|
|
<font-awesome-icon :icon="nodeIconData.path" v-else-if="nodeIconData.type === 'fa'" />
|
|
</div>
|
|
<div v-else class="node-icon-placeholder">
|
|
{{nodeType !== null ? nodeType.displayName.charAt(0) : '?' }}
|
|
</div>
|
|
</div>
|
|
</template>
|
|
|
|
<script lang="ts">
|
|
|
|
import Vue from 'vue';
|
|
|
|
interface NodeIconData {
|
|
type: string;
|
|
path: string;
|
|
fileExtension?: string;
|
|
}
|
|
|
|
export default Vue.extend({
|
|
name: 'NodeIcon',
|
|
props: [
|
|
'nodeType',
|
|
'size',
|
|
'shrink',
|
|
],
|
|
computed: {
|
|
iconStyleData (): object {
|
|
if (!this.size) {
|
|
return {};
|
|
}
|
|
|
|
const size = parseInt(this.size, 10);
|
|
|
|
return {
|
|
width: size + 'px',
|
|
height: size + 'px',
|
|
'font-size': Math.floor(parseInt(this.size, 10) * 0.6) + 'px',
|
|
'line-height': size + 'px',
|
|
'border-radius': Math.ceil(size / 2) + 'px',
|
|
};
|
|
},
|
|
isSvgIcon (): boolean {
|
|
if (this.nodeIconData && this.nodeIconData.type === 'file' && this.nodeIconData.fileExtension === 'svg') {
|
|
return true;
|
|
}
|
|
return false;
|
|
},
|
|
nodeIconData (): null | NodeIconData {
|
|
if (this.nodeType === null) {
|
|
return null;
|
|
}
|
|
|
|
const restUrl = this.$store.getters.getRestUrl;
|
|
|
|
if (this.nodeType.icon) {
|
|
let type, path;
|
|
[type, path] = this.nodeType.icon.split(':');
|
|
const returnData: NodeIconData = {
|
|
type,
|
|
path,
|
|
};
|
|
|
|
if (type === 'file') {
|
|
returnData.path = restUrl + '/node-icon/' + this.nodeType.name;
|
|
returnData.fileExtension = path.split('.').slice(-1).join();
|
|
}
|
|
|
|
return returnData;
|
|
}
|
|
return null;
|
|
},
|
|
},
|
|
});
|
|
</script>
|
|
|
|
<style lang="scss">
|
|
|
|
.node-icon-wrapper {
|
|
width: 26px;
|
|
height: 26px;
|
|
border-radius: 4px;
|
|
color: #444;
|
|
line-height: 26px;
|
|
font-size: 1.1em;
|
|
overflow: hidden;
|
|
text-align: center;
|
|
font-weight: bold;
|
|
font-size: 20px;
|
|
|
|
&.full .icon {
|
|
height: 100%;
|
|
width: 100%;
|
|
}
|
|
|
|
&.shrink .icon {
|
|
margin: 0.24em;
|
|
}
|
|
|
|
.node-icon-placeholder {
|
|
text-align: center;
|
|
}
|
|
}
|
|
|
|
</style>
|