Merge branch 'react-pr' of https://github.com/netlify/netlify-cms into react-pr

This commit is contained in:
Cássio Zen 2016-09-13 14:31:26 -03:00
commit 4108b88315
24 changed files with 193 additions and 124 deletions

View File

@ -4,13 +4,23 @@
"description": "Netlify CMS lets content editors work on structured content stored in git", "description": "Netlify CMS lets content editors work on structured content stored in git",
"main": "index.js", "main": "index.js",
"scripts": { "scripts": {
"start": "webpack-dev-server -d --inline --config webpack.config.js", "start": "webpack-dev-server --config webpack.config.js",
"test": "NODE_ENV=test mocha --recursive --compilers js:babel-register --require ./test/setup.js", "test": "NODE_ENV=test mocha --recursive --compilers js:babel-register --require ./test/setup.js",
"test:watch": "npm test -- --watch", "test:watch": "npm test -- --watch",
"build": "webpack --config webpack.config.js", "build": "webpack --config webpack.config.js",
"storybook": "start-storybook -p 9001", "storybook": "start-storybook -p 9001",
"storybook-build": "build-storybook -o dist" "storybook-build": "build-storybook -o dist",
"lint": "eslint .",
"lint:fix": "npm run lint -- --fix",
"lint:staged": "lint-staged"
}, },
"lint-staged": {
"*.@(js|jsx)": [
"eslint --fix",
"git add"
]
},
"pre-commit": "lint:staged",
"keywords": [ "keywords": [
"netlify", "netlify",
"cms" "cms"
@ -21,7 +31,7 @@
"@kadira/storybook": "^1.36.0", "@kadira/storybook": "^1.36.0",
"autoprefixer": "^6.3.3", "autoprefixer": "^6.3.3",
"babel-core": "^6.5.1", "babel-core": "^6.5.1",
"babel-eslint": "^4.1.8", "babel-eslint": "^6.1.2",
"babel-loader": "^6.2.2", "babel-loader": "^6.2.2",
"babel-plugin-lodash": "^3.2.0", "babel-plugin-lodash": "^3.2.0",
"babel-plugin-transform-class-properties": "^6.5.2", "babel-plugin-transform-class-properties": "^6.5.2",
@ -32,24 +42,24 @@
"babel-register": "^6.5.2", "babel-register": "^6.5.2",
"babel-runtime": "^6.5.0", "babel-runtime": "^6.5.0",
"css-loader": "^0.23.1", "css-loader": "^0.23.1",
"eslint": "^1.10.3", "eslint": "^3.5.0",
"eslint-loader": "^1.2.1",
"eslint-plugin-react": "^5.1.1", "eslint-plugin-react": "^5.1.1",
"exports-loader": "^0.6.3", "exports-loader": "^0.6.3",
"extract-text-webpack-plugin": "^1.0.1",
"express": "^4.13.4",
"file-loader": "^0.8.5", "file-loader": "^0.8.5",
"immutable": "^3.7.6", "immutable": "^3.7.6",
"imports-loader": "^0.6.5", "imports-loader": "^0.6.5",
"js-yaml": "^3.5.3", "js-yaml": "^3.5.3",
"lint-staged": "^3.0.2",
"mocha": "^2.4.5", "mocha": "^2.4.5",
"moment": "^2.11.2", "moment": "^2.11.2",
"normalizr": "^2.0.0", "normalizr": "^2.0.0",
"postcss-cssnext": "^2.7.0", "postcss-cssnext": "^2.7.0",
"postcss-import": "^8.1.2", "postcss-import": "^8.1.2",
"postcss-loader": "^0.9.1", "postcss-loader": "^0.9.1",
"pre-commit": "^1.1.3",
"react": "^15.1.0", "react": "^15.1.0",
"react-dom": "^15.1.0", "react-dom": "^15.1.0",
"react-hot-loader": "^3.0.0-beta.2",
"react-immutable-proptypes": "^1.6.0", "react-immutable-proptypes": "^1.6.0",
"react-lazy-load": "^3.0.3", "react-lazy-load": "^3.0.3",
"react-pure-render": "^1.0.2", "react-pure-render": "^1.0.2",
@ -60,8 +70,8 @@
"redux-thunk": "^1.0.3", "redux-thunk": "^1.0.3",
"style-loader": "^0.13.0", "style-loader": "^0.13.0",
"url-loader": "^0.5.7", "url-loader": "^0.5.7",
"webpack": "^1.12.13", "webpack": "^1.13.2",
"webpack-dev-server": "^1.14.1", "webpack-dev-server": "^1.15.1",
"webpack-postcss-tools": "^1.1.1", "webpack-postcss-tools": "^1.1.1",
"whatwg-fetch": "^1.0.0" "whatwg-fetch": "^1.0.0"
}, },

View File

@ -1,5 +1,4 @@
import React from 'react'; import React from 'react';
import Authenticator from '../../lib/netlify-auth';
export default class AuthenticationPage extends React.Component { export default class AuthenticationPage extends React.Component {
static propTypes = { static propTypes = {
@ -32,8 +31,8 @@ export default class AuthenticationPage extends React.Component {
} }
response.json().then((data) => { response.json().then((data) => {
this.setState({ loginError: data.msg }); this.setState({ loginError: data.msg });
}) });
}) });
} }
handleChange(key) { handleChange(key) {

View File

@ -62,4 +62,4 @@ export const SCHEMA = {
borderRadius: '4px' borderRadius: '4px'
} }
} }
} };

View File

@ -39,4 +39,4 @@ storiesOf('Card', module)
<p>header and footer elements are also not subject to margin</p> <p>header and footer elements are also not subject to margin</p>
<footer style={styles.footer}>&copy; Thousand Cats Corp</footer> <footer style={styles.footer}>&copy; Thousand Cats Corp</footer>
</Card> </Card>
)) ));

View File

@ -13,7 +13,12 @@ class FindBar extends Component {
constructor(props) { constructor(props) {
super(props); super(props);
this._compiledCommands = []; this._compiledCommands = [];
this._searchCommand = { search: true, regexp:`(?:${SEARCH})?(.*)`, param:{ name:'searchTerm', display:'' }, token: SEARCH }; this._searchCommand = {
search: true,
regexp: `(?:${SEARCH})?(.*)`,
param: { name: 'searchTerm', display: '' },
token: SEARCH
};
this.state = { this.state = {
value: '', value: '',
placeholder: PLACEHOLDER, placeholder: PLACEHOLDER,
@ -144,6 +149,7 @@ class FindBar extends Component {
getSuggestions() { getSuggestions() {
return this._getSuggestions(this.state.value, this.state.activeScope, this._compiledCommands, this.props.defaultCommands); return this._getSuggestions(this.state.value, this.state.activeScope, this._compiledCommands, this.props.defaultCommands);
} }
// Memoized version // Memoized version
_getSuggestions(value, scope, commands, defaultCommands) { _getSuggestions(value, scope, commands, defaultCommands) {
if (scope) return []; // No autocomplete for scoped input if (scope) return []; // No autocomplete for scoped input
@ -299,7 +305,8 @@ class FindBar extends Component {
<span><Icon type="search"/>Search... </span> : <span><Icon type="search"/>Search... </span> :
<span className={styles.faded}><Icon type="search"/>Search for: </span> <span className={styles.faded}><Icon type="search"/>Search for: </span>
} }
<strong>{this.state.value}</strong></span> <strong>{this.state.value}</strong>
</span>
); );
} }
return ( return (
@ -358,6 +365,7 @@ class FindBar extends Component {
); );
} }
} }
FindBar.propTypes = { FindBar.propTypes = {
commands: PropTypes.arrayOf(PropTypes.shape({ commands: PropTypes.arrayOf(PropTypes.shape({
id: PropTypes.string.isRequired, id: PropTypes.string.isRequired,

View File

@ -5,6 +5,7 @@ html {
margin: 0; margin: 0;
font-family: Roboto, "Helvetica Neue", HelveticaNeue, Helvetica, Arial, sans-serif; font-family: Roboto, "Helvetica Neue", HelveticaNeue, Helvetica, Arial, sans-serif;
} }
*, *:before, *:after { *, *:before, *:after {
box-sizing: inherit; box-sizing: inherit;
} }
@ -46,6 +47,7 @@ h1{
header input { header input {
margin-bottom: 0; margin-bottom: 0;
} }
button { button {
border: 1px solid #3ab7a5; border: 1px solid #3ab7a5;
padding: 3px 20px; padding: 3px 20px;

View File

@ -1,31 +1,33 @@
import React from 'react'; import React from 'react';
import { render } from 'react-dom'; import { render } from 'react-dom';
import { Provider } from 'react-redux'; import { AppContainer } from 'react-hot-loader'
import { Router } from 'react-router'; import Root from './root'
import registry from './lib/registry'; import registry from './lib/registry';
import configureStore from './store/configureStore';
import routes from './routing/routes';
import history, { syncHistory } from './routing/history';
import 'file?name=index.html!../example/index.html'; import 'file?name=index.html!../example/index.html';
import './index.css'; import './index.css';
const store = configureStore(); // Create mount element dynamically
// Create an enhanced history that syncs navigation events with the store
syncHistory(store);
const el = document.createElement('div'); const el = document.createElement('div');
el.id = 'root'; el.id = 'root';
document.body.appendChild(el); document.body.appendChild(el);
render(( render((
<Provider store={store}> <AppContainer>
<Router history={history}> <Root />
{routes} </AppContainer>
</Router>
</Provider>
), el); ), el);
if (module.hot) {
module.hot.accept('./root', () => {
const NextRoot = require('./root').default;
render((
<AppContainer>
<NextRoot />
</AppContainer>
), el);
});
}
window.CMS = {}; window.CMS = {};
console.log('reg: ', registry); console.log('reg: ', registry);
for (const method in registry) { for (const method in registry) {

View File

@ -0,0 +1,8 @@
import { combineReducers } from 'redux';
import { routerReducer } from 'react-router-redux';
import reducers from '.';
export default combineReducers({
...reducers,
routing: routerReducer
});

21
src/root.js Normal file
View File

@ -0,0 +1,21 @@
import React from 'react';
import { Provider } from 'react-redux';
import { Router } from 'react-router';
import routes from './routing/routes';
import history, { syncHistory } from './routing/history';
import configureStore from './store/configureStore';
const store = configureStore();
// Create an enhanced history that syncs navigation events with the store
syncHistory(store);
const Root = () => (
<Provider store={store}>
<Router history={history}>
{routes}
</Router>
</Provider>
);
export default Root;

View File

@ -1,18 +1,20 @@
import { createStore, applyMiddleware, combineReducers, compose } from 'redux'; import { createStore, applyMiddleware, compose } from 'redux';
import thunkMiddleware from 'redux-thunk'; import thunkMiddleware from 'redux-thunk';
import { routerReducer } from 'react-router-redux'; import reducer from '../reducers/combinedReducer';
import reducers from '../reducers';
const reducer = combineReducers({ export default function configureStore(initialState) {
...reducers, const store = createStore(reducer, initialState, compose(
routing: routerReducer
});
const createStoreWithMiddleware = compose(
applyMiddleware(thunkMiddleware), applyMiddleware(thunkMiddleware),
window.devToolsExtension ? window.devToolsExtension() : (f) => f window.devToolsExtension ? window.devToolsExtension() : f => f
)(createStore); ));
export default (initialState) => ( if (module.hot) {
createStoreWithMiddleware(reducer, initialState) // Enable Webpack hot module replacement for reducers
); module.hot.accept('../reducers/combinedReducer', () => {
const nextReducer = require('../reducers/combinedReducer') // eslint-disable-line
store.replaceReducer(nextReducer);
});
}
return store;
}

View File

@ -1,8 +1,10 @@
/* global module, __dirname, require */ /* global module, __dirname, require */
var webpack = require('webpack'); var webpack = require('webpack');
var ExtractTextPlugin = require('extract-text-webpack-plugin');
var path = require('path'); var path = require('path');
const HOST = 'localhost';
const PORT = '8080';
module.exports = { module.exports = {
module: { module: {
loaders: [ loaders: [
@ -13,7 +15,7 @@ module.exports = {
{ test: /\.json$/, loader: 'json-loader' }, { test: /\.json$/, loader: 'json-loader' },
{ {
test: /\.css$/, test: /\.css$/,
loader: ExtractTextPlugin.extract("style", "css?modules&importLoaders=1&&localIdentName=cms__[name]__[local]!postcss"), loader: 'style!css?modules&importLoaders=1&&localIdentName=cms__[name]__[local]!postcss',
}, },
{ {
loader: 'babel', loader: 'babel',
@ -22,7 +24,13 @@ module.exports = {
query: { query: {
cacheDirectory: true, cacheDirectory: true,
presets: ['react', 'es2015'], presets: ['react', 'es2015'],
plugins: ['transform-class-properties', 'transform-object-assign', 'transform-object-rest-spread', 'lodash'] plugins: [
'transform-class-properties',
'transform-object-assign',
'transform-object-rest-spread',
'lodash',
'react-hot-loader/babel'
]
} }
} }
] ]
@ -34,7 +42,9 @@ module.exports = {
], ],
plugins: [ plugins: [
new ExtractTextPlugin('cms.css', { allChunks: true }), new webpack.optimize.OccurenceOrderPlugin(),
new webpack.HotModuleReplacementPlugin(),
new webpack.NoErrorsPlugin(),
new webpack.ProvidePlugin({ new webpack.ProvidePlugin({
'fetch': 'imports?this=>global!exports?global.fetch!whatwg-fetch' 'fetch': 'imports?this=>global!exports?global.fetch!whatwg-fetch'
}) })
@ -42,16 +52,23 @@ module.exports = {
context: path.join(__dirname, 'src'), context: path.join(__dirname, 'src'),
entry: { entry: {
cms: './index', cms: [
'webpack/hot/dev-server',
`webpack-dev-server/client?http://${HOST}:${PORT}/`,
'react-hot-loader/patch',
'./index'
],
}, },
output: { output: {
path: path.join(__dirname, 'dist'), path: path.join(__dirname, 'dist'),
filename: '[name].js' filename: '[name].js',
publicPath: `http://${HOST}:${PORT}/`,
}, },
externals: [/^vendor\/.+\.js$/], externals: [/^vendor\/.+\.js$/],
devServer: { devServer: {
hot: true,
contentBase: 'example/', contentBase: 'example/',
historyApiFallback: true, historyApiFallback: true,
devTool: 'source-map' devTool: 'cheap-module-source-map'
}, },
}; };