react-footer-comp
Version:
react based footer component for easy footers in websites.
179 lines (161 loc) • 7.25 kB
JavaScript
"use strict";
Object.defineProperty(exports, "__esModule", {
value: true
});
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 _react = require("react");
var _react2 = _interopRequireDefault(_react);
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } }
function _possibleConstructorReturn(self, call) { if (!self) { throw new ReferenceError("this hasn't been initialised - super() hasn't been called"); } return call && (typeof call === "object" || typeof call === "function") ? call : self; }
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 ReactFooter = function (_Component) {
_inherits(ReactFooter, _Component);
function ReactFooter() {
_classCallCheck(this, ReactFooter);
return _possibleConstructorReturn(this, (ReactFooter.__proto__ || Object.getPrototypeOf(ReactFooter)).apply(this, arguments));
}
_createClass(ReactFooter, [{
key: "getYear",
// App.propTypes={
// }
value: function getYear() {
if (this.props.years !== undefined) {
return this.props.years[0] + " - " + new Date().getFullYear();
} else {
return new Date().getFullYear();
}
}
}, {
key: "getCopyrightText",
value: function getCopyrightText() {
if (this.props.copyrightText) return 'copyright';
}
}, {
key: "getCopyRightIconStyle",
value: function getCopyRightIconStyle() {
if (this.props.copyrightIconStyle) return this.props.copyrightIconStyle;
var style = { color: "white",
alignSelf: "center",
marginRight: 10 };
return style;
}
}, {
key: "getCopyRightTextStyle",
value: function getCopyRightTextStyle() {
if (this.props.copyrightTextStyle) return this.props.copyrightTextStyle;
var style = { color: "white",
alignSelf: "center",
marginRight: 10 };
return style;
}
}, {
key: "getTextStyle",
value: function getTextStyle() {
if (this.props.textStyle) return this.props.textStyle;
var style = { color: "white",
alignSelf: "center",
marginRight: 10 };
return style;
}
}, {
key: "render",
value: function render() {
console.log(this.props);
var styles = {
footer: {
display: "flex",
alignItems: "center",
justifyContent: "center",
height: this.props.height || 100,
backgroundColor: this.props.bgColor || "#e65550"
}
};
if (this.props.copyrightIcon) {
return _react2.default.createElement(
"div",
{ style: styles.footer },
_react2.default.createElement(
"p",
{
style: this.getCopyRightIconStyle()
},
"\xA9"
),
_react2.default.createElement(
"p",
{
style: this.getCopyRightTextStyle()
},
this.getCopyrightText(),
" ",
this.getYear()
),
_react2.default.createElement(
"p",
{
style: this.getTextStyle()
},
this.props.text
)
);
} else if (this.props.copyrightText) {
return _react2.default.createElement(
"div",
{ style: styles.footer },
_react2.default.createElement(
"p",
{
style: {
color: this.props.copyColor || "white",
alignSelf: this.props.copyPosition || "center",
marginRight: 10
}
},
this.getCopyrightText(),
" ",
this.getYear()
),
_react2.default.createElement(
"p",
{
style: {
color: this.props.textColor || "white",
alignSelf: this.props.textPosition || "center",
display: "block"
}
},
this.props.text
)
);
} else if (this.props.text) {
return _react2.default.createElement(
"div",
{ style: styles.footer },
_react2.default.createElement(
"p",
{
style: {
color: this.props.textColor || "white",
alignSelf: this.props.textPosition || "center"
}
},
this.props.text
)
);
} else {
return _react2.default.createElement(
"div",
{ style: styles.footer },
_react2.default.createElement(
"p",
{ style: styles.textColor },
" React Footer Component"
)
);
}
}
}]);
return ReactFooter;
}(_react.Component);
exports.default = ReactFooter;