commit
3420273691
@ -8,5 +8,8 @@
|
|||||||
"config": "webpack.dev.js"
|
"config": "webpack.dev.js"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
},
|
||||||
|
"globals": {
|
||||||
|
"CMS_ENV": true
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
61
src/actions/__tests__/config.spec.js
Normal file
61
src/actions/__tests__/config.spec.js
Normal file
@ -0,0 +1,61 @@
|
|||||||
|
import * as config from '../config';
|
||||||
|
|
||||||
|
describe('config', () => {
|
||||||
|
describe('applyDefaults', () => {
|
||||||
|
it('should throw if media_folder is not defined in config', () => {
|
||||||
|
expect(() => {
|
||||||
|
config.applyDefaults({ foo: 'bar' });
|
||||||
|
}).toThrowError('Config: `media_folder` setting could not be found in config.');
|
||||||
|
});
|
||||||
|
|
||||||
|
it('should set publish_mode if not set', () => {
|
||||||
|
expect(config.applyDefaults({
|
||||||
|
foo: 'bar',
|
||||||
|
media_folder: 'path/to/media',
|
||||||
|
})).toEqual({
|
||||||
|
foo: 'bar',
|
||||||
|
publish_mode: 'simple',
|
||||||
|
media_folder: 'path/to/media',
|
||||||
|
public_folder: '/path/to/media',
|
||||||
|
});
|
||||||
|
});
|
||||||
|
|
||||||
|
it('should set publish_mode from config', () => {
|
||||||
|
expect(config.applyDefaults({
|
||||||
|
foo: 'bar',
|
||||||
|
publish_mode: 'complex',
|
||||||
|
media_folder: 'path/to/media',
|
||||||
|
})).toEqual({
|
||||||
|
foo: 'bar',
|
||||||
|
publish_mode: 'complex',
|
||||||
|
media_folder: 'path/to/media',
|
||||||
|
public_folder: '/path/to/media',
|
||||||
|
});
|
||||||
|
});
|
||||||
|
|
||||||
|
it('should set public_folder based on media_folder if not set', () => {
|
||||||
|
expect(config.applyDefaults({
|
||||||
|
foo: 'bar',
|
||||||
|
media_folder: 'path/to/media',
|
||||||
|
})).toEqual({
|
||||||
|
foo: 'bar',
|
||||||
|
publish_mode: 'simple',
|
||||||
|
media_folder: 'path/to/media',
|
||||||
|
public_folder: '/path/to/media',
|
||||||
|
});
|
||||||
|
});
|
||||||
|
|
||||||
|
it('should not overwrite public_folder if set', () => {
|
||||||
|
expect(config.applyDefaults({
|
||||||
|
foo: 'bar',
|
||||||
|
media_folder: 'path/to/media',
|
||||||
|
public_folder: '/publib/path',
|
||||||
|
})).toEqual({
|
||||||
|
foo: 'bar',
|
||||||
|
publish_mode: 'simple',
|
||||||
|
media_folder: 'path/to/media',
|
||||||
|
public_folder: '/publib/path',
|
||||||
|
});
|
||||||
|
});
|
||||||
|
});
|
||||||
|
});
|
@ -1,22 +1,56 @@
|
|||||||
import yaml from 'js-yaml';
|
import yaml from 'js-yaml';
|
||||||
|
import { set, defaultsDeep } from 'lodash';
|
||||||
import { currentBackend } from '../backends/backend';
|
import { currentBackend } from '../backends/backend';
|
||||||
import { authenticate } from '../actions/auth';
|
import { authenticate } from '../actions/auth';
|
||||||
import * as MediaProxy from '../valueObjects/MediaProxy';
|
import * as MediaProxy from '../valueObjects/MediaProxy';
|
||||||
|
import * as publishModes from '../constants/publishModes';
|
||||||
|
|
||||||
export const CONFIG_REQUEST = 'CONFIG_REQUEST';
|
export const CONFIG_REQUEST = 'CONFIG_REQUEST';
|
||||||
export const CONFIG_SUCCESS = 'CONFIG_SUCCESS';
|
export const CONFIG_SUCCESS = 'CONFIG_SUCCESS';
|
||||||
export const CONFIG_FAILURE = 'CONFIG_FAILURE';
|
export const CONFIG_FAILURE = 'CONFIG_FAILURE';
|
||||||
|
|
||||||
|
const defaults = {
|
||||||
|
publish_mode: publishModes.SIMPLE,
|
||||||
|
};
|
||||||
|
|
||||||
|
export function applyDefaults(config) {
|
||||||
|
if (!('media_folder' in config)) {
|
||||||
|
throw new Error('Config: `media_folder` setting could not be found in config.');
|
||||||
|
}
|
||||||
|
|
||||||
|
// Make sure there is a public folder
|
||||||
|
set(defaults,
|
||||||
|
'public_folder',
|
||||||
|
config.media_folder.charAt(0) === '/' ? config.media_folder : `/${ config.media_folder }`);
|
||||||
|
|
||||||
|
return defaultsDeep(config, defaults);
|
||||||
|
}
|
||||||
|
|
||||||
|
function parseConfig(data) {
|
||||||
|
const config = yaml.safeLoad(data);
|
||||||
|
if (typeof CMS_ENV === 'string' && config[CMS_ENV]) {
|
||||||
|
// TODO: Add tests and refactor
|
||||||
|
for (const key in config[CMS_ENV]) { // eslint-disable-line no-restricted-syntax
|
||||||
|
if (config[CMS_ENV].hasOwnProperty(key)) { // eslint-disable-line no-prototype-builtins
|
||||||
|
config[key] = config[CMS_ENV][key];
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
return config;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
export function configLoaded(config) {
|
export function configLoaded(config) {
|
||||||
return {
|
return {
|
||||||
type: CONFIG_SUCCESS,
|
type: CONFIG_SUCCESS,
|
||||||
payload: config
|
payload: config,
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
||||||
export function configLoading() {
|
export function configLoading() {
|
||||||
return {
|
return {
|
||||||
type: CONFIG_REQUEST
|
type: CONFIG_REQUEST,
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -24,7 +58,7 @@ export function configFailed(err) {
|
|||||||
return {
|
return {
|
||||||
type: CONFIG_FAILURE,
|
type: CONFIG_FAILURE,
|
||||||
error: 'Error loading config',
|
error: 'Error loading config',
|
||||||
payload: err
|
payload: err,
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -35,40 +69,30 @@ export function configDidLoad(config) {
|
|||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
||||||
|
export function loadConfig() {
|
||||||
export function loadConfig(config) {
|
|
||||||
if (window.CMS_CONFIG) {
|
if (window.CMS_CONFIG) {
|
||||||
return configDidLoad(window.CMS_CONFIG);
|
return configDidLoad(window.CMS_CONFIG);
|
||||||
}
|
}
|
||||||
return (dispatch, getState) => {
|
return (dispatch) => {
|
||||||
dispatch(configLoading());
|
dispatch(configLoading());
|
||||||
|
|
||||||
fetch('config.yml').then((response) => {
|
fetch('config.yml').then((response) => {
|
||||||
if (response.status !== 200) {
|
if (response.status !== 200) {
|
||||||
throw `Failed to load config.yml (${response.status})`;
|
throw new Error(`Failed to load config.yml (${ response.status })`);
|
||||||
}
|
}
|
||||||
|
|
||||||
response.text().then(parseConfig).then((config) => {
|
response
|
||||||
dispatch(configDidLoad(config));
|
.text()
|
||||||
const backend = currentBackend(config);
|
.then(parseConfig)
|
||||||
const user = backend && backend.currentUser();
|
.then(applyDefaults)
|
||||||
user && dispatch(authenticate(user));
|
.then((config) => {
|
||||||
});
|
dispatch(configDidLoad(config));
|
||||||
|
const backend = currentBackend(config);
|
||||||
|
const user = backend && backend.currentUser();
|
||||||
|
if (user) dispatch(authenticate(user));
|
||||||
|
});
|
||||||
}).catch((err) => {
|
}).catch((err) => {
|
||||||
dispatch(configFailed(err));
|
dispatch(configFailed(err));
|
||||||
});
|
});
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
||||||
function parseConfig(data) {
|
|
||||||
const config = yaml.safeLoad(data);
|
|
||||||
if (typeof CMS_ENV === 'string' && config[CMS_ENV]) {
|
|
||||||
for (var key in config[CMS_ENV]) {
|
|
||||||
if (config[CMS_ENV].hasOwnProperty(key)) {
|
|
||||||
config[key] = config[CMS_ENV][key];
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
return config;
|
|
||||||
}
|
|
||||||
|
@ -13,12 +13,23 @@ describe('collections', () => {
|
|||||||
|
|
||||||
it('should load the collections from the config', () => {
|
it('should load the collections from the config', () => {
|
||||||
expect(
|
expect(
|
||||||
collections(undefined, configLoaded({ collections: [
|
collections(undefined, configLoaded({
|
||||||
{ name: 'posts', folder: '_posts', fields: [{ name: 'title', widget: 'string' }] },
|
collections: [
|
||||||
] }))
|
{
|
||||||
|
name: 'posts',
|
||||||
|
folder: '_posts',
|
||||||
|
fields: [{ name: 'title', widget: 'string' }],
|
||||||
|
},
|
||||||
|
],
|
||||||
|
}))
|
||||||
).toEqual(
|
).toEqual(
|
||||||
OrderedMap({
|
OrderedMap({
|
||||||
posts: fromJS({ name: 'posts', folder: '_posts', fields: [{ name: 'title', widget: 'string' }] }),
|
posts: fromJS({
|
||||||
|
name: 'posts',
|
||||||
|
folder: '_posts',
|
||||||
|
fields: [{ name: 'title', widget: 'string' }],
|
||||||
|
type: 'folder_based_collection',
|
||||||
|
}),
|
||||||
})
|
})
|
||||||
);
|
);
|
||||||
});
|
});
|
||||||
|
@ -1,28 +1,12 @@
|
|||||||
import Immutable from 'immutable';
|
import Immutable from 'immutable';
|
||||||
import _ from 'lodash';
|
|
||||||
import * as publishModes from '../constants/publishModes';
|
|
||||||
import { CONFIG_REQUEST, CONFIG_SUCCESS, CONFIG_FAILURE } from '../actions/config';
|
import { CONFIG_REQUEST, CONFIG_SUCCESS, CONFIG_FAILURE } from '../actions/config';
|
||||||
|
|
||||||
const defaults = {
|
|
||||||
publish_mode: publishModes.SIMPLE
|
|
||||||
};
|
|
||||||
|
|
||||||
const applyDefaults = (config) => {
|
|
||||||
// Make sure there is a public folder
|
|
||||||
_.set(defaults,
|
|
||||||
'public_folder',
|
|
||||||
config.media_folder.charAt(0) === '/' ? config.media_folder : '/' + config.media_folder);
|
|
||||||
|
|
||||||
return _.defaultsDeep(config, defaults);
|
|
||||||
};
|
|
||||||
|
|
||||||
const config = (state = null, action) => {
|
const config = (state = null, action) => {
|
||||||
switch (action.type) {
|
switch (action.type) {
|
||||||
case CONFIG_REQUEST:
|
case CONFIG_REQUEST:
|
||||||
return Immutable.Map({ isFetching: true });
|
return Immutable.Map({ isFetching: true });
|
||||||
case CONFIG_SUCCESS:
|
case CONFIG_SUCCESS:
|
||||||
const config = applyDefaults(action.payload);
|
return Immutable.fromJS(action.payload);
|
||||||
return Immutable.fromJS(config);
|
|
||||||
case CONFIG_FAILURE:
|
case CONFIG_FAILURE:
|
||||||
return Immutable.Map({ error: action.payload.toString() });
|
return Immutable.Map({ error: action.payload.toString() });
|
||||||
default:
|
default:
|
||||||
|
Loading…
x
Reference in New Issue
Block a user