Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.
value: function renderCard(item, index) {
var details = item.details.substring(0, 120);
return _react2.default.createElement(
_card.Card,
{ style: { width: '320px' }, key: 'item' + index },
_react2.default.createElement(
_button.Button,
{ onClick: this.triggerEvent(item.name || index, item.action), style: { padding: 0, height: '100%' } },
this.renderCardMedia(item)
),
_react2.default.createElement(
'div',
{ style: { padding: '0 1rem 1rem 1rem' } },
_react2.default.createElement(
_typography.Typography,
{ use: 'title', tag: 'h2' },
item.title
),
_react2.default.createElement(
_typography.Typography,
value: function renderComponent() {
if (this.state.loading) {
return _react2.default.createElement(
'div',
{ style: { display: 'flex', flex: 1, margin: '10px', justifyContent: 'center', flexDirection: 'column', alignItems: 'center' } },
_react2.default.createElement(
_card.Card,
{ style: { width: '80vw', margin: '20px', padding: '0px' } },
_react2.default.createElement(_linearProgress.LinearProgress, { determinate: false })
)
);
}
if (!this.state.period) {
return _react2.default.createElement('div', null);
}
return _react2.default.createElement(
'div',
{ style: {
color: 'white',
position: 'relative',
display: 'flex',
value: function renderCard(item, index) {
var _this4 = this;
var linkedIn = item.linkedIn,
github = item.github,
website = item.website,
text = item.text;
var width = this.props.small ? 230 : 320;
var height = this.props.small ? 340 : 540;
var translatedBtnSeeMoreText = this.props.translation && this.state.strings && this.state.selectedLanguage ? this.state.strings[this.state.selectedLanguage]['btnTextDetails'] : 'See more';
return _react2.default.createElement(
_card.Card,
{
style: {
width: width,
height: height,
margin: 20,
textAlign: 'center'
},
key: 'item' + index
},
this.renderCardMedia(item),
_react2.default.createElement(
'div',
{ style: { padding: '15px 1rem 1rem 1rem', textAlign: 'right' } },
_react2.default.createElement(
'div',
{
value: function renderChallenge(item, index) {
var details = item.details.substring(0, 50);
return _react2.default.createElement(
_card.Card,
{ style: { width: '320px' }, key: 'item' + index },
this.renderCardMedia(item),
_react2.default.createElement(
'div',
{ style: { padding: '0 1rem 1rem 1rem' } },
_react2.default.createElement(
_typography.Typography,
{ use: 'title', tag: 'h2' },
item.title
),
_react2.default.createElement(
_typography.Typography,
{
use: 'subheading1',
tag: 'h3',
theme: 'text-secondary-on-background',