* Feat: Initial backend view * Feat: Refactor frame runner * Feat: backend challenge submit runs tests * Feat: Backend challenge request * Feat: Whitelist hyperdev in csp * Fix: Use app tests instead of challenge tests * Feat: Allow hyperdev subdomains * Fix(csp): allow hypderdev.space subdomains * feat(challenge): submit backend * feat: Add timeout to test runner (5 sec) * chore(seed): Add more to test backend * fix(csp): s/hyperdev/gomix/g * fix(app): fix code mirror skeleton filepath * fix(app): remove Gitter saga import * fix(app): codemirrorskeleton does not need it's own folder fix(app): cmk needs to work with Null types * fix: No longer restart the browser when challenges change * fix(app): Update jquery for challenges * fix(seed): Remove to promise jquery call * fix(lint): Undo merge error undefined is no allowed * fix(app): linting errors due to bad merge * fix(seed): Remove old seed file
61 lines
1.6 KiB
JavaScript
61 lines
1.6 KiB
JavaScript
import React, { PropTypes } from 'react';
|
|
import PureComponent from 'react-pure-render/component';
|
|
import { Grid, Col, Row } from 'react-bootstrap';
|
|
|
|
const propTypes = {
|
|
content: PropTypes.string
|
|
};
|
|
export default class CodeMirrorSkeleton extends PureComponent {
|
|
|
|
renderLine(line, i) {
|
|
return (
|
|
<div className='shimmer' key={ i }>
|
|
<Row>
|
|
<Col xs={ 12 }>
|
|
<div className='sprite-wrapper'>
|
|
<div className='sprite' />
|
|
</div>
|
|
</Col>
|
|
</Row>
|
|
</div>
|
|
);
|
|
}
|
|
|
|
render() {
|
|
const {
|
|
content
|
|
} = this.props;
|
|
const editorLines = (content || '').split('\n');
|
|
return (
|
|
<div className='ReactCodeMirror'>
|
|
<div className='CodeMirror cm-s-monokai CodeMirror-wrap'>
|
|
<div className='CodeMirror-scrollbar-filler' />
|
|
<div className='CodeMirror-gutter-filler' />
|
|
<div className='CodeMirror-scroll'>
|
|
<div
|
|
className='CodeMirror-sizer'
|
|
style={
|
|
{
|
|
minHeight: (editorLines.length * 18) + 'px',
|
|
overflow: 'hidden'
|
|
}
|
|
}
|
|
>
|
|
<div className='CodeMirror-lines'>
|
|
<div className='CodeMirror-code'>
|
|
<Grid>
|
|
{ editorLines.map(this.renderLine) }
|
|
</Grid>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
);
|
|
}
|
|
}
|
|
|
|
CodeMirrorSkeleton.displayName = 'CodeMirrorSkeleton';
|
|
CodeMirrorSkeleton.propTypes = propTypes;
|