Skip to content

Commit fc9e028

Browse files
authored
bugfix(case/ui): some escalate dialog resources never exit load state (#5021)
1 parent 2254dd1 commit fc9e028

File tree

2 files changed

+34
-10
lines changed

2 files changed

+34
-10
lines changed

src/dispatch/static/dispatch/src/case/EscalateDialog.vue

+24-1
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,9 @@ export default {
4747
name: "CaseEscalateDialog",
4848
4949
data() {
50-
return {}
50+
return {
51+
isIncidentDataLoaded: false,
52+
}
5153
},
5254
5355
components: {
@@ -83,6 +85,27 @@ export default {
8385
methods: {
8486
...mapActions("case_management", ["getDetails", "closeEscalateDialog", "escalate"]),
8587
...mapActions("incident", ["report", "resetSelected"]),
88+
89+
async handleEscalate(incident) {
90+
try {
91+
this.loading = true
92+
const incidentData = await this.escalate(incident)
93+
this.$store.commit("incident/SET_SELECTED", incidentData)
94+
this.isIncidentDataLoaded = true
95+
} catch (error) {
96+
console.error("Error escalating case:", error)
97+
this.$store.commit(
98+
"notification_backend/addBeNotification",
99+
{
100+
text: `Failed to escalate case.`,
101+
type: "exception",
102+
},
103+
{ root: true }
104+
)
105+
} finally {
106+
this.loading = false
107+
}
108+
},
86109
},
87110
88111
created() {

src/dispatch/static/dispatch/src/case/store.js

+10-9
Original file line numberDiff line numberDiff line change
@@ -240,16 +240,17 @@ const actions = {
240240
return CaseApi.escalate(state.selected.id, payload).then((response) => {
241241
commit("incident/SET_SELECTED", response.data, { root: true })
242242
commit("SET_SELECTED_LOADING", false)
243-
var interval = setInterval(function () {
244-
if (state.selected.id) {
245-
dispatch("incident/get", response.data.id, { root: true })
246-
}
247243

248-
// TODO this is fragile but we don't set anything as "created"
249-
if (state.selected.storage) {
250-
clearInterval(interval)
251-
}
252-
}, 5000)
244+
return new Promise((resolve) => {
245+
const interval = setInterval(() => {
246+
dispatch("incident/get", response.data.id, { root: true }).then((incidentData) => {
247+
if (incidentData.conversation && incidentData.storage && incidentData.documents) {
248+
clearInterval(interval)
249+
resolve(incidentData)
250+
}
251+
})
252+
}, 5000)
253+
})
253254
})
254255
},
255256
report({ commit, dispatch }) {

0 commit comments

Comments
 (0)