mirror of
				https://github.com/crater-invoice/crater.git
				synced 2025-10-28 12:11:08 -04:00 
			
		
		
		
	
		
			
				
	
	
		
			27 lines
		
	
	
		
			1.2 KiB
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
			
		
		
	
	
			27 lines
		
	
	
		
			1.2 KiB
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
| import * as types from './mutation-types'
 | |
| import * as currencyTypes from './modules/currency/mutation-types'
 | |
| import * as userTypes from './modules/user/mutation-types'
 | |
| import * as companyTypes from './modules/company/mutation-types'
 | |
| import * as preferencesTypes from './modules/settings/preferences/mutation-types'
 | |
| import * as taxTypeTypes from './modules/tax-type/mutation-types'
 | |
| 
 | |
| export default {
 | |
|   bootstrap ({ commit, dispatch, state }) {
 | |
|     return new Promise((resolve, reject) => {
 | |
|       window.axios.get('/api/bootstrap').then((response) => {
 | |
|         commit('currency/' + currencyTypes.BOOTSTRAP_CURRENCIES, response.data)
 | |
|         commit('currency/' + currencyTypes.SET_DEFAULT_CURRENCY, response.data)
 | |
|         commit('user/' + userTypes.BOOTSTRAP_CURRENT_USER, response.data.user)
 | |
|         commit('company/' + companyTypes.BOOTSTRAP_COMPANIES, response.data.companies)
 | |
|         commit('taxType/' + taxTypeTypes.BOOTSTRAP_TAX_TYPES, response.data.taxTypes)
 | |
|         commit('preferences/' + preferencesTypes.SET_MOMENT_DATE_FORMAT, response.data.moment_date_format)
 | |
| 
 | |
|         commit(types.UPDATE_APP_LOADING_STATUS, true)
 | |
|         resolve(response)
 | |
|       }).catch((err) => {
 | |
|         reject(err)
 | |
|       })
 | |
|     })
 | |
|   }
 | |
| }
 |