You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
30 lines
833 B
30 lines
833 B
import api from '../api'; |
|
import { importFetchedAccount } from './importer'; |
|
|
|
export const SERVER_FETCH_REQUEST = 'Server_FETCH_REQUEST'; |
|
export const SERVER_FETCH_SUCCESS = 'Server_FETCH_SUCCESS'; |
|
export const SERVER_FETCH_FAIL = 'Server_FETCH_FAIL'; |
|
|
|
export const fetchServer = () => (dispatch, getState) => { |
|
dispatch(fetchServerRequest()); |
|
|
|
api(getState) |
|
.get('/api/v2/instance').then(({ data }) => { |
|
if (data.contact.account) dispatch(importFetchedAccount(data.contact.account)); |
|
dispatch(fetchServerSuccess(data)); |
|
}).catch(err => dispatch(fetchServerFail(err))); |
|
}; |
|
|
|
const fetchServerRequest = () => ({ |
|
type: SERVER_FETCH_REQUEST, |
|
}); |
|
|
|
const fetchServerSuccess = server => ({ |
|
type: SERVER_FETCH_SUCCESS, |
|
server, |
|
}); |
|
|
|
const fetchServerFail = error => ({ |
|
type: SERVER_FETCH_FAIL, |
|
error, |
|
});
|
|
|