Coder Social home page Coder Social logo

final_bulk_discounts's Introduction

Earthy Minimalist Name LinkedIn Article Cover Image (3)

Hi there, my name is Kenz.

I am a problem solver at heart and thrive on new challenges that push me to learn and grow professionally. I am seeking an opportunity to join a dynamic team that values collaboration, creativity, and a healthy work-life balance.

I bring a curious and team-oriented approach to my work, and I am committed to continuous education and growth as a developer.

some of my technical tools (always learning more):
github git rubyonrails ruby rubygems rubocop json postgresql bootstrap httpie postman visualstudiocode replit docker

some of my presenting tools:
heroku loom zoom

some of my learning resources:
stackoverflow treehouse udemy youtube

Kenz's github stats

  • ๐Ÿ”ญ Iโ€™m currently working on: landing my first dev job! I am open to learning new languages and frameworks. I just love making applications come to life.
  • ๐ŸŒฑ Iโ€™m currently learning: React and figuring out how to build my own website
  • ๐Ÿค” Iโ€™m looking for help with: anything to help sharpen my skills and processes. I want to be a more efficient programmer!
  • ๐Ÿ’ฌ Ask me about: how many steps I walk in a day on my desk-treadmill, or what my Peloton username is.
  • ๐Ÿ“ซ How to reach me: gmail: [email protected] | LinkedIn: kenzjoydev
  • ๐Ÿ˜„ Pronouns: she/her
  • โšก Fun fact: I am currently training for a 50 mile mountain bike race scheduled for July 2023 in Telluride, CO!

final_bulk_discounts's People

Contributors

brianzanti avatar cjsim89 avatar jamisonordway avatar kenzjoy avatar madelinemauser avatar mikedao avatar msakr21 avatar scottalexandra avatar timomitchel avatar willjw2 avatar

Watchers

 avatar  avatar

final_bulk_discounts's Issues

Landing Page

When a user visits the root path they should be on the landing page ('/') which includes:

  • Title of Application

  • Button to Create a New User

  • List of Existing Users which links to the users dashboard

  • Link to go back to the landing page (this link will be present at the top of all pages)

User Registration Page

When a user visits the '/register' path they should see a form to register.

The form should include:

  • Name

  • Email (must be unique)

  • Register Button

Once the user registers they should be taken to a dashboard page '/users/:id', where :id is the id for the user that was just created.

New Viewing Party Page

When I visit the new viewing party page (/users/:user_id/movies/:movid_id/viewing-party/new, where :user_id is a valid user's id),
I should see the name of the movie title rendered above a form with the following fields:

  • Duration of Party with a default value of movie runtime in minutes; a viewing party should NOT be created if set to a value less than the duration of the movie
  • When: field to select date
  • Start Time: field to select time
  • Checkboxes next to each existing user in the system
  • Button to create a party

Details When the party is created, the user should be redirected back to the dashboard where the new event is shown. The event should also be listed on any other user's dashbaords that were also invited to the party.

Discover Movies Page

As an user,
When I visit the '/users/:id/discover' path, where :id, is the id of a valid user,
I should see

  • Button to Discover Top Rated Movies

  • A text field to enter keyword(s) to search by movie title

  • A Button to Search by Movie Title

Details When the user clicks on the Top Rated Movies OR the search button, they should be taken to the movies results page (more details of this on the Movies Results Page issue.

The movies will be retrieved by consuming The MovieDB API

Movie Details Page

When I visit a movie's detail page (/users/:user_id/movies/:movie_id where :id is a valid user id,
I should see

  • Button to create a viewing party
  • Button to return to the Discover Page

Details This viewing party button should take the user to the new viewing party page (/users/:user_id/movies/:movie_id/viewing-party/new)

And I should see the following information about the movie:

  • Movie Title
  • Vote Average of the movie
  • Runtime in hours & minutes
  • Genre(s) associated to movie
  • Summary description
  • List the first 10 cast members (characters&actress/actors)
  • Count of total reviews
  • Each review's author and information

Details: This information should come from 3 different endpoints from The Movie DB API

Movies Results Page

When I visit the discover movies page,
and click on either the Top Movies button or the Search button,
I should be taken to the movies results page (users/:user_id/movies) where I see:

  • Title (As a Link to the Movie Details page)

  • Vote Average of the movie

Details: There should only be a maximum of 20 results. The above details should be listed for each movie.

I should also see a button to return to the Discover Page.

User Dashboard Page

When I visit '/users/:id' where :id is a valid user id,
I should see:

  • "<user's name>'s Dashboard" at the top of the page

  • A button to Discover Movies*

  • A section that lists viewing parties**

*more instructions on this in the Dashboard:Discover Movies issue.
**more instructions on this in the Dashboard:Viewing Parties issue.

RuboCop

You will use RuboCop to enforce style guidelines. This is not a requirement for the project, but it's something we'd like for y'all to set up.

RuboCop will be installed when you bundle install. Simply run bundle exec rubocop from the command line to see if there are any violations. Run RuboCop throughout the project to pick up on style violations as you go.

As you work through the project, you may find some of the RuboCop complaints difficult to decipher. Reference the RuboCop documentation and the RuboCop Rails documentation for more information.

Please reach out to your instructors if you find any style violations that you believe should not be enforced. Ask your instructors before editing .rubocop.yml

Dashboard:Viewing Parties

As a user,
When I visit a user dashboard,
I should see the viewing parties that the user has been invited to with the following details:

Movie Image
Movie Title, which links to the movie show page
Date and Time of Event
who is hosting the event
list of users invited, with my name in bold
I should also see the viewing parties that the user has created with the following details:

Movie Image
Movie Title, which links to the movie show page
Date and Time of Event
That I am the host of the party
List of friends invited to the viewing party

Create a PR Template

____ Wrote Tests ____ Implemented ____ Reviewed

Neccesary checkmarks:

[] All Tests are Passing

[] The code will run locally

Type of change

[] New feature
[] Bug Fix

Implements/Fixes:

description closes #

Check the correct boxes

[] This broke nothing
[] This broke some stuff
[] This broke everything

Testing Changes

[] No Tests have been changed
[] Some Tests have been changed
[] All of the Tests have been changed(Please describe what in the world happened)

Checklist:

[] My code has no unused/commented out code
[] I have reviewed my code
[] I have commented my code, particularly in hard-to-understand areas
[] I have fully tested my code

(For Fun!)Please Include a link to a gif of your feelings about this branch

Link:

Dashboard: Discover Movies

As a user,
When I go to a user dashbaord,
and click "Discover Movies" button,
I am redirected to a discover page '/users/:id/discover', where :id is the user id of the user who's dashboard I was just on.

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.