import { mapGetters } from 'vuex'; import { isValidURL } from '../helper/URLHelper'; export default { computed: { ...mapGetters({ currentChat: 'getSelectedChat', accountId: 'getCurrentAccountId', }), attributes() { return this.$store.getters['attributes/getAttributesByModel']( this.attributeType ); }, customAttributes() { if (this.attributeType === 'conversation_attribute') return this.currentChat.custom_attributes || {}; return this.contact.custom_attributes || {}; }, contactIdentifier() { return ( this.currentChat.meta?.sender?.id || this.$route.params.contactId || this.contactId ); }, contact() { return this.$store.getters['contacts/getContact'](this.contactIdentifier); }, conversationId() { return this.currentChat.id; }, }, methods: { isAttributeNumber(attributeValue) { return ( Number.isInteger(Number(attributeValue)) && Number(attributeValue) > 0 ); }, attributeDisplayType(attributeValue) { if (this.isAttributeNumber(attributeValue)) { return 'number'; } if (isValidURL(attributeValue)) { return 'link'; } return 'text'; }, }, };