initial commit
This commit is contained in:
@@ -0,0 +1,301 @@
|
||||
<script setup>
|
||||
import axiosIns from '@/plugins/axios'
|
||||
import { showToast } from '@/plugins/toast'
|
||||
import { computed } from 'vue'
|
||||
import { useRoute, useRouter } from 'vue-router'
|
||||
import { VDataTable } from 'vuetify/labs/VDataTable'
|
||||
|
||||
const route = useRoute()
|
||||
const router = useRouter()
|
||||
|
||||
const search = ref('')
|
||||
const doctor = ref({})
|
||||
const assignedPatients = ref([])
|
||||
const patients = ref([])
|
||||
|
||||
const unassignedPatients = computed(() => {
|
||||
return patients.value.filter(patient => {
|
||||
return !assignedPatients.value.some(assignedPatient => assignedPatient.id === patient.id)
|
||||
})
|
||||
})
|
||||
|
||||
const searchedAssignedPatients = computed(() => {
|
||||
return assignedPatients.value.filter(patient => {
|
||||
return Object.values(patient).some(value => {
|
||||
return String(value).toLowerCase().includes(search.value.toLowerCase())
|
||||
})
|
||||
})
|
||||
})
|
||||
|
||||
const searchedUnassignedPatients = computed(() => {
|
||||
return unassignedPatients.value.filter(patient => {
|
||||
return Object.values(patient).some(value => {
|
||||
return String(value).toLowerCase().includes(search.value.toLowerCase())
|
||||
})
|
||||
})
|
||||
})
|
||||
|
||||
const currentTab = ref(0)
|
||||
|
||||
const details = [
|
||||
{
|
||||
icon: 'tabler-user',
|
||||
title: 'Fullname',
|
||||
key: 'fullname',
|
||||
},
|
||||
{
|
||||
icon: 'tabler-address-book',
|
||||
title: 'Address',
|
||||
key: 'address',
|
||||
},
|
||||
{
|
||||
icon: 'tabler-phone',
|
||||
title: 'Phone',
|
||||
key: 'phone',
|
||||
},
|
||||
{
|
||||
icon: 'tabler-phone',
|
||||
title: 'Emergency Phone',
|
||||
key: 'emergency_phone',
|
||||
},
|
||||
{
|
||||
icon: 'tabler-gender-bigender',
|
||||
title: 'Gender',
|
||||
key: 'gender',
|
||||
},
|
||||
{
|
||||
icon: 'tabler-123',
|
||||
title: 'Age',
|
||||
key: 'age',
|
||||
},
|
||||
]
|
||||
|
||||
const selectedUnassignPatients = ref([])
|
||||
const selectedAssignPatients = ref([])
|
||||
|
||||
const headers = [
|
||||
{ title: 'Fullname', key: 'fullname' },
|
||||
{ title: 'Phone', key: 'phone' },
|
||||
{ title: 'Gender', key: 'gender' },
|
||||
]
|
||||
|
||||
const sortBy1 = ref([{ key: 'fullname', order: 'asc' }])
|
||||
const sortBy2 = ref([{ key: 'fullname', order: 'asc' }])
|
||||
|
||||
const unassignLoading = ref(false)
|
||||
const assignLoading = ref(false)
|
||||
|
||||
async function unassignPatients() {
|
||||
if (selectedUnassignPatients.value.length === 0) return
|
||||
|
||||
unassignLoading.value = true
|
||||
|
||||
await axiosIns.post('/api/v1/admin/unassign', {
|
||||
doctor_id: route.params.id,
|
||||
patient_ids: selectedUnassignPatients.value,
|
||||
})
|
||||
.then (response => {
|
||||
showToast(response.data.message, 'success')
|
||||
})
|
||||
.catch(error => {
|
||||
showToast(error.response.data.error, 'error')
|
||||
})
|
||||
|
||||
selectedUnassignPatients.value.forEach(patientId => {
|
||||
const idx = assignedPatients.value.findIndex(patient => patient.id === patientId)
|
||||
|
||||
const toMove = assignedPatients.value[idx]
|
||||
|
||||
assignedPatients.value.splice(idx, 1)
|
||||
patients.value.push(toMove)
|
||||
|
||||
unassignLoading.value = false
|
||||
})
|
||||
|
||||
selectedUnassignPatients.value = []
|
||||
}
|
||||
|
||||
async function assignPatients() {
|
||||
if (selectedAssignPatients.value.length === 0) return
|
||||
|
||||
assignLoading.value = true
|
||||
|
||||
await axiosIns.post('/api/v1/admin/assign', {
|
||||
doctor_id: route.params.id,
|
||||
patient_ids: selectedAssignPatients.value,
|
||||
})
|
||||
.then (response => {
|
||||
showToast(response.data.message, 'success')
|
||||
})
|
||||
.catch(error => {
|
||||
showToast(error.response.data.error, 'error')
|
||||
})
|
||||
|
||||
selectedAssignPatients.value.forEach(patientId => {
|
||||
const idx = patients.value.findIndex(patient => patient.id === patientId)
|
||||
|
||||
const toMove = patients.value[idx]
|
||||
|
||||
patients.value.splice(idx, 1)
|
||||
assignedPatients.value.push(toMove)
|
||||
})
|
||||
selectedAssignPatients.value = []
|
||||
|
||||
assignLoading.value = false
|
||||
}
|
||||
|
||||
const doctorLoading = ref(false)
|
||||
const patientLoading = ref(false)
|
||||
|
||||
onMounted(() => {
|
||||
doctorLoading.value = true
|
||||
axiosIns.get(`/api/v1/admin/doctor/${route.params.id}`)
|
||||
.then(response => {
|
||||
doctor.value = response.data.data
|
||||
assignedPatients.value = response.data.data.patients
|
||||
doctorLoading.value = false
|
||||
})
|
||||
.catch(error => {
|
||||
console.log(error)
|
||||
doctorLoading.value = false
|
||||
})
|
||||
|
||||
patientLoading.value = true
|
||||
axiosIns.get(`/api/v1/admin/patient`)
|
||||
.then(response => {
|
||||
patients.value = response.data.data
|
||||
patientLoading.value = false
|
||||
})
|
||||
.catch(error => {
|
||||
console.log(error)
|
||||
patientLoading.value = false
|
||||
})
|
||||
})
|
||||
</script>
|
||||
|
||||
<template>
|
||||
<div>
|
||||
<VRow>
|
||||
<VCol cols="4">
|
||||
<VCard
|
||||
title="Doctor Details"
|
||||
density="compact"
|
||||
:loading="doctorLoading"
|
||||
>
|
||||
<VCardText>
|
||||
<VList class="text-medium-emphasis">
|
||||
<VListItem
|
||||
v-for="detail in details"
|
||||
:key="detail.key"
|
||||
>
|
||||
<template #prepend>
|
||||
<VIcon
|
||||
:icon="detail.icon"
|
||||
size="32"
|
||||
start
|
||||
/>
|
||||
</template>
|
||||
<VListItemTitle>
|
||||
<span class="font-weight-light me-1">{{ detail.title }}</span>
|
||||
</VListItemTitle>
|
||||
<VListItemMedia>
|
||||
<span class="font-weight-medium me-1">{{ doctor[detail.key] }}</span>
|
||||
</VListItemMedia>
|
||||
</VListItem>
|
||||
</VList>
|
||||
</VCardText>
|
||||
|
||||
<VCardActions>
|
||||
<VBtn
|
||||
color="primary"
|
||||
variant="elevated"
|
||||
block
|
||||
@click="router.back"
|
||||
>
|
||||
Back
|
||||
</VBtn>
|
||||
</VCardActions>
|
||||
</VCard>
|
||||
</VCol>
|
||||
<VCol>
|
||||
<VCard
|
||||
title="Patients"
|
||||
density="compact"
|
||||
:loading="patientLoading"
|
||||
>
|
||||
<VTabs v-model="currentTab">
|
||||
<VTab>Assigned Patients</VTab>
|
||||
<VTab>Other Patients</VTab>
|
||||
</VTabs>
|
||||
|
||||
<VCardText>
|
||||
<AppTextField
|
||||
v-model="search"
|
||||
prepend-inner-icon="tabler-search"
|
||||
:append-inner-icon="search.length > 0 ? 'tabler-x' : null"
|
||||
placeholder="Search"
|
||||
class="mb-2"
|
||||
@click:append-inner="search=''"
|
||||
/>
|
||||
<VWindow v-model="currentTab">
|
||||
<VWindowItem key="0">
|
||||
<VDataTable
|
||||
v-model="selectedUnassignPatients"
|
||||
v-model:sort-by="sortBy1"
|
||||
:headers="headers"
|
||||
:items="searchedAssignedPatients"
|
||||
:items-per-page="10"
|
||||
show-select
|
||||
density="compact"
|
||||
>
|
||||
<template #footer.prepend>
|
||||
<VBtn
|
||||
color="primary"
|
||||
variant="elevated"
|
||||
:disabled="selectedUnassignPatients.length === 0 || unassignLoading"
|
||||
:loading="unassignLoading"
|
||||
@click="unassignPatients"
|
||||
>
|
||||
Unassign
|
||||
</VBtn>
|
||||
<VSpacer />
|
||||
</template>
|
||||
</VDataTable>
|
||||
</VWindowItem>
|
||||
<VWindowItem key="1">
|
||||
<VDataTable
|
||||
v-model="selectedAssignPatients"
|
||||
v-model:sort-by="sortBy2"
|
||||
:headers="headers"
|
||||
:items="searchedUnassignedPatients"
|
||||
:items-per-page="10"
|
||||
show-select
|
||||
density="compact"
|
||||
>
|
||||
<template #footer.prepend>
|
||||
<VBtn
|
||||
color="primary"
|
||||
variant="elevated"
|
||||
:disabled="selectedAssignPatients.length === 0 || assignLoading"
|
||||
:loading="assignLoading"
|
||||
@click="assignPatients"
|
||||
>
|
||||
Assign
|
||||
</VBtn>
|
||||
<VSpacer />
|
||||
</template>
|
||||
</VDataTable>
|
||||
</VWindowItem>
|
||||
</VWindow>
|
||||
</VCardText>
|
||||
</VCard>
|
||||
</VCol>
|
||||
</VRow>
|
||||
</div>
|
||||
</template>
|
||||
|
||||
<route lang="yaml">
|
||||
meta:
|
||||
requiresAuth: true
|
||||
allowedRoles: ['admin']
|
||||
</route>
|
||||
@@ -0,0 +1,383 @@
|
||||
<script setup>
|
||||
import axiosIns from '@/plugins/axios'
|
||||
import { showToast } from '@/plugins/toast'
|
||||
import { emailValidator, requiredValidator } from '@validators'
|
||||
import { onMounted } from 'vue'
|
||||
import { VDataTable } from 'vuetify/labs/VDataTable'
|
||||
|
||||
const editDialog = ref(false)
|
||||
const deleteDialog = ref(false)
|
||||
|
||||
const refForm = ref()
|
||||
|
||||
const defaultItem = ref({
|
||||
id: '',
|
||||
user_id: '',
|
||||
fullname: '',
|
||||
address: '',
|
||||
phone: '',
|
||||
emergency_phone: '',
|
||||
gender: '',
|
||||
age: '',
|
||||
})
|
||||
|
||||
const email = ref('')
|
||||
const password = ref('')
|
||||
|
||||
const editedItem = ref(defaultItem.value)
|
||||
const editedIndex = ref(-1)
|
||||
|
||||
const headers = [
|
||||
{ title: 'Fullname', key: 'fullname' },
|
||||
{ title: 'Addres', key: 'address' },
|
||||
{ title: 'Phone', key: 'phone' },
|
||||
{ title: 'Emergency Phone', key: 'emergency_phone' },
|
||||
{ title: 'Gender', key: 'gender' },
|
||||
{ title: 'Age', key: 'age' },
|
||||
{ title: 'Actions', key: 'actions', sortable: false },
|
||||
]
|
||||
|
||||
const sortBy = ref([{ key: 'fullname', order: 'asc' }])
|
||||
|
||||
const search = ref('')
|
||||
const doctors = ref([])
|
||||
|
||||
const searchedDoctors = computed(() => {
|
||||
return doctors.value.filter(doctor => {
|
||||
return Object.values(doctor).some(value => {
|
||||
return String(value).toLowerCase().includes(search.value.toLowerCase())
|
||||
})
|
||||
})
|
||||
})
|
||||
|
||||
const editLoading = ref(false)
|
||||
const deleteLoading = ref(false)
|
||||
|
||||
const editItemShow = item => {
|
||||
editedIndex.value = doctors.value.indexOf(item)
|
||||
editedItem.value = { ...item }
|
||||
editDialog.value = true
|
||||
}
|
||||
|
||||
const deleteItemShow = item => {
|
||||
editedIndex.value = doctors.value.indexOf(item)
|
||||
editedItem.value = { ...item }
|
||||
deleteDialog.value = true
|
||||
}
|
||||
|
||||
const addItemShow = () => {
|
||||
editedIndex.value = -1
|
||||
editedItem.value = { ...defaultItem.value }
|
||||
editDialog.value = true
|
||||
}
|
||||
|
||||
const close = () => {
|
||||
editDialog.value = false
|
||||
editedIndex.value = -1
|
||||
editedItem.value = { ...defaultItem.value }
|
||||
email.value = ''
|
||||
password.value = ''
|
||||
refForm.value.reset()
|
||||
}
|
||||
|
||||
const closeDelete = () => {
|
||||
deleteDialog.value = false
|
||||
editedIndex.value = -1
|
||||
editedItem.value = { ...defaultItem.value }
|
||||
email.value = ''
|
||||
password.value = ''
|
||||
}
|
||||
|
||||
const save = async () => {
|
||||
const validation = await refForm.value.validate()
|
||||
if (!validation.valid) return
|
||||
|
||||
editLoading.value = true
|
||||
|
||||
if (editedIndex.value > -1) {
|
||||
await axiosIns.put(`/api/v1/admin/doctor/${editedItem.value.id}`, editedItem.value)
|
||||
.then (response => {
|
||||
showToast(response.data.message, 'success')
|
||||
})
|
||||
.catch(error => {
|
||||
showToast(error.response.data.error, 'error')
|
||||
})
|
||||
} else {
|
||||
await axiosIns.post('/api/v1/admin/doctor', {
|
||||
...editedItem.value,
|
||||
email: email.value,
|
||||
password: password.value,
|
||||
})
|
||||
.then (response => {
|
||||
showToast(response.data.message, 'success')
|
||||
})
|
||||
.catch(error => {
|
||||
showToast(error.response.data.error, 'error')
|
||||
})
|
||||
}
|
||||
await loadDoctors()
|
||||
editLoading.value = false
|
||||
close()
|
||||
}
|
||||
|
||||
const deleteItemConfirm = async () => {
|
||||
deleteLoading.value = true
|
||||
await axiosIns.delete(`/api/v1/admin/doctor/${editedItem.value.id}`)
|
||||
.then (response => {
|
||||
showToast(response.data.message, 'success')
|
||||
})
|
||||
.catch(error => {
|
||||
showToast(error.response.data.error, 'error')
|
||||
})
|
||||
await loadDoctors()
|
||||
deleteLoading.value = false
|
||||
closeDelete()
|
||||
}
|
||||
|
||||
const loading = ref(false)
|
||||
|
||||
const loadDoctors = async () => {
|
||||
loading.value = true
|
||||
await axiosIns.get('/api/v1/admin/doctor')
|
||||
.then(response => {
|
||||
doctors.value = response.data.data
|
||||
})
|
||||
.catch(error => {
|
||||
console.log(error)
|
||||
})
|
||||
loading.value = false
|
||||
}
|
||||
|
||||
onMounted(loadDoctors)
|
||||
</script>
|
||||
|
||||
<template>
|
||||
<div>
|
||||
<VCard
|
||||
title="Doctor"
|
||||
:loading="loading"
|
||||
>
|
||||
<template #append>
|
||||
<div>
|
||||
<VBtn
|
||||
color="primary"
|
||||
@click="addItemShow"
|
||||
>
|
||||
Add Doctor
|
||||
<VIcon
|
||||
end
|
||||
icon="tabler-plus"
|
||||
/>
|
||||
</VBtn>
|
||||
</div>
|
||||
</template>
|
||||
<VCardText density="compact">
|
||||
<AppTextField
|
||||
v-model="search"
|
||||
prepend-inner-icon="tabler-search"
|
||||
:append-inner-icon="search.length > 0 ? 'tabler-x' : null"
|
||||
placeholder="Search"
|
||||
class="mb-2"
|
||||
@click:append-inner="search=''"
|
||||
/>
|
||||
<VDataTable
|
||||
v-model:sort-by="sortBy"
|
||||
:headers="headers"
|
||||
:items="searchedDoctors"
|
||||
:items-per-page="10"
|
||||
density="compact"
|
||||
>
|
||||
<template #item.actions="{ item }">
|
||||
<div class="d-flex gap-1">
|
||||
<RouterLink :to="`/admin/doctor/${item.raw.id}`">
|
||||
<IconBtn>
|
||||
<VIcon
|
||||
icon="mdi-information-outline"
|
||||
color="primary"
|
||||
/>
|
||||
</IconBtn>
|
||||
</RouterLink>
|
||||
<IconBtn @click="editItemShow(item.raw)">
|
||||
<VIcon
|
||||
icon="mdi-pencil-outline"
|
||||
color="primary"
|
||||
/>
|
||||
</IconBtn>
|
||||
<IconBtn @click="deleteItemShow(item.raw)">
|
||||
<VIcon
|
||||
icon="mdi-delete-outline"
|
||||
color="error"
|
||||
/>
|
||||
</IconBtn>
|
||||
</div>
|
||||
</template>
|
||||
</VDataTable>
|
||||
</VCardText>
|
||||
</VCard>
|
||||
|
||||
<!-- DIALOG EDIT -->
|
||||
<VDialog
|
||||
v-model="editDialog"
|
||||
max-width="600px"
|
||||
persistent
|
||||
>
|
||||
<VCard>
|
||||
<VForm
|
||||
ref="refForm"
|
||||
@submit.prevent="save"
|
||||
>
|
||||
<VCardTitle>
|
||||
<span class="headline">
|
||||
{{ editedIndex > -1 ? "Edit Doctor" : "Add Doctor" }}
|
||||
</span>
|
||||
</VCardTitle>
|
||||
<VCardText>
|
||||
<VContainer>
|
||||
<VRow dense>
|
||||
<VCol cols="12">
|
||||
<AppTextField
|
||||
v-model="editedItem.fullname"
|
||||
label="Fullname"
|
||||
:rules="[requiredValidator]"
|
||||
/>
|
||||
</VCol>
|
||||
<VCol cols="12">
|
||||
<AppTextarea
|
||||
v-model="editedItem.address"
|
||||
label="Address"
|
||||
rows="2"
|
||||
auto-grow
|
||||
:rules="[requiredValidator]"
|
||||
/>
|
||||
</VCol>
|
||||
<VCol cols="6">
|
||||
<AppTextField
|
||||
v-model="editedItem.phone"
|
||||
label="Phone"
|
||||
:rules="[requiredValidator]"
|
||||
/>
|
||||
</VCol>
|
||||
<VCol cols="6">
|
||||
<AppTextField
|
||||
v-model="editedItem.emergency_phone"
|
||||
label="Emergency Phone"
|
||||
:rules="[requiredValidator]"
|
||||
/>
|
||||
</VCol>
|
||||
<VCol cols="6">
|
||||
<AppSelect
|
||||
v-model="editedItem.gender"
|
||||
:items="['male', 'female']"
|
||||
label="Gender"
|
||||
density="compact"
|
||||
:rules="[requiredValidator]"
|
||||
/>
|
||||
</VCol>
|
||||
<VCol cols="6">
|
||||
<AppTextField
|
||||
v-model="editedItem.age"
|
||||
type="number"
|
||||
label="Age"
|
||||
:rules="[requiredValidator]"
|
||||
/>
|
||||
</VCol>
|
||||
<!-- FIELD FOR NEW ITEM -->
|
||||
<VCol
|
||||
v-if="editedIndex == -1"
|
||||
cols="12"
|
||||
>
|
||||
<AppTextField
|
||||
v-model="email"
|
||||
type="email"
|
||||
label="Email"
|
||||
:rules="[requiredValidator, emailValidator]"
|
||||
/>
|
||||
</VCol>
|
||||
<VCol
|
||||
v-if="editedIndex == -1"
|
||||
cols="12"
|
||||
>
|
||||
<AppTextField
|
||||
v-model="password"
|
||||
type="password"
|
||||
label="Password"
|
||||
:rules="[requiredValidator]"
|
||||
/>
|
||||
</VCol>
|
||||
</VRow>
|
||||
</VContainer>
|
||||
</VCardText>
|
||||
|
||||
<VCardActions>
|
||||
<VSpacer />
|
||||
|
||||
<VBtn
|
||||
color="primary"
|
||||
variant="outlined"
|
||||
:disabled="editLoading"
|
||||
type="button"
|
||||
@click="close"
|
||||
>
|
||||
Cancel
|
||||
</VBtn>
|
||||
|
||||
<VBtn
|
||||
color="success"
|
||||
variant="elevated"
|
||||
:loading="editLoading"
|
||||
:disabled="editLoading"
|
||||
type="submit"
|
||||
>
|
||||
Save
|
||||
</VBtn>
|
||||
</VCardActions>
|
||||
</VForm>
|
||||
</VCard>
|
||||
</VDialog>
|
||||
|
||||
<!-- DIALOG DELETE -->
|
||||
<VDialog
|
||||
v-model="deleteDialog"
|
||||
max-width="500px"
|
||||
>
|
||||
<VCard>
|
||||
<VCardText>
|
||||
Are you sure you want to delete {{ editedItem.fullname }}?
|
||||
</VCardText>
|
||||
|
||||
<VCardActions>
|
||||
<VSpacer />
|
||||
|
||||
<VBtn
|
||||
color="primary"
|
||||
variant="outlined"
|
||||
:disabled="deleteLoading"
|
||||
type="button"
|
||||
@click="closeDelete"
|
||||
>
|
||||
Cancel
|
||||
</VBtn>
|
||||
|
||||
<VBtn
|
||||
color="error"
|
||||
variant="elevated"
|
||||
:loading="deleteLoading"
|
||||
:disabled="deleteLoading"
|
||||
@click="deleteItemConfirm"
|
||||
>
|
||||
Delete
|
||||
</VBtn>
|
||||
|
||||
<VSpacer />
|
||||
</VCardActions>
|
||||
</VCard>
|
||||
</VDialog>
|
||||
</div>
|
||||
</template>
|
||||
|
||||
<route lang="yaml">
|
||||
meta:
|
||||
requiresAuth: true
|
||||
allowedRoles: ['admin']
|
||||
</route>
|
||||
|
||||
@@ -0,0 +1,19 @@
|
||||
<template>
|
||||
<div>
|
||||
<VCard
|
||||
class="mb-6"
|
||||
title="Admin Page"
|
||||
>
|
||||
<VCardText>Admin</VCardText>
|
||||
<VCardText>
|
||||
Admin
|
||||
</VCardText>
|
||||
</VCard>
|
||||
</div>
|
||||
</template>
|
||||
|
||||
<route lang="yaml">
|
||||
meta:
|
||||
requiresAuth: true
|
||||
allowedRoles: ['admin']
|
||||
</route>
|
||||
@@ -0,0 +1,207 @@
|
||||
<script setup>
|
||||
import axiosIns from '@/plugins/axios'
|
||||
import { showToast } from '@/plugins/toast'
|
||||
import { useRoute, useRouter } from 'vue-router'
|
||||
import { VDataTable } from 'vuetify/labs/VDataTable'
|
||||
|
||||
const route = useRoute()
|
||||
const router = useRouter()
|
||||
|
||||
const search = ref('')
|
||||
const patient = ref({})
|
||||
const assignedDoctors = ref([])
|
||||
|
||||
const searchedAssignedDoctors = computed(() => {
|
||||
return assignedDoctors.value.filter(doctor => {
|
||||
return Object.values(doctor).some(value => {
|
||||
return String(value).toLowerCase().includes(search.value.toLowerCase())
|
||||
})
|
||||
})
|
||||
})
|
||||
|
||||
const details = [
|
||||
{
|
||||
icon: 'tabler-user',
|
||||
title: 'Fullname',
|
||||
key: 'fullname',
|
||||
},
|
||||
{
|
||||
icon: 'tabler-address-book',
|
||||
title: 'Address',
|
||||
key: 'address',
|
||||
},
|
||||
{
|
||||
icon: 'tabler-phone',
|
||||
title: 'Phone',
|
||||
key: 'phone',
|
||||
},
|
||||
{
|
||||
icon: 'tabler-phone',
|
||||
title: 'Emergency Phone',
|
||||
key: 'emergency_phone',
|
||||
},
|
||||
{
|
||||
icon: 'tabler-gender-bigender',
|
||||
title: 'Gender',
|
||||
key: 'gender',
|
||||
},
|
||||
{
|
||||
icon: 'tabler-123',
|
||||
title: 'Age',
|
||||
key: 'age',
|
||||
},
|
||||
{
|
||||
icon: 'tabler-activity-heartbeat',
|
||||
title: 'Condition',
|
||||
key: 'condition',
|
||||
},
|
||||
]
|
||||
|
||||
const selectedUnassignDoctors = ref([])
|
||||
|
||||
const headers = [
|
||||
{ title: 'Fullname', key: 'fullname' },
|
||||
{ title: 'Phone', key: 'phone' },
|
||||
]
|
||||
|
||||
const sortBy = ref([{ key: 'fullname', order: 'asc' }])
|
||||
|
||||
const unassignLoading = ref(false)
|
||||
|
||||
async function unassignDoctors() {
|
||||
if (selectedUnassignDoctors.value.length === 0) return
|
||||
|
||||
unassignLoading.value = true
|
||||
|
||||
await axiosIns.post('/api/v1/admin/unassign/doctor', {
|
||||
patient_id: route.params.id,
|
||||
doctor_ids: selectedUnassignDoctors.value,
|
||||
})
|
||||
.then (response => {
|
||||
showToast(response.data.message, 'success')
|
||||
})
|
||||
.catch(error => {
|
||||
showToast(error.response.data.error, 'error')
|
||||
})
|
||||
|
||||
selectedUnassignDoctors.value.forEach(doctorId => {
|
||||
const idx = assignedDoctors.value.findIndex(doctor => doctor.id === doctorId)
|
||||
|
||||
assignedDoctors.value.splice(idx, 1)
|
||||
})
|
||||
|
||||
selectedUnassignDoctors.value = []
|
||||
|
||||
unassignLoading.value = false
|
||||
}
|
||||
|
||||
const loading = ref(false)
|
||||
|
||||
onMounted(async () => {
|
||||
loading.value = true
|
||||
await axiosIns.get(`/api/v1/admin/patient/${route.params.id}`)
|
||||
.then(response => {
|
||||
patient.value = response.data.data
|
||||
assignedDoctors.value = response.data.data.doctors
|
||||
})
|
||||
.catch(error => {
|
||||
console.log(error)
|
||||
})
|
||||
loading.value = false
|
||||
})
|
||||
</script>
|
||||
|
||||
<template>
|
||||
<div>
|
||||
<VRow>
|
||||
<VCol cols="4">
|
||||
<VCard
|
||||
title="Patient Details"
|
||||
density="compact"
|
||||
:loading="loading"
|
||||
>
|
||||
<VCardText>
|
||||
<VList class="text-medium-emphasis">
|
||||
<VListItem
|
||||
v-for="detail in details"
|
||||
:key="detail.key"
|
||||
>
|
||||
<template #prepend>
|
||||
<VIcon
|
||||
:icon="detail.icon"
|
||||
size="32"
|
||||
start
|
||||
/>
|
||||
</template>
|
||||
<VListItemTitle>
|
||||
<span class="font-weight-light me-1">{{ detail.title }}</span>
|
||||
</VListItemTitle>
|
||||
<VListItemMedia>
|
||||
<span class="font-weight-medium me-1">{{ patient[detail.key] }}</span>
|
||||
</VListItemMedia>
|
||||
</VListItem>
|
||||
</VList>
|
||||
</VCardText>
|
||||
|
||||
<VCardActions>
|
||||
<VBtn
|
||||
color="primary"
|
||||
variant="elevated"
|
||||
block
|
||||
@click="router.back"
|
||||
>
|
||||
Back
|
||||
</VBtn>
|
||||
</VCardActions>
|
||||
</VCard>
|
||||
</VCol>
|
||||
<VCol>
|
||||
<VCard
|
||||
title="Doctors"
|
||||
density="compact"
|
||||
:loading="loading"
|
||||
>
|
||||
<VCardText>
|
||||
<AppTextField
|
||||
v-model="search"
|
||||
prepend-inner-icon="tabler-search"
|
||||
:append-inner-icon="search.length > 0 ? 'tabler-x' : null"
|
||||
placeholder="Search"
|
||||
class="mb-2"
|
||||
@click:append-inner="search=''"
|
||||
/>
|
||||
<VDataTable
|
||||
v-model="selectedUnassignDoctors"
|
||||
v-model:sort-by="sortBy"
|
||||
:headers="headers"
|
||||
:items="searchedAssignedDoctors"
|
||||
:items-per-page="10"
|
||||
show-select
|
||||
density="compact"
|
||||
>
|
||||
<template #footer.prepend>
|
||||
<VBtn
|
||||
color="primary"
|
||||
variant="elevated"
|
||||
:disabled="selectedUnassignDoctors.length === 0 || unassignLoading"
|
||||
:loading="unassignLoading"
|
||||
@click="unassignDoctors"
|
||||
>
|
||||
Unassign
|
||||
</VBtn>
|
||||
<VSpacer />
|
||||
</template>
|
||||
</VDataTable>
|
||||
</VCardText>
|
||||
</VCard>
|
||||
</VCol>
|
||||
</VRow>
|
||||
</div>
|
||||
</template>
|
||||
|
||||
<route lang="yaml">
|
||||
meta:
|
||||
requiresAuth: true
|
||||
allowedRoles: ['admin']
|
||||
</route>
|
||||
|
||||
@@ -0,0 +1,414 @@
|
||||
<script setup>
|
||||
import axiosIns from '@/plugins/axios'
|
||||
import { showToast } from '@/plugins/toast'
|
||||
import uDiagnose from '@/utils/diagnose'
|
||||
import { emailValidator, requiredValidator } from '@validators'
|
||||
import { onMounted } from 'vue'
|
||||
import { VDataTable } from 'vuetify/labs/VDataTable'
|
||||
|
||||
const editDialog = ref(false)
|
||||
const deleteDialog = ref(false)
|
||||
|
||||
const refForm = ref()
|
||||
|
||||
const defaultItem = ref({
|
||||
id: '',
|
||||
user_id: '',
|
||||
fullname: '',
|
||||
address: '',
|
||||
phone: '',
|
||||
emergency_phone: '',
|
||||
gender: '',
|
||||
age: '',
|
||||
condition: '',
|
||||
})
|
||||
|
||||
const email = ref('')
|
||||
const password = ref('')
|
||||
|
||||
const editedItem = ref(defaultItem.value)
|
||||
const editedIndex = ref(-1)
|
||||
|
||||
const headers = [
|
||||
{ title: 'Fullname', key: 'fullname' },
|
||||
{ title: 'Addres', key: 'address' },
|
||||
{ title: 'Phone', key: 'phone' },
|
||||
{ title: 'Emergency Phone', key: 'emergency_phone' },
|
||||
{ title: 'Gender', key: 'gender' },
|
||||
{ title: 'Age', key: 'age' },
|
||||
{ title: 'Condition', key: 'condition' },
|
||||
{ title: 'Actions', key: 'actions', sortable: false },
|
||||
]
|
||||
|
||||
const sortBy = ref([{ key: 'fullname', order: 'asc' }])
|
||||
|
||||
const search = ref('')
|
||||
const patients = ref([])
|
||||
|
||||
const searchedPatients = computed(() => {
|
||||
return patients.value.filter(patient => {
|
||||
return Object.values(patient).some(value => {
|
||||
return String(value).toLowerCase().includes(search.value.toLowerCase())
|
||||
})
|
||||
})
|
||||
})
|
||||
|
||||
const editLoading = ref(false)
|
||||
const deleteLoading = ref(false)
|
||||
|
||||
const editItemShow = item => {
|
||||
editedIndex.value = patients.value.indexOf(item)
|
||||
editedItem.value = { ...item }
|
||||
editDialog.value = true
|
||||
}
|
||||
|
||||
const deleteItemShow = item => {
|
||||
editedIndex.value = patients.value.indexOf(item)
|
||||
editedItem.value = { ...item }
|
||||
deleteDialog.value = true
|
||||
}
|
||||
|
||||
const addItemShow = () => {
|
||||
editedIndex.value = -1
|
||||
editedItem.value = { ...defaultItem.value }
|
||||
editDialog.value = true
|
||||
}
|
||||
|
||||
const close = () => {
|
||||
editDialog.value = false
|
||||
editedIndex.value = -1
|
||||
editedItem.value = { ...defaultItem.value }
|
||||
email.value = ''
|
||||
password.value = ''
|
||||
refForm.value.reset()
|
||||
}
|
||||
|
||||
const closeDelete = () => {
|
||||
deleteDialog.value = false
|
||||
editedIndex.value = -1
|
||||
editedItem.value = { ...defaultItem.value }
|
||||
email.value = ''
|
||||
password.value = ''
|
||||
}
|
||||
|
||||
const save = async () => {
|
||||
const validation = await refForm.value.validate()
|
||||
if (!validation.valid) return
|
||||
|
||||
editLoading.value = true
|
||||
|
||||
if (editedIndex.value > -1) {
|
||||
await axiosIns.put(`/api/v1/admin/patient/${editedItem.value.id}`, editedItem.value)
|
||||
.then (response => {
|
||||
showToast(response.data.message, 'success')
|
||||
})
|
||||
.catch(error => {
|
||||
showToast(error.response.data.error, 'error')
|
||||
})
|
||||
} else {
|
||||
await axiosIns.post('/api/v1/admin/patient', {
|
||||
...editedItem.value,
|
||||
email: email.value,
|
||||
password: password.value,
|
||||
})
|
||||
.then (response => {
|
||||
showToast(response.data.message, 'success')
|
||||
})
|
||||
.catch(error => {
|
||||
showToast(error.response.data.error, 'error')
|
||||
})
|
||||
}
|
||||
await loadPatients()
|
||||
editLoading.value = false
|
||||
close()
|
||||
}
|
||||
|
||||
const deleteItemConfirm = async () => {
|
||||
deleteLoading.value = true
|
||||
await axiosIns.delete(`/api/v1/admin/patient/${editedItem.value.id}`)
|
||||
.then (response => {
|
||||
showToast(response.data.message, 'success')
|
||||
})
|
||||
.catch(error => {
|
||||
showToast(error.response.data.error, 'error')
|
||||
})
|
||||
await loadPatients()
|
||||
deleteLoading.value = false
|
||||
closeDelete()
|
||||
}
|
||||
|
||||
const loading = ref(false)
|
||||
|
||||
const loadPatients = async () => {
|
||||
loading.value = true
|
||||
await axiosIns.get('/api/v1/admin/patient')
|
||||
.then(response => {
|
||||
patients.value = response.data.data
|
||||
})
|
||||
.catch(error => {
|
||||
console.log(error)
|
||||
})
|
||||
loading.value = false
|
||||
}
|
||||
|
||||
onMounted(loadPatients)
|
||||
</script>
|
||||
|
||||
<template>
|
||||
<div>
|
||||
<VCard
|
||||
title="Patient"
|
||||
:loading="loading"
|
||||
>
|
||||
<template #append>
|
||||
<div>
|
||||
<VBtn
|
||||
color="primary"
|
||||
@click="addItemShow"
|
||||
>
|
||||
Add Patient
|
||||
<VIcon
|
||||
end
|
||||
icon="tabler-plus"
|
||||
/>
|
||||
</VBtn>
|
||||
</div>
|
||||
</template>
|
||||
<VCardText density="compact">
|
||||
<AppTextField
|
||||
v-model="search"
|
||||
prepend-inner-icon="tabler-search"
|
||||
:append-inner-icon="search.length > 0 ? 'tabler-x' : null"
|
||||
placeholder="Search"
|
||||
class="mb-2"
|
||||
@click:append-inner="search=''"
|
||||
/>
|
||||
<VDataTable
|
||||
v-model:sort-by="sortBy"
|
||||
:headers="headers"
|
||||
:items="searchedPatients"
|
||||
:items-per-page="10"
|
||||
density="compact"
|
||||
>
|
||||
<template #item.condition="{ item }">
|
||||
<VChip
|
||||
:color="uDiagnose.color(item.raw.condition)"
|
||||
label
|
||||
variant="elevated"
|
||||
>
|
||||
{{ uDiagnose.text(item.raw.condition) }}
|
||||
</VChip>
|
||||
</template>
|
||||
|
||||
<template #item.actions="{ item }">
|
||||
<div class="d-flex gap-1">
|
||||
<RouterLink :to="`/admin/patient/${item.raw.id}`">
|
||||
<IconBtn>
|
||||
<VIcon
|
||||
icon="mdi-information-outline"
|
||||
color="primary"
|
||||
/>
|
||||
</IconBtn>
|
||||
</RouterLink>
|
||||
<IconBtn @click="editItemShow(item.raw)">
|
||||
<VIcon
|
||||
icon="mdi-pencil-outline"
|
||||
color="primary"
|
||||
/>
|
||||
</IconBtn>
|
||||
<IconBtn @click="deleteItemShow(item.raw)">
|
||||
<VIcon
|
||||
icon="mdi-delete-outline"
|
||||
color="error"
|
||||
/>
|
||||
</IconBtn>
|
||||
</div>
|
||||
</template>
|
||||
</VDataTable>
|
||||
</VCardText>
|
||||
</VCard>
|
||||
|
||||
<!-- DIALOG EDIT -->
|
||||
<VDialog
|
||||
v-model="editDialog"
|
||||
max-width="600px"
|
||||
persistent
|
||||
>
|
||||
<VCard>
|
||||
<VForm
|
||||
ref="refForm"
|
||||
@submit.prevent="save"
|
||||
>
|
||||
<VCardTitle>
|
||||
<span class="headline">
|
||||
{{ editedIndex > -1 ? "Edit Patient" : "Add Patient" }}
|
||||
</span>
|
||||
</VCardTitle>
|
||||
<VCardText>
|
||||
<VContainer>
|
||||
<VRow dense>
|
||||
<VCol cols="12">
|
||||
<AppTextField
|
||||
v-model="editedItem.fullname"
|
||||
label="Fullname"
|
||||
:rules="[requiredValidator]"
|
||||
/>
|
||||
</VCol>
|
||||
<VCol cols="12">
|
||||
<AppTextarea
|
||||
v-model="editedItem.address"
|
||||
label="Address"
|
||||
rows="2"
|
||||
auto-grow
|
||||
:rules="[requiredValidator]"
|
||||
/>
|
||||
</VCol>
|
||||
<VCol cols="6">
|
||||
<AppTextField
|
||||
v-model="editedItem.phone"
|
||||
label="Phone"
|
||||
:rules="[requiredValidator]"
|
||||
/>
|
||||
</VCol>
|
||||
<VCol cols="6">
|
||||
<AppTextField
|
||||
v-model="editedItem.emergency_phone"
|
||||
label="Emergency Phone"
|
||||
:rules="[requiredValidator]"
|
||||
/>
|
||||
</VCol>
|
||||
<VCol cols="6">
|
||||
<AppSelect
|
||||
v-model="editedItem.gender"
|
||||
:items="['male', 'female']"
|
||||
label="Gender"
|
||||
density="compact"
|
||||
:rules="[requiredValidator]"
|
||||
/>
|
||||
</VCol>
|
||||
<VCol cols="6">
|
||||
<AppTextField
|
||||
v-model="editedItem.age"
|
||||
type="number"
|
||||
label="Age"
|
||||
:rules="[requiredValidator]"
|
||||
/>
|
||||
</VCol>
|
||||
<VCol :cols="editedIndex == -1 ? '6' : '12'">
|
||||
<AppSelect
|
||||
v-model="editedItem.condition"
|
||||
:items="['normal', 'mi']"
|
||||
label="Condition"
|
||||
density="compact"
|
||||
:rules="[requiredValidator]"
|
||||
/>
|
||||
</VCol>
|
||||
<!-- FIELD FOR NEW ITEM -->
|
||||
<VCol
|
||||
v-if="editedIndex == -1"
|
||||
cols="6"
|
||||
>
|
||||
<AppTextField
|
||||
v-model="editedItem.device_id"
|
||||
label="Device ID"
|
||||
:rules="[requiredValidator]"
|
||||
/>
|
||||
</VCol>
|
||||
<VCol
|
||||
v-if="editedIndex == -1"
|
||||
cols="12"
|
||||
>
|
||||
<AppTextField
|
||||
v-model="email"
|
||||
type="email"
|
||||
label="Email"
|
||||
:rules="[requiredValidator, emailValidator]"
|
||||
/>
|
||||
</VCol>
|
||||
<VCol
|
||||
v-if="editedIndex == -1"
|
||||
cols="12"
|
||||
>
|
||||
<AppTextField
|
||||
v-model="password"
|
||||
type="password"
|
||||
label="Password"
|
||||
:rules="[requiredValidator]"
|
||||
/>
|
||||
</VCol>
|
||||
</VRow>
|
||||
</VContainer>
|
||||
</VCardText>
|
||||
|
||||
<VCardActions>
|
||||
<VSpacer />
|
||||
|
||||
<VBtn
|
||||
color="primary"
|
||||
variant="outlined"
|
||||
:disabled="editLoading"
|
||||
type="button"
|
||||
@click="close"
|
||||
>
|
||||
Cancel
|
||||
</VBtn>
|
||||
|
||||
<VBtn
|
||||
color="success"
|
||||
variant="elevated"
|
||||
:loading="editLoading"
|
||||
:disabled="editLoading"
|
||||
type="submit"
|
||||
>
|
||||
Save
|
||||
</VBtn>
|
||||
</VCardActions>
|
||||
</VForm>
|
||||
</VCard>
|
||||
</VDialog>
|
||||
|
||||
<!-- DIALOG DELETE -->
|
||||
<VDialog
|
||||
v-model="deleteDialog"
|
||||
max-width="500px"
|
||||
>
|
||||
<VCard>
|
||||
<VCardText>
|
||||
Are you sure you want to delete {{ editedItem.fullname }}?
|
||||
</VCardText>
|
||||
|
||||
<VCardActions>
|
||||
<VSpacer />
|
||||
|
||||
<VBtn
|
||||
color="primary"
|
||||
variant="outlined"
|
||||
:disabled="deleteLoading"
|
||||
@click="closeDelete"
|
||||
>
|
||||
Cancel
|
||||
</VBtn>
|
||||
|
||||
<VBtn
|
||||
color="error"
|
||||
variant="elevated"
|
||||
:loading="deleteLoading"
|
||||
:disabled="deleteLoading"
|
||||
@click="deleteItemConfirm"
|
||||
>
|
||||
Delete
|
||||
</VBtn>
|
||||
|
||||
<VSpacer />
|
||||
</VCardActions>
|
||||
</VCard>
|
||||
</VDialog>
|
||||
</div>
|
||||
</template>
|
||||
|
||||
<route lang="yaml">
|
||||
meta:
|
||||
requiresAuth: true
|
||||
allowedRoles: ['admin']
|
||||
</route>
|
||||
|
||||
Reference in New Issue
Block a user