primevue-mirror/components/lib/baseicon/BaseIcon.vue

47 lines
1.1 KiB
Vue
Raw Normal View History

2023-03-31 21:45:03 +00:00
<script>
import BaseComponent from 'primevue/basecomponent';
import BaseIconStyle from 'primevue/baseicon/style';
2023-03-31 21:45:03 +00:00
import { ObjectUtils } from 'primevue/utils';
export default {
name: 'BaseIcon',
extends: BaseComponent,
2023-03-31 21:45:03 +00:00
props: {
label: {
type: String,
2023-04-26 08:57:02 +00:00
default: undefined
2023-03-31 21:45:03 +00:00
},
spin: {
type: Boolean,
2023-04-26 08:57:02 +00:00
default: false
2023-03-31 21:45:03 +00:00
}
},
style: BaseIconStyle,
beforeMount() {
BaseIconStyle.loadStyle({ nonce: this.$config?.csp?.nonce });
},
2023-03-31 21:45:03 +00:00
methods: {
pti() {
const isLabelEmpty = ObjectUtils.isEmpty(this.label);
return {
class: [
'p-icon',
{
'p-icon-spin': this.spin
}
],
role: !isLabelEmpty ? 'img' : undefined,
2023-04-03 08:26:51 +00:00
'aria-label': !isLabelEmpty ? this.label : undefined,
2023-03-31 21:45:03 +00:00
'aria-hidden': isLabelEmpty
};
}
},
computed: {
$config() {
return this.$primevue?.config;
}
2023-03-31 21:45:03 +00:00
}
};
</script>