d35e8cfd98
* feat: Adds component to show contact fields * feat: Creates component show all contact info
66 lines
1.3 KiB
Vue
66 lines
1.3 KiB
Vue
<template>
|
|
<div class="wrap">
|
|
<div class="left">
|
|
<contact-panel v-if="!uiFlags.isFetchingItem" :contact="contact" />
|
|
</div>
|
|
<div class="center"></div>
|
|
<div class="right"></div>
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
import { mapGetters } from 'vuex';
|
|
import ContactPanel from './ContactPanel';
|
|
|
|
export default {
|
|
components: {
|
|
ContactPanel,
|
|
},
|
|
props: {
|
|
contactId: {
|
|
type: [String, Number],
|
|
default: 0,
|
|
},
|
|
},
|
|
data() {
|
|
return {};
|
|
},
|
|
computed: {
|
|
...mapGetters({
|
|
uiFlags: 'contacts/getUIFlags',
|
|
}),
|
|
showEmptySearchResult() {
|
|
const hasEmptyResults = !!this.searchQuery && this.records.length === 0;
|
|
return hasEmptyResults;
|
|
},
|
|
contact() {
|
|
return this.$store.getters['contacts/getContact'](this.contactId);
|
|
},
|
|
},
|
|
mounted() {
|
|
this.getContactDetails();
|
|
},
|
|
methods: {
|
|
getContactDetails() {
|
|
if (this.contactId) {
|
|
this.$store.dispatch('contacts/show', { id: this.contactId });
|
|
}
|
|
},
|
|
},
|
|
};
|
|
</script>
|
|
|
|
<style lang="scss" scoped>
|
|
@import '~dashboard/assets/scss/mixins';
|
|
|
|
.wrap {
|
|
@include three-column-grid(27.2rem);
|
|
background: var(--color-background);
|
|
border-top: 1px solid var(--color-border);
|
|
}
|
|
|
|
.center {
|
|
border-right: 1px solid var(--color-border);
|
|
border-left: 1px solid var(--color-border);
|
|
}
|
|
</style>
|