Skip to content

React app integrating Twitter API that lets you search tweets and filter by hashtags.

License

Notifications You must be signed in to change notification settings

itsevalieu/cra-twitter

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

26 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation


CRA Twitter

Search Twitter for keywords and retrieve a listing of the top 5 tweets, ordered by most popular, so that I can monitor trends and hashtags in my industry.
Explore the docs »

View Demo · Report Bug · Request Feature

Table of Contents

  1. About The Project
  2. Getting Started
  3. Roadmap
  4. Contributing
  5. License
  6. Contact

About The Project

User Requirements:

As a Social Media Manager, I need an easy way to search Twitter for keywords and retrieve a listing of the top 5 tweets, ordered by most popular, so that I can monitor trends and hashtags in my industry. (Hint: use the Twitter API query param result_type=popular)

Acceptance Criteria

  1. App should display a title, search, list of tweets, and hashtag container (see mocks)
  2. User should be able to search for tweets by keyword a. Search should be debounced b. Search should only return (5) tweets c. Hashtags found should be added to the hashtag list
  3. Tweets should match the mocks, and include the following: a. Avatar of the author b. Username of the author c. Tweet content d. Clickable URL of the tweet e. Clickable hashtag
  4. User should be able to click a “Load More” button to load additional tweets a. It should append to the list of tweets b. It should only add (5) additional tweets each click c. It should continue to add tweets until the API does not return more i. Hint: use the Twitter API query param max_id d. If unique hashtags are found they should be appended to the hashtag list
  5. User should be able to filter tweets by clicking on a hashtag a. Filter should be able to be set and unset b. When set, the list of tweets should only include those with a matching hashtag c. When unset, the list of tweets should be reset to its state before filtering

Non-Functional Requirements

  1. Use functional components with hooks over class components
  2. Use CSS/SASS/LESS or CSS-in-JS (e.g. Styled Components, Emotion, etc.). a. Do not use libraries like Material-UI or Bootstrap as they do not allow us to effectively measure styling competency
  3. Ensure the app is fully responsive (see mocks)
  4. Ensure the app matches the designs (see mocks)
  5. Ensure the app code is clean, readable, and maintainable
  6. [Extra Credit] Write tests for the application as you feel appropriate

Built With

Getting Started

To get a local copy up and running follow these simple steps.

Installation

  1. Clone the repo
    git clone https://github.com/itsevalieu/cra-twitter.git
  2. Install NPM packages at the root folder
    npm install
  3. Install NPM packages in the ./server folder
    cd server
    npm install
  4. Created an .env file at the root folder structure. It should include:
    REACT_APP_TWITTER_BEARER_TOKEN="YOUR BEARER TOKEN FOR TWITTER"

Available Scripts

In the project directory, you can run:

  1. Start the app in the development mode.

    npm start

    Open http://localhost:3000 to view it in the browser. The page will reload if you make edits. You will also see any lint errors in the console.

  2. Start the proxy server for development.

    npm run proxy

    You need to start the proxy server in order to make requests to the Twitter API.

  3. Test

    npm test

    Launches the test runner in the interactive watch mode. See the section about running tests for more information.

  4. Builds the app for production to the build folder.

    npm run build

    It correctly bundles React in production mode and optimizes the build for the best performance.

    The build is minified and the filenames include the hashes. Your app is ready to be deployed!

    See the section about deployment for more information.

Roadmap

See the open issues for a list of proposed features (and known issues).

Contributing

Contributions are what make the open source community such an amazing place to be learn, inspire, and create. Any contributions you make are greatly appreciated.

  1. Fork the Project
  2. Create your Feature Branch (git checkout -b feature/AmazingFeature)
  3. Commit your Changes (git commit -m 'Add some AmazingFeature')
  4. Push to the Branch (git push origin feature/AmazingFeature)
  5. Open a Pull Request

License

Distributed under the MIT License. See LICENSE for more information.

Contact

Your Name - @itsevalieu - itsevalieu@gmail.com

Project Link - https://github.com/itsevalieu/cra-twitter

About

React app integrating Twitter API that lets you search tweets and filter by hashtags.

Topics

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published