mirror of
				https://github.com/crater-invoice/crater.git
				synced 2025-10-30 21:21:09 -04:00 
			
		
		
		
	
		
			
				
	
	
		
			26 lines
		
	
	
		
			712 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
			
		
		
	
	
			26 lines
		
	
	
		
			712 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
| 
 | |
| import * as types from './mutation-types'
 | |
| 
 | |
| export const loadData = ({ commit, dispatch, state }, params) => {
 | |
|   return new Promise((resolve, reject) => {
 | |
|     window.axios.get(`/api/dashboard`, { params }).then((response) => {
 | |
|       commit(types.SET_INITIAL_DATA, response.data)
 | |
|       commit(types.GET_INITIAL_DATA, true)
 | |
|       resolve(response)
 | |
|     }).catch((err) => {
 | |
|       reject(err)
 | |
|     })
 | |
|   })
 | |
| }
 | |
| 
 | |
| export const getChart = ({ commit, dispatch, state }) => {
 | |
|   return new Promise((resolve, reject) => {
 | |
|     window.axios.get(`/api/dashboard/expense/chart`).then((response) => {
 | |
|       commit(types.SET_INITIAL_DATA, response.data)
 | |
|       resolve(response)
 | |
|     }).catch((err) => {
 | |
|       reject(err)
 | |
|     })
 | |
|   })
 | |
| }
 |