Fixed styling.

This commit is contained in:
wildscotsmen 2018-11-25 13:42:59 -05:00
parent 95143d8034
commit da80aeabfd
3 changed files with 31 additions and 30 deletions

View File

@ -61,6 +61,7 @@ class FlameLinkCollectionGallery extends Component {
getGalleryInfo(schemaDetails, schemaContent) {
var key;
var mediaNums = []
for (var val in schemaDetails) {
key = schemaDetails[val].key
}
@ -72,10 +73,11 @@ class FlameLinkCollectionGallery extends Component {
for (var val3 in global.mediaIDs) {
mediaNums.push(val3)
}
return mediaNums.map(this.createGallery);
}
createGallery(num) {
createGallery = num => {
return <FlameLinkCollectionGalleryContent num={num} key={global.mediaIDs[num]} />
}
@ -85,7 +87,7 @@ class FlameLinkCollectionGallery extends Component {
return (
<Grid container>
{this.getGalleryInfo(this.state.schemaDetails, this.state.schemaContent)}
<Typography variant='display3' className={classes.flamelinkItem}>
<Typography variant='display2' className={classes.flamelinkItem}>
{this.state.schemaDescription}
</Typography>
<Grid container className={classes.flamelinkGalleryContainer}>

View File

@ -9,23 +9,23 @@ class FlameLinkCollectionGalleryContent extends Component {
global.galleryImages = [];
this.state = {
mediaURL: '',
mediaURL: '',
}
flamelinkApp.storage.getURL(global.mediaIDs[this.props.num])
.then(url => this.setState({
mediaURL: url
}))
}
.then(url => this.setState({
mediaURL: url
}))
}
addURLs(){
if(this.state.mediaURL === ''){
}
else{
addURLs = () => {
if (this.state.mediaURL === '') {
} else {
var element = {}
element.original = this.state.mediaURL;
global.galleryImages.push(element);
}
return null;
}

View File

@ -8,24 +8,23 @@ class RenderGallery extends Component {
super();
this.state = {
showThumbnails: false,
showIndex: true,
showBullets: true,
mounted: false,
showThumbnails: false,
showIndex: true,
showBullets: true,
mounted: false,
}
}
componentDidMount(){
this.setState({mounted: true})
}
_onImageLoad(event) {
console.debug('loaded image', event.target.src);
}
componentDidMount() {
this.setState({ mounted: true })
}
_onImageLoad = event => {
console.debug('loaded image', event.target.src);
}
render() {
return(
return (
<ImageGallery
items={global.galleryImages}
showThumbnails={this.state.showThumbnails}