Renddslow / screening-chat-app

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Dev Screening (Chat App)

A basic chat app, bootstrapped with create-react-app to provide an environment for demonstrating the skills of a development candidate.

Getting Started

Clone this repo:

git clone --single-branch https://github.com/Renddslow/screening-chat-app --depth=1

Install all dependencies and run the app:

yarn && yarn watch

Yarn watch?

yarn watch let's us run the server and the client concurrently but be separate services. Normally we would do yarn start but for some reason, start will run more than once with both concurrent npm-script packages I've tried to use.

The Project

You will build a chat app. The goal is to demonstrate your ability to create interactive React components, respond to data flow, and work comfortably across the stack.

The chat app is designed to be a simple chat room that people can login to with just a first name, username, and email address. All messages will be broadcast to the full room.

What's Already There

  • A chat server
    • HTTP POST method for adding new users
    • Socket broadcast for when a new user has been added
    • Basic Web Socket connection setup
    • Basic Web Socket disconnect setup
    • Chat message receipt and broadcasting
  • Client App
    • React App
    • Login screen
    • Basic routing
    • Client-side web socket set up
    • Web Socket context provider for easy use
  • Styling Tools
    • đź’… Styled Components
    • Sass Support (import 'ComponentStyle.scss';)

What You'll Add

The following list of features should be approached in order. This should allow you to have something working at the end of our time assuming you have at least checked one box.

The goal is not to check every box, but to demonstrate what you can do with the time you are given.

Gandalf wisdom

Treat this like you would a work project. We want to see how you create maintainable and reusable code just as much as we want to see you build cool features.

  • Chat interface
    • I can send a message
    • I can receive messages
    • My messages display in the chat room in a way that indicates they belong to me
    • Messages from others display in the chat room in a way that indicates they belong to others
  • Additional Features

    You may pick any of the following:

    • Slash Commands
      • I can enter a slash / followed by a command to execute a command
      • I can pass arguments to the command to enhance the command
      • The structure for creating slash commands is reusable
    • Emoji Support
      • I can send and receive emoji
      • I can pick a standard set of emoji from some sort of picker
      • I can use colons : to select and send emoji
    • Image Support
      • I can send images
      • I can receive images sent by other chat users

About


Languages

Language:JavaScript 83.3%Language:HTML 10.7%Language:CSS 6.1%