mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2026-09-04 17:46:34 +02:00
* add menu item * implement versions modal * fix up modal * clean up badges * implement key features * fix up spacing * add error message * add notification icon * fix notification * fix bug when no updates * address lint issues * address multi line nodes * add closing animation * keep drawer open * address design feedback * address badge styling * use grid for icons * update cli to return version information * set env variables * add scss color variables * address comments * fix lint issue * handle edge cases * update scss variables, spacing * update spacing * build * override top value for theme * bolden version * update config * check endpoint exists * handle long names * set dates * set title * fix bug * update warning * remove unused component * refactor components * add fragments * inherit styles * fix icon size * fix lint issues * add cli dep * address comments * handle network error * address empty case * Revert "address comments" 480f969e07c3282c50bc326babbc5812baac5dae * remove dependency * build * update variable names * update variable names * refactor verion card * split out variables * clean up impl * clean up scss * move from nodeview * refactor out gift notification icon * fix lint issues * clean up variables * update scss variables * update info url * Add instanceId to frontendSettings * Use createHash from crypto module * Add instanceId to store & send it as http header * Fix lintings * Fix interfaces & apply review changes * Apply review changes * add console message * update text info * update endpoint * clean up interface * address comments * cleanup todo * Update packages/cli/config/index.ts Co-authored-by: Ben Hesseldieck <1849459+BHesseldieck@users.noreply.github.com> * update console message * ⚡ Display node-name on hover * ⚡ Formatting fix Co-authored-by: MedAliMarz <servfrdali@yahoo.fr> Co-authored-by: Ben Hesseldieck <1849459+BHesseldieck@users.noreply.github.com> Co-authored-by: Jan Oberhauser <jan.oberhauser@gmail.com>
120 lines
2.4 KiB
Vue
120 lines
2.4 KiB
Vue
<template>
|
|
<div class="node-icon-wrapper" :style="iconStyleData" :class="{shrink: isSvgIcon && shrink, full: !shrink}">
|
|
<div v-if="nodeIconData !== null" class="icon">
|
|
<img v-if="nodeIconData.type === 'file'" :src="nodeIconData.fileBuffer || nodeIconData.path" style="max-width: 100%; max-height: 100%;" />
|
|
<font-awesome-icon v-else :icon="nodeIconData.icon || nodeIconData.path" />
|
|
</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',
|
|
'disabled',
|
|
],
|
|
computed: {
|
|
iconStyleData (): object {
|
|
const color = this.disabled ? '#ccc' : this.nodeType.defaults && this.nodeType.defaults.color;
|
|
if (!this.size) {
|
|
return {color};
|
|
}
|
|
|
|
const size = parseInt(this.size, 10);
|
|
|
|
return {
|
|
color,
|
|
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;
|
|
}
|
|
|
|
if (this.nodeType.iconData) {
|
|
return this.nodeType.iconData;
|
|
}
|
|
|
|
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%;
|
|
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
}
|
|
|
|
&.shrink .icon {
|
|
margin: 0.24em;
|
|
}
|
|
|
|
.node-icon-placeholder {
|
|
text-align: center;
|
|
}
|
|
}
|
|
|
|
</style>
|