34 lines
No EOL
924 B
JavaScript
34 lines
No EOL
924 B
JavaScript
"use strict";
|
|
|
|
Object.defineProperty(exports, "__esModule", {
|
|
value: true
|
|
});
|
|
exports.default = void 0;
|
|
|
|
var _reactRedux = require("react-redux");
|
|
|
|
var _channel = require("../../actions/channel");
|
|
|
|
var _view = _interopRequireDefault(require("./view"));
|
|
|
|
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
|
|
|
|
var mapStateToProps = function mapStateToProps(_ref) {
|
|
var channel = _ref.channel,
|
|
site = _ref.site;
|
|
return {
|
|
channelName: channel.loggedInChannel.name,
|
|
channelShortId: channel.loggedInChannel.shortId,
|
|
channelLongId: channel.loggedInChannel.longId,
|
|
siteDescription: site.description
|
|
};
|
|
};
|
|
|
|
var mapDispatchToProps = {
|
|
checkForLoggedInChannel: _channel.checkForLoggedInChannel,
|
|
logOutChannel: _channel.logOutChannel
|
|
};
|
|
|
|
var _default = (0, _reactRedux.connect)(mapStateToProps, mapDispatchToProps)(_view.default);
|
|
|
|
exports.default = _default; |