Skip to content

Instantly share code, notes, and snippets.

@Qquanwei
Last active August 7, 2017 08:58
Show Gist options
  • Save Qquanwei/fc53c49179256e0a41a86e3131cda9e0 to your computer and use it in GitHub Desktop.
Save Qquanwei/fc53c49179256e0a41a86e3131cda9e0 to your computer and use it in GitHub Desktop.
trackpoint-demo
import React from 'react';
import '../styles/index.scss';
import { track, before, after, composeWith, evolve, time, identity, createCounter} from 'trackpoint-tools'
export default class App extends React.Component {
constructor () {
super()
this.name = 'app'
}
@track(composeWith(({count, time}) => function () {
console.log('------------', this.name, '-----------')
console.log('click times:', count)
console.log('window.open wroth:', time, 'ms')
}, evolve({time, count: createCounter()})))
onClickLink () {
window.open('https://github.com/alicoding/react-webpack-babel')
}
render() {
return (
<div>
<h1>It Works!</h1>
<div>thanks
<button onClick ={ () => this.onClickLink()}>alicoding/react-webpack-babel</button>
<span className="redBg">module</span> local styles.</div>
<p>Enjoy!</p>
</div>
)
}
}
{
"name": "react-webpack-babel",
"version": "0.0.4",
"description": "React Webpack Babel Starter Kit",
"main": "''",
"scripts": {
"build": "webpack --config webpack.production.config.js --progress --profile --colors",
"start": "webpack-dev-server --progress --profile --colors",
"lint": "eslint --ext js --ext jsx src || exit 0",
"dev": " webpack-dashboard -- webpack-dev-server --progress --profile --colors",
"test": "export NODE_ENV=test && jest"
},
"repository": {
"type": "git",
"url": "https://github.com/alicoding/react-webpack-babel"
},
"author": "Ali Al Dallal",
"license": "MIT",
"homepage": "https://github.com/alicoding/react-webpack-babel#readme",
"dependencies": {
"node-sass": "^4.3.0",
"react": "15.6.1",
"react-dom": "15.4.2",
"sass-loader": "^6.0.2",
"trackpoint-tools": "0.0.6"
},
"devDependencies": {
"babel-core": "^6.23.1",
"babel-jest": "^20.0.3",
"babel-loader": "^7.1",
"babel-plugin-transform-class-properties": "^6.22.0",
"babel-plugin-transform-decorators-legacy": "^1.3.4",
"babel-plugin-transform-runtime": "^6.22.0",
"babel-preset-es2015": "6.22.0",
"babel-preset-react": "^6.23.0",
"babel-runtime": "^6.22.0",
"css-loader": "0.26.1",
"enzyme": "^2.9.1",
"eslint": "^4.3.0",
"eslint-plugin-jest": "^20.0.3",
"eslint-plugin-react": "^7.1.0",
"extract-text-webpack-plugin": "^3.0.0",
"file-loader": "^0.10.0",
"html-webpack-plugin": "^2.26.0",
"jest": "^20.0.4",
"loglevel": "^1.4.1",
"postcss-loader": "^1.2.2",
"react-addons-test-utils": "^15.6.0",
"react-hot-loader": "^3.0.0-beta.6",
"react-test-renderer": "^15.6.1",
"style-loader": "0.13.1",
"url-loader": "0.5.7",
"webpack": "^3.3.0",
"webpack-cleanup-plugin": "^0.4.2",
"webpack-dashboard": "^0.3.0",
"webpack-dev-server": "^2.4.1"
},
"jest": {
"verbose": true,
"bail": true,
"collectCoverage": true,
"coverageDirectory": "coverage",
"moduleNameMapper": {
"\\.(jpe?g|png|gif|eot|otf|webp|svg|ttf|woff2?|mp[34]|webm|wav|m4a|aac|oga)$": "<rootDir>/__mocks__/fileMock.js",
"\\.(css|less|s[ac]ss|styl)$": "<rootDir>/__mocks__/styleMock.js",
"app": "<rootDir>/src/app.jsx"
},
"moduleFileExtensions": [
"js",
"jsx"
],
"moduleDirectories": [
"node_modules"
]
}
}
@Qquanwei
Copy link
Author

Qquanwei commented Aug 7, 2017

image

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment