Card basic demo fix
parent
ee9403ffb9
commit
de8708d5a3
|
@ -1,79 +1,72 @@
|
||||||
|
<template>
|
||||||
|
<DocSectionText v-bind="$attrs">
|
||||||
|
<p>A simple Card is created with a <i>title</i> property along with the content as children.</p>
|
||||||
|
</DocSectionText>
|
||||||
|
<div class="card">
|
||||||
|
<Card>
|
||||||
|
<template #title> Simple Card </template>
|
||||||
|
<template #content>
|
||||||
|
<p>
|
||||||
|
Lorem ipsum dolor sit amet, consectetur adipisicing elit. Inventore sed consequuntur error repudiandae numquam deserunt quisquam repellat libero asperiores earum nam nobis, culpa ratione quam perferendis esse, cupiditate neque
|
||||||
|
quas!
|
||||||
|
</p>
|
||||||
|
</template>
|
||||||
|
</Card>
|
||||||
|
</div>
|
||||||
|
<DocSectionCode :code="code" />
|
||||||
|
</template>
|
||||||
|
|
||||||
|
<script>
|
||||||
|
export default {
|
||||||
|
data() {
|
||||||
|
return {
|
||||||
|
code: {
|
||||||
|
basic: `
|
||||||
|
<Card>
|
||||||
|
<template #title> Simple Card </template>
|
||||||
|
<template #content>
|
||||||
|
<p>
|
||||||
|
Lorem ipsum dolor sit amet, consectetur adipisicing elit. Inventore sed consequuntur error repudiandae numquam deserunt quisquam repellat libero asperiores earum nam nobis, culpa ratione quam perferendis esse, cupiditate neque
|
||||||
|
quas!
|
||||||
|
</p>
|
||||||
|
</template>
|
||||||
|
</Card>`,
|
||||||
|
options: `
|
||||||
<template>
|
<template>
|
||||||
<div class="card">
|
<div class="card">
|
||||||
<DataTable filterDisplay="row" :value="customers" rowGroupMode="subheader" groupRowsBy="representative.name" sortMode="single" sortField="representative.name" :sortOrder="1" scrollable scrollHeight="400px" tableStyle="min-width: 50rem">
|
<Card>
|
||||||
<Column field="representative.name" header="Representative"></Column>
|
<template #title> Simple Card </template>
|
||||||
<Column field="name" header="Name" style="min-width: 200px"></Column>
|
<template #content>
|
||||||
<Column field="country" header="Country" style="min-width: 200px">
|
<p>
|
||||||
<template #body="slotProps">
|
Lorem ipsum dolor sit amet, consectetur adipisicing elit. Inventore sed consequuntur error repudiandae numquam deserunt quisquam repellat libero asperiores earum nam nobis, culpa ratione quam perferendis esse, cupiditate neque
|
||||||
<div class="flex align-items-center gap-2">
|
quas!
|
||||||
<img alt="flag" src="https://primefaces.org/cdn/primevue/images/flag/flag_placeholder.png" :class="`flag flag-${slotProps.data.country.code}`" style="width: 24px" />
|
</p>
|
||||||
<span>{{ slotProps.data.country.name }}</span>
|
|
||||||
</div>
|
|
||||||
</template>
|
|
||||||
</Column>
|
|
||||||
<Column field="company" header="Company" style="min-width: 200px"></Column>
|
|
||||||
<Column field="status" header="Status" style="min-width: 200px">
|
|
||||||
<template #body="slotProps">
|
|
||||||
<Tag :value="slotProps.data.status" :severity="getSeverity(slotProps.data.status)" />
|
|
||||||
</template>
|
|
||||||
</Column>
|
|
||||||
<Column field="date" header="Date" style="min-width: 200px"></Column>
|
|
||||||
<template #groupheader="slotProps">
|
|
||||||
<div class="flex align-items-center gap-2">
|
|
||||||
<img :alt="slotProps.data.representative.name" :src="`https://primefaces.org/cdn/primevue/images/avatar/${slotProps.data.representative.image}`" width="32" style="vertical-align: middle" />
|
|
||||||
<span>{{ slotProps.data.representative.name }}</span>
|
|
||||||
</div>
|
|
||||||
</template>
|
</template>
|
||||||
<template #groupfooter="slotProps">
|
</Card>
|
||||||
<div class="flex justify-content-end font-bold w-full">
|
</div>
|
||||||
Total Customers:
|
</template>
|
||||||
{{ calculateCustomerTotal(slotProps.data.representative.name) }}
|
|
||||||
</div>
|
<script>
|
||||||
|
<\/script>`,
|
||||||
|
composition: `
|
||||||
|
<template>
|
||||||
|
<div class="card">
|
||||||
|
<Card>
|
||||||
|
<template #title> Simple Card </template>
|
||||||
|
<template #content>
|
||||||
|
<p>
|
||||||
|
Lorem ipsum dolor sit amet, consectetur adipisicing elit. Inventore sed consequuntur error repudiandae numquam deserunt quisquam repellat libero asperiores earum nam nobis, culpa ratione quam perferendis esse, cupiditate neque
|
||||||
|
quas!
|
||||||
|
</p>
|
||||||
</template>
|
</template>
|
||||||
</DataTable>
|
</Card>
|
||||||
</div>
|
</div>
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
<script setup>
|
<script setup>
|
||||||
import { CustomerService } from '@/service/CustomerService';
|
<\/script>`
|
||||||
import { onMounted, ref } from 'vue';
|
|
||||||
|
|
||||||
onMounted(() => {
|
|
||||||
CustomerService.getCustomersMedium().then((data) => (customers.value = data));
|
|
||||||
});
|
|
||||||
|
|
||||||
const customers = ref();
|
|
||||||
|
|
||||||
const calculateCustomerTotal = (name) => {
|
|
||||||
let total = 0;
|
|
||||||
|
|
||||||
if (customers.value) {
|
|
||||||
for (let customer of customers.value) {
|
|
||||||
if (customer.representative.name === name) {
|
|
||||||
total++;
|
|
||||||
}
|
}
|
||||||
}
|
};
|
||||||
}
|
|
||||||
|
|
||||||
return total;
|
|
||||||
};
|
|
||||||
|
|
||||||
const getSeverity = (status) => {
|
|
||||||
switch (status) {
|
|
||||||
case 'unqualified':
|
|
||||||
return 'danger';
|
|
||||||
|
|
||||||
case 'qualified':
|
|
||||||
return 'success';
|
|
||||||
|
|
||||||
case 'new':
|
|
||||||
return 'info';
|
|
||||||
|
|
||||||
case 'negotiation':
|
|
||||||
return 'warning';
|
|
||||||
|
|
||||||
case 'renewal':
|
|
||||||
return null;
|
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
</script>
|
</script>
|
||||||
|
|
Loading…
Reference in New Issue