AtotheY / barstool-fe-challenge

Home Page:https://barstool-fe-challenge.vercel.app

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

This small project is to assess a front-end engineering candidate's procifiency with React, Nextjs and CSS. The goal is to create a feed of Barstool Sports content with some additional functionality.

Requirements

Please complete the following features:

  • Fetch stories from the Barstool API and render them in a feed.
    • Create a Feed component to render a list of stories.
    • Create a Story component to render each story.
  • Add a Load More button to fetch older stories and add them to the list.
    • There should be a loading state for the button while the data is fetching.
    • Create a custom hook called useFeed to implement this feature.
  • Add polling to check for new stories every 10 seconds and prepend them to the feed.
    • Add this functionality to the useFeed hook.

Getting Started

First, run the development server:

npm run dev
# or
yarn dev

Open http://localhost:3000 with your browser to see the result. There are some global styles and basic layout set up on the homepage.

You can start by modifying pages/index.tsx.

API Details

The API URL to GET stories can be found in src/constants/index.ts. This endpoint will return 25 stories by default. You can fetch additional stories by appending the page query paramater.

Design

<Story />

Screen Shot 2021-06-18 at 1 26 11 PM

<Feed />

Screen Shot 2021-06-18 at 1 30 01 PM

Load More Button

Screen Shot 2021-06-18 at 1 28 22 PM

Screen Shot 2021-06-18 at 1 28 42 PM

About

https://barstool-fe-challenge.vercel.app


Languages

Language:TypeScript 92.9%Language:JavaScript 6.3%Language:CSS 0.8%