83 lines
2.5 KiB
JavaScript
83 lines
2.5 KiB
JavaScript
// 1 => LOADING
|
|
// 2 => DONE
|
|
// 3 => ERROR
|
|
import * as api from "../api/patient.js"
|
|
window.api = api
|
|
|
|
export default {
|
|
namespaced: true,
|
|
state: {
|
|
noreg:'',
|
|
search: '',
|
|
search_status:0,
|
|
search_error_message:'',
|
|
search_dialog_is_active: false,
|
|
patients: [],
|
|
total_patient: 0,
|
|
total_display: 0,
|
|
selected_patient: {},
|
|
},
|
|
mutations: {
|
|
update_search_dialog_is_active(state,status) {
|
|
state.search_dialog_is_active = status
|
|
},
|
|
update_search_error_message(state,status) {
|
|
state.search_error_message = status
|
|
},
|
|
update_noreg(state,val) {
|
|
state.noreg=val
|
|
},
|
|
update_search(state,val) {
|
|
state.search=val
|
|
},
|
|
update_search_status(state,status) {
|
|
state.search_status = status
|
|
},
|
|
update_patients(state,data) {
|
|
state.patients= data.records
|
|
state.total_patient = data.total
|
|
state.total_display = data.total_display
|
|
},
|
|
update_selected_patient(state,val) {
|
|
var now = moment(new Date())
|
|
var dob = moment(new Date(val.M_PatientDOB))
|
|
var year = now.diff(dob,'years')
|
|
dob.add(year,'years')
|
|
var month = now.diff(dob,'months')
|
|
dob.add(month,'months')
|
|
var day = now.diff(dob,'days')
|
|
if (isNaN(year)) val.patient_age = ''
|
|
else val.patient_age = `${year} tahun ${month} bulan ${day} hari`
|
|
|
|
state.selected_patient=val
|
|
// store.state.patientaddress.patient_id = val.M_PatientID
|
|
}
|
|
},
|
|
actions: {
|
|
async search(context,prm) {
|
|
context.commit("update_search_status",1)
|
|
try {
|
|
let resp= await api.search(context.state.noreg,context.state.search)
|
|
if (resp.status != "OK") {
|
|
context.commit("update_search_status",3)
|
|
context.commit("update_search_error_message",resp.message)
|
|
} else {
|
|
context.commit("update_search_status",2)
|
|
context.commit("update_search_error_message","")
|
|
let data = {
|
|
records : resp.data.records,
|
|
total: resp.data.total,
|
|
total_display: resp.data.total_display
|
|
}
|
|
context.commit("update_patients",data)
|
|
|
|
// commit("patientaddress/test", "X", { root: true })
|
|
}
|
|
} catch(e) {
|
|
context.commit("update_search_status",3)
|
|
context.commit("update_search_error_message",e.message )
|
|
}
|
|
}
|
|
}
|
|
}
|