/** * Process Getters * @author Edwin Betancourt */ export default { /** * Running processes that have not received a response from the server * @param {string} containerUuid */ getInExecution: (state) => (containerUuid) => { return state.inExecution.find(item => item.containerUuid === containerUuid) }, /** * Process for send to server, or send without response */ getAllInExecution: (state) => { return state.inExecution }, /** * Process send to server, with response from server */ getAllFinishProcess: (state) => { return state.process }, getNotificationProcess: (state) => { return state.notificationProcess }, /** * Process receibed from server associated whith this session */ getAllSessionProcess: (state) => { return state.sessionProcess }, /** * Process request metadata from server filter form uuid process */ getInRequestMetadata: (state) => (containerUuid) => { return state.inRequestMetadata.find(item => item === containerUuid) }, getProcessResult: (state) => { return state.reportObject }, getCachedReport: (state) => (instanceUuid) => { return state.reportList.find( item => item.instanceUuid === instanceUuid ) } }