-
-
Save victorkane/fffdad4a2aa0e3754ef4a91e97fde1d0 to your computer and use it in GitHub Desktop.
JS Bin // source https://jsbin.com/hujeyulica
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html> | |
<head> | |
<meta charset="utf-8"> | |
<title>JS Bin</title> | |
<script src="https://cdnjs.cloudflare.com/ajax/libs/moment.js/2.11.0/moment.min.js"></script> | |
<script src="https://cdnjs.cloudflare.com/ajax/libs/react/0.14.3/react.js"></script> | |
<script src="https://cdnjs.cloudflare.com/ajax/libs/react/0.14.3/react-dom.js"> | |
</script> | |
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.3/jquery.min.js"></script> | |
<script src="https://cdnjs.cloudflare.com/ajax/libs/fullcalendar/2.6.0/fullcalendar.js"></script> | |
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/fullcalendar/2.6.0/fullcalendar.css"> | |
</head> | |
<body> | |
<div id="app"></div> | |
<script id="jsbin-javascript"> | |
'use strict'; | |
var _createClass = (function () { function defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ('value' in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } } return function (Constructor, protoProps, staticProps) { if (protoProps) defineProperties(Constructor.prototype, protoProps); if (staticProps) defineProperties(Constructor, staticProps); return Constructor; }; })(); | |
var _get = function get(_x, _x2, _x3) { var _again = true; _function: while (_again) { var object = _x, property = _x2, receiver = _x3; desc = parent = getter = undefined; _again = false; if (object === null) object = Function.prototype; var desc = Object.getOwnPropertyDescriptor(object, property); if (desc === undefined) { var parent = Object.getPrototypeOf(object); if (parent === null) { return undefined; } else { _x = parent; _x2 = property; _x3 = receiver; _again = true; continue _function; } } else if ('value' in desc) { return desc.value; } else { var getter = desc.get; if (getter === undefined) { return undefined; } return getter.call(receiver); } } }; | |
function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError('Cannot call a class as a function'); } } | |
function _inherits(subClass, superClass) { if (typeof superClass !== 'function' && superClass !== null) { throw new TypeError('Super expression must either be null or a function, not ' + typeof superClass); } subClass.prototype = Object.create(superClass && superClass.prototype, { constructor: { value: subClass, enumerable: false, writable: true, configurable: true } }); if (superClass) Object.setPrototypeOf ? Object.setPrototypeOf(subClass, superClass) : subClass.__proto__ = superClass; } | |
var Calendar = (function (_React$Component) { | |
_inherits(Calendar, _React$Component); | |
function Calendar() { | |
_classCallCheck(this, Calendar); | |
_get(Object.getPrototypeOf(Calendar.prototype), 'constructor', this).apply(this, arguments); | |
} | |
_createClass(Calendar, [{ | |
key: 'componentDidMount', | |
value: function componentDidMount() { | |
var calendar = this.refs.calendar; | |
$(calendar).fullCalendar({ | |
events: this.props.events | |
}); | |
} | |
}, { | |
key: 'componentWillUnmount', | |
value: function componentWillUnmount() { | |
var calendar = this.refs.calendar; | |
$(calendar).fullCalendar('destroy'); | |
} | |
}, { | |
key: 'render', | |
value: function render() { | |
return React.createElement('div', { ref: 'calendar' }); | |
} | |
}]); | |
return Calendar; | |
})(React.Component); | |
var App = (function (_React$Component2) { | |
_inherits(App, _React$Component2); | |
function App() { | |
_classCallCheck(this, App); | |
_get(Object.getPrototypeOf(App.prototype), 'constructor', this).apply(this, arguments); | |
} | |
_createClass(App, [{ | |
key: 'render', | |
value: function render() { | |
var events = [{ | |
title: 'Egghead Recording', | |
date: Date.now(), | |
allDay: true | |
}]; | |
return React.createElement( | |
'div', | |
null, | |
React.createElement( | |
'h1', | |
null, | |
'Hello World' | |
), | |
React.createElement(Calendar, { events: events }) | |
); | |
} | |
}]); | |
return App; | |
})(React.Component); | |
ReactDOM.render(React.createElement(App, null), document.getElementById('app')); | |
</script> | |
<script id="jsbin-source-javascript" type="text/javascript">class Calendar extends React.Component { | |
componentDidMount() { | |
const { calendar } = this.refs; | |
$(calendar).fullCalendar({ | |
events: this.props.events | |
}); | |
} | |
componentWillUnmount() { | |
const { calendar } = this.refs; | |
$(calendar).fullCalendar('destroy'); | |
} | |
render() { | |
return ( | |
<div ref="calendar"></div> | |
); | |
} | |
} | |
class App extends React.Component { | |
render(){ | |
let events = [ | |
{ | |
title: 'Egghead Recording', | |
date: Date.now(), | |
allDay: true | |
} | |
]; | |
return ( | |
<div> | |
<h1>Hello World</h1> | |
<Calendar events={events} /> | |
</div> | |
); | |
} | |
} | |
ReactDOM.render(<App />, document.getElementById('app')); | |
</script></body> | |
</html> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
'use strict'; | |
var _createClass = (function () { function defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ('value' in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } } return function (Constructor, protoProps, staticProps) { if (protoProps) defineProperties(Constructor.prototype, protoProps); if (staticProps) defineProperties(Constructor, staticProps); return Constructor; }; })(); | |
var _get = function get(_x, _x2, _x3) { var _again = true; _function: while (_again) { var object = _x, property = _x2, receiver = _x3; desc = parent = getter = undefined; _again = false; if (object === null) object = Function.prototype; var desc = Object.getOwnPropertyDescriptor(object, property); if (desc === undefined) { var parent = Object.getPrototypeOf(object); if (parent === null) { return undefined; } else { _x = parent; _x2 = property; _x3 = receiver; _again = true; continue _function; } } else if ('value' in desc) { return desc.value; } else { var getter = desc.get; if (getter === undefined) { return undefined; } return getter.call(receiver); } } }; | |
function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError('Cannot call a class as a function'); } } | |
function _inherits(subClass, superClass) { if (typeof superClass !== 'function' && superClass !== null) { throw new TypeError('Super expression must either be null or a function, not ' + typeof superClass); } subClass.prototype = Object.create(superClass && superClass.prototype, { constructor: { value: subClass, enumerable: false, writable: true, configurable: true } }); if (superClass) Object.setPrototypeOf ? Object.setPrototypeOf(subClass, superClass) : subClass.__proto__ = superClass; } | |
var Calendar = (function (_React$Component) { | |
_inherits(Calendar, _React$Component); | |
function Calendar() { | |
_classCallCheck(this, Calendar); | |
_get(Object.getPrototypeOf(Calendar.prototype), 'constructor', this).apply(this, arguments); | |
} | |
_createClass(Calendar, [{ | |
key: 'componentDidMount', | |
value: function componentDidMount() { | |
var calendar = this.refs.calendar; | |
$(calendar).fullCalendar({ | |
events: this.props.events | |
}); | |
} | |
}, { | |
key: 'componentWillUnmount', | |
value: function componentWillUnmount() { | |
var calendar = this.refs.calendar; | |
$(calendar).fullCalendar('destroy'); | |
} | |
}, { | |
key: 'render', | |
value: function render() { | |
return React.createElement('div', { ref: 'calendar' }); | |
} | |
}]); | |
return Calendar; | |
})(React.Component); | |
var App = (function (_React$Component2) { | |
_inherits(App, _React$Component2); | |
function App() { | |
_classCallCheck(this, App); | |
_get(Object.getPrototypeOf(App.prototype), 'constructor', this).apply(this, arguments); | |
} | |
_createClass(App, [{ | |
key: 'render', | |
value: function render() { | |
var events = [{ | |
title: 'Egghead Recording', | |
date: Date.now(), | |
allDay: true | |
}]; | |
return React.createElement( | |
'div', | |
null, | |
React.createElement( | |
'h1', | |
null, | |
'Hello World' | |
), | |
React.createElement(Calendar, { events: events }) | |
); | |
} | |
}]); | |
return App; | |
})(React.Component); | |
ReactDOM.render(React.createElement(App, null), document.getElementById('app')); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment