diff --git a/client/app/components/MovieObject.jsx b/client/app/components/MovieObject.jsx index 8f44073..acf4f5f 100644 --- a/client/app/components/MovieObject.jsx +++ b/client/app/components/MovieObject.jsx @@ -18,48 +18,124 @@ class MovieObject { } requestMovie(id) { - fetch('http://localhost:31459/api/v1/plex/request/' + id, { + fetch('https://apollo.kevinmidboe.com/api/v1/plex/request/' + id, { method: 'POST' }); } getElement() { - var movie_wrapper = { - display: 'flex', - alignContent: 'center', - width: '30%', - backgroundColor: '#ffffff', - height: '231px', - margin: '20px', - boxShadow: '0px 0px 5px 1px rgba(0,0,0,0.15)' + // TODO move this to separate files. + var resultItem = { + maxWidth: '95%', + margin: '0 auto', + minHeight: '230px' } var movie_content = { marginLeft: '15px' } - var movie_header = { - fontSize: '1.6' + 'em' + var resultTitle = { + color: 'black', + fontSize: '2em', } + var resultPoster = { + float: 'left', + zIndex: '3', + position: 'relative', + marginRight: '30px' + } - var posterPath = 'https://image.tmdb.org/t/p/w154' + this.poster; - var buttonState; - if (this.matchedInPlex) { - buttonState = ; + var resultPosterImg = { + border: '2px none', + borderRadius: '2px', + width: '150px' + } + + var buttons = { + paddingTop: '20px' + } + + var requestButton = { + color: '#e9a131', + marginRight: '10px', + background: 'white', + border: '#e9a131 2px solid', + borderRadius: '4px', + textAlign: 'center', + padding: '10px', + width: '100px', + float: 'left', + fontSize: '13px', + fontWeight: '800', + cursor: 'pointer' + } + + var tmdbButton = { + color: '#00d17c', + marginRight: '10px', + background: 'white', + border: '#00d17c 2px solid', + borderRadius: '4px', + textAlign: 'center', + padding: '10px', + width: '100px', + float: 'left', + fontSize: '13px', + fontWeight: '800', + cursor: 'pointer' + } + + var row = { + width: '100%' + } + + var itemDivider = { + width: '90%', + borderBottom: '1px solid grey', + margin: '2rem auto' + } + + // TODO set the poster image async by updating the dom after this is returned + if (this.poster == null || this.poster == undefined) { + var posterPath = 'https://openclipart.org/image/2400px/svg_to_png/211479/Simple-Image-Not-Found-Icon.png' } else { - buttonState = ; + var posterPath = 'https://image.tmdb.org/t/p/w154' + this.poster; + } + var foundInPlex; + if (this.matchedInPlex) { + foundInPlex = ; + } else { + foundInPlex = ; } return ( -