mirror of https://github.com/nocodb/nocodb
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
89 lines
2.3 KiB
89 lines
2.3 KiB
3 years ago
|
<template>
|
||
|
<v-tooltip v-if="tooltip" v-bind="tooltipProp">
|
||
3 years ago
|
<template #activator="{ on }">
|
||
|
<v-hover v-slot="{ hover }">
|
||
3 years ago
|
<v-icon
|
||
2 years ago
|
:class="[hover ? hclass : xclass, iconClass, $attrs['icon.class']]"
|
||
3 years ago
|
:color="hover ? colors[0] : colors[1]"
|
||
|
:style="hover ? hstyle : xstyle"
|
||
|
v-bind="$attrs"
|
||
2 years ago
|
v-on="{ ...on, ...$listeners }"
|
||
3 years ago
|
>
|
||
3 years ago
|
<slot />
|
||
3 years ago
|
</v-icon>
|
||
|
</v-hover>
|
||
|
</template>
|
||
3 years ago
|
<span v-html="tooltip" />
|
||
3 years ago
|
</v-tooltip>
|
||
3 years ago
|
<v-hover v-else v-slot="{ hover }">
|
||
3 years ago
|
<v-icon
|
||
2 years ago
|
:class="[hover ? hclass : xclass, iconClass, $attrs['icon.class']]"
|
||
3 years ago
|
:color="hover ? colors[0] : colors[1]"
|
||
|
:style="hover ? hstyle : xstyle"
|
||
|
v-bind="$attrs"
|
||
3 years ago
|
v-on="$listeners"
|
||
3 years ago
|
>
|
||
3 years ago
|
<slot />
|
||
3 years ago
|
</v-icon>
|
||
|
</v-hover>
|
||
|
</template>
|
||
|
|
||
|
<script>
|
||
|
export default {
|
||
3 years ago
|
name: 'XIcon',
|
||
3 years ago
|
props: {
|
||
|
tooltipProp: {
|
||
|
type: Object,
|
||
|
default: () => ({
|
||
2 years ago
|
bottom: true,
|
||
|
}),
|
||
3 years ago
|
},
|
||
|
tooltip: String,
|
||
|
icon: String,
|
||
|
hclass: String,
|
||
|
xclass: String,
|
||
|
hstyle: String,
|
||
|
xstyle: String,
|
||
|
hcolor: String,
|
||
|
color: [String, Array],
|
||
2 years ago
|
iconClass: String,
|
||
3 years ago
|
},
|
||
|
computed: {
|
||
3 years ago
|
colors() {
|
||
2 years ago
|
return this.color ? (Array.isArray(this.color) ? this.color : this.color.split(' ')) : [];
|
||
|
},
|
||
3 years ago
|
},
|
||
|
methods: {
|
||
3 years ago
|
triggerClick(...args) {
|
||
2 years ago
|
this.$emit('click', ...args);
|
||
|
},
|
||
|
},
|
||
|
};
|
||
3 years ago
|
</script>
|
||
|
|
||
2 years ago
|
<style scoped></style>
|
||
3 years ago
|
<!--
|
||
|
/**
|
||
|
* @copyright Copyright (c) 2021, Xgene Cloud Ltd
|
||
|
*
|
||
|
* @author Naveen MR <oof1lab@gmail.com>
|
||
|
* @author Pranav C Balan <pranavxc@gmail.com>
|
||
|
*
|
||
|
* @license GNU AGPL version 3 or any later version
|
||
|
*
|
||
|
* This program is free software: you can redistribute it and/or modify
|
||
|
* it under the terms of the GNU Affero General Public License as
|
||
|
* published by the Free Software Foundation, either version 3 of the
|
||
|
* License, or (at your option) any later version.
|
||
|
*
|
||
|
* This program is distributed in the hope that it will be useful,
|
||
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||
|
* GNU Affero General Public License for more details.
|
||
|
*
|
||
|
* You should have received a copy of the GNU Affero General Public License
|
||
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||
|
*
|
||
|
*/
|
||
|
-->
|