catreact
Version:
Catavolt Core React Components
34 lines (33 loc) • 1 kB
JavaScript
;
/**
* Created by rburson on 12/23/15.
*/
Object.defineProperty(exports, "__esModule", { value: true });
var React = require("react");
var catreact_core_1 = require("./catreact-core");
/*
***************************************************
* Render a ListContext
***************************************************
*/
exports.CvListPane = React.createClass({
mixins: [catreact_core_1.CvBaseMixin, catreact_core_1.CvQueryBase],
componentWillMount: function () {
this._componentWillMount();
},
componentWillReceiveProps: function (nextProps, nextContext) {
this._componentWillReceiveProps(nextProps, nextContext);
},
componentWillUnmount: function () {
this._componentWillUnmount();
},
getDefaultProps: function () {
return catreact_core_1.CvQueryBase._getDefaultProps();
},
listContext: function () {
return this.queryContext();
},
render: function () {
return this._render();
},
});