nova-ui/components/base-icon.vue
2022-12-04 07:02:30 +01:00

135 lines
2.0 KiB
Vue

<template>
<span v-tooltip="tooltip" :class="[$style.icon, $style[size], { [$style.withTooltip]: tooltip }]">
<component :is="iconComponent" role="img" />
</span>
</template>
<script>
const iconsNames = [
'Key',
'Auth',
'Fund',
'Copy',
'Logo',
'Info',
'Tick',
'Exit',
'Error',
'Arrow',
'Cross',
'Stats',
'Loader',
'Goerli',
'Github',
'Twitter',
'Success',
'Warning',
'Binance',
'Tornado',
'Download',
'LogoNova',
'Withdraw',
'Settings',
'Metamask',
'Telegram',
'Ethereum',
'Outgoing',
'Incoming',
'CircleCross',
'TransferTop',
'TransferBottom',
]
const icons = iconsNames.reduce((acc, curr) => {
acc[curr.toLowerCase()] = () => import(`./icons/${curr}.vue`)
return acc
}, {})
export default {
props: {
name: {
type: String,
required: true,
validator(value) {
return Boolean(iconsNames.find((el) => el.toLowerCase() === value.toLowerCase()))
},
},
size: {
type: String,
default: 'default',
validator(value) {
return ['default', 'extraMedium', 'medium', 'small', 'large', 'xlarge', 'xl', 'fill', 'auto', 'symbol'].includes(value)
},
},
tooltip: {
type: String,
required: false,
},
},
computed: {
iconComponent() {
return icons[this.name]
},
},
}
</script>
<style lang="scss" module>
.icon {
padding: 0;
display: block;
color: inherit;
fill: currentColor;
svg {
display: block;
}
}
.withTooltip {
cursor: help;
}
/* Sizes */
/* default, small, medium, extraMedium, large, xlarge, xl, fill, auto */
.default {
width: 2.4rem;
height: 2.4rem;
}
.small {
width: 1.4rem;
height: 1.4rem;
}
.medium {
width: 1.6rem;
height: 1.6rem;
}
.extraMedium {
width: 2rem;
height: 2rem;
}
.large {
width: 3.2rem;
height: 3.2rem;
}
.xlarge {
width: 4.4rem;
height: 4.4rem;
}
.xl {
width: 6.4rem;
height: 6.4rem;
}
.fill {
width: inherit;
height: inherit;
}
.auto {
width: auto;
height: 100%;
}
.symbol {
width: 3.2rem;
height: auto;
}
</style>