All Projects → mthorry → tv-lineup-app

mthorry / tv-lineup-app

Licence: other
"My Lineup" has a Ruby on Rails backend with React/Redux frontend. Users can save their favorite shows and add episodes to their lineup. They can view their lineup in a calendar format to see when and where their tv shows air. Users can also see trending and most watched shows as well as shows premiering that week.

Programming Languages

javascript
184084 projects - #8 most used programming language
ruby
36898 projects - #4 most used programming language

Projects that are alternatives of or similar to tv-lineup-app

sozlukus.com
sozlukus.com source code
Stars: ✭ 11 (-59.26%)
Mutual labels:  ajax, semantic-ui
Questions
Web app inspired by Quora, allowing users ask question and get answers
Stars: ✭ 15 (-44.44%)
Mutual labels:  ajax, ruby-on-rails
Ajaxinate
🎡 Ajax pagination plugin for Shopify themes
Stars: ✭ 107 (+296.3%)
Mutual labels:  ajax
meuproximotrabalho
Plataforma de gestão de vagas de emprego.
Stars: ✭ 48 (+77.78%)
Mutual labels:  ruby-on-rails
ui bibz
Ui Framework based on Bootstrap and Ruby on Rails
Stars: ✭ 13 (-51.85%)
Mutual labels:  ruby-on-rails
vue-moment-jalaali
Jalaali Moment.js filters for your Vue.js project
Stars: ✭ 59 (+118.52%)
Mutual labels:  momentjs
remove emoji
2021 Ruby Remove Emoji 😈🈲😱 for Ruby 2.x ~ 3.0 / Rails 4、5.x、6.x
Stars: ✭ 54 (+100%)
Mutual labels:  ruby-on-rails
fTboilerplate-SemanticUI
boilerplate meteor react react router V4 semantic ui
Stars: ✭ 13 (-51.85%)
Mutual labels:  semantic-ui
octopub
Publish data easily, quickly and correctly
Stars: ✭ 41 (+51.85%)
Mutual labels:  ruby-on-rails
sa
Simple Ajax: a lightweight library to make AJAX requests
Stars: ✭ 13 (-51.85%)
Mutual labels:  ajax
fishfrymap
Fish Fry Map project repository
Stars: ✭ 14 (-48.15%)
Mutual labels:  momentjs
yibu.io
A simple and elegant forum, inspired from Reddit. https://yibuio.herokuapp.com/
Stars: ✭ 16 (-40.74%)
Mutual labels:  ruby-on-rails
miniAjax
🚀A mini Ajax library provides Ajax, jsonp and ready features for simple web applications.
Stars: ✭ 67 (+148.15%)
Mutual labels:  ajax
musicWebTemplate
Free website template built for musicians / artists to promote their music and connect to their audience.
Stars: ✭ 26 (-3.7%)
Mutual labels:  ajax
s3 asset deploy
Deploy & manage static assets on S3 with rolling deploys & rollbacks in mind.
Stars: ✭ 63 (+133.33%)
Mutual labels:  ruby-on-rails
Simple-UI-Semantic-UI-Admin
Free Semantic UI (Fomantic-UI) Admin Template
Stars: ✭ 50 (+85.19%)
Mutual labels:  semantic-ui
EMAN
一个基于SSM框架与物品的协同过滤算法(ItemCF)的简单电子书推荐系统
Stars: ✭ 48 (+77.78%)
Mutual labels:  ajax
skyderby
The most advanced flight analysis and competition scoring
Stars: ✭ 79 (+192.59%)
Mutual labels:  ruby-on-rails
react-template
My starting template for most react apps
Stars: ✭ 23 (-14.81%)
Mutual labels:  semantic-ui
eCommerce Shop
eCommerceShop renowned stylish, affordable, new and original fashion to you. our product mainly focuses on women wear’s, but it also offers men's apparel, children clothes, accessories, shoes, bags and other fashion items. BossKinds manufacture and supplier of leisurewear, workwear and school uniforms. we understood the importance of making good…
Stars: ✭ 26 (-3.7%)
Mutual labels:  ajax

My Lineup App 📺

Ruby on Rails backend with React/Redux frontend. Users can save their favorite shows and add episodes to their lineup. They can view their lineup in a calendar format to see when and where their tv shows air. Users can also see trending and most watched shows as well as shows premiering that week. This project was created independently by me, Matthew Thorry, as my final app at Flatiron School for their Software Engineering Immersive Program.

Backend

I created the backend of my app using Ruby on Rails. I used two different APIs in order to get the TV data: trakt.tv API and TVmaze API and fetch requests are done from the backend. The models are User, Show, Episode, UserShow, UserEpisode. A User can have many shows, and many episodes through shows. They can also have many user_shows and user_episodes (for ratings, etc). All models required a controller as CRUD actions are available to all models.

Frontend

The frontend was created using React and Redux. It has over two dozen components with four reducers (shows, episodes, search, extras) which represent the four main containers of the app.

Shows

Responsible for fetching and displaying show information from the APIs and backend. The Show Redux state includes myShows (user's saved shows), onTonight (shows on today from API), premieres (shows premiering this week from API), and isFetching (boolean). The main Containers for shows are ShowContainer, PremieresContainer and ShowCalendar.

ShowContainer's children are ShowList and ShowItem (grandchild); other children are ShowPage with sibling SuggestedList.

PremieresContainer and ShowCalendar do not have children but are containers because they are responsible for multiple tasks including fetching shows or episodes and adding/removing a user's saved items.

Episodes

Responsible for fetching and displaying episode information from the APIs and backend. The Episode Redux state includes myLineup (user's saved episodes), showEpisodes (episodes for a specific show, pulled from TVmaze API), and isFetching (boolean). There is one container, EpisodeContainer. EpisodeContainer's children are EpisodeList and EpisodeItem (grandchild).

Users can view episodes and add specific episodes to their lineup from EpisodeItem.

Search

Responsible for fetching and displaying show information from the TVmaze API based on user input. The Search Redux state includes results (results of search) and isFetching (boolean). The container is SearchContainer which has a child (SearchResults) and a grandchild (SearchItem).

Users can save shows from the SearchResults via a button on the SearchItem.

Extras

Responsible for fetching and displaying extra information from the trakt.tv API. The Extras Redux state includes trending (episodes who's popularity has changed in last day), watching (shows that have most viewers), ratings (array of user's user_shows which include rating) and isFetching (boolean). Extras includes three containers: DashboardContainer, TrendingContainer and MostWatchedContainer.

DashboardContainer manages the landing page after login. It has two children, DashboardLineupList and DashboardOnTonightList, which each have a child, DashboardLineupItem and DashboardOnTonightItem. DashboardLineupList displays the episodes in a user's lineup that air on the current day. DashboardOnTonightList displays episodes that are not on a user's lineup but air today and are highly rated.

TrendingContainer calls the trakt.tv API to get latest trending shows and is the parent of TrendingItem which displays each result of the query.

MostWatchedContainer calls the trakt.tv API to get most watched shows and is the parent of MostWatchedItem which displays each result of the query. A user can also filter results based on specified times (week, month, year, ever).

Acknowledgements

My classmates at Flatiron School are always the best and most helpful, so thank you! Also thank you to my instructors Johann Kerr, Lindsey Wells and Andrew Cohn for always being an amazing second set of eyes for my work.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].