mirror of
https://github.com/ascribe/onion.git
synced 2024-12-22 17:33:14 +01:00
33 lines
820 B
JavaScript
33 lines
820 B
JavaScript
'use strict';
|
|
|
|
import request from '../utils/request';
|
|
import WhitelabelActions from '../actions/whitelabel_actions';
|
|
|
|
import { getCurrentSubdomain } from '../utils/url';
|
|
|
|
|
|
const WhitelabelSource = {
|
|
lookupWhitelabel: {
|
|
remote() {
|
|
return request('whitelabel_settings', {
|
|
urlTemplateSpec: {
|
|
subdomain: getCurrentSubdomain()
|
|
}
|
|
});
|
|
},
|
|
|
|
local(state) {
|
|
return Object.keys(state.whitelabel).length ? state : {};
|
|
},
|
|
|
|
success: WhitelabelActions.successFetchWhitelabel,
|
|
error: WhitelabelActions.errorWhitelabel,
|
|
|
|
shouldFetch(state, invalidateCache) {
|
|
return invalidateCache || !Object.keys(state.whitelabel).length;
|
|
}
|
|
}
|
|
};
|
|
|
|
export default WhitelabelSource;
|