Skip to content

matthewkohn/storyteller

Repository files navigation

Storyteller

Storyteller is a turn-based creative writing app using React, Material UI, DraftJS, Ruby on Rails, PostgreSQL, and BCrypt.

Table of Contents


Requirements

API

  • ruby v2.7.4
  • rails v7.0.3
  • postgresql v14.5

Client

Dependencies for the Client are located in "./client/package.json".

  • react v^18.2.0

Setup

Back to Top

Once you have the correct versions of Ruby, Rails, React, and PostGresQl set up,

  1. Install dependencies
bundle install
npm install --prefix client
  1. Create & seed database, then start the PostgreSQL server with
rails db:create db:migrate db:seed
sudo service postgresql start  
  1. Once PostgreSQL server starts successfully, start the server:
rails s

and in a separate terminal start the frontend with:

npm start --prefix client

Configuration

(back to top)

The Rails API is configured to run locally on PORT:3000. The client is stored under './client' and runs locally on PORT:4000. Make sure you have dependencies installed before forking and cloning.

This app is also configured to allow ActionDispatch::Session::CookieStore cookies & session middleware, as well as use SameSite=Strict for all cookies to protect against CSRF.

Media

(back to top)

YouTube demonstration of Storyteller here

Storyteller app

API Documentation

(back to top) Below are API methods, endpoints, and the expected JSON response format for each.

GET requests

/genres

[
    {
        "id": 1,
        "name": "Sci-Fi"
    },
    {
        "id": 2,
        "name": "Suspense"
    },
    {
        "id": 3,
        "name": "Action Adventure"
    },
    .....
    .....
]

/authors

[
    {
        "id": 1,
        "name": "Matt Kohn"
    },
    {
        "id": 2,
        "name": "Jonathan Swift"
    },
    {
        "id": 3,
        "name": "Tyler Parrayo"
    },
    .....
    .....
]

/stories

[
    {
        "id": 1,
        "title": "Planet Paralax"
    },
    {
        "id": 2,
        "title": "The Parking Meter"
    },
    {
        "id": 3,
        "title": "Vacation in Thailand"
    },
    .....
    .....
]

/stories/:id

{
    "id": 1,
    "title": "Planet Paralax",
    "genre": "Sci-Fi",
    "paragraphs": [
        {
            "id": 6,
            "rich_text_str": "<p><strong>Out of nowhere, a huge rock fell from the sky and crushed Clorax.</strong></p>\n<p><br/></p>\n<p><em>Squish</em></p>\n<p><br/></p>\n<p>Clorax turned into a puddle, and let the boulder pass right through her liquid form. The impact from the rock colliding with the earth propelled Clorax upwards into the sky, where she was able to re-solidify and shift into physical form with wings.</p>\n<p><br/></p>\n<p>She glided quickly towards her brother. Once she caught up with him, she stopped him and said, \"We have to go back for the backpack I dropped.\"</p>\n<p><br/></p>",
            "created_at": "2022-10-05T18:21:28.853Z",
            "author": "Matt Kohn"
        },
        {
            "id": 8,
            "rich_text_str": "<p>We'll have to come back to find it. Right now we need to get up to the control room to turn off the <em>terraforming engine</em>!</p>",
            "created_at": "2022-10-05T18:33:07.792Z",
            "author": "Tyler Parrayo"
        },
        .....
        .....
]

POST requests (back)

  1. Logging in or Signing up

/login

{
    "username": "Matt",
    "password": "happy"
}

/signup

{
    "username": "test4",
    "password": "happy",
    "password_confirmation": "happy"
}

Response from API:

{
    "id": 1,
    "username": "Matt Kohn",
    "password_digest": "$2a$12$MfRriWM/5jg0akL3t61HZuRi1pYGKBu.QL2sBjLVBf3etI3.cU6fq",
    "created_at": "2022-10-05T18:00:38.775Z",
    "updated_at": "2022-10-05T18:00:38.775Z"
}
  1. Creating new authors

/authors

{
    "name": "Tiger Woods"
}

Response from API:

{
    "id": 13,
    "name": "Tiger Woods"
}
  1. Creating new stories

/stories

{
    "genre_id": 1,
    "title": "postman test2"
}

/stories/:id/paragraphs/:id

{
    "author_id":4,
    "rich_text_str": "<h1>My name is AWESOME.</h1>"
}

PATCH requests (back)

/stories/:id/paragraphs/:id

{
    "author_id":4,
    "rich_text_str": "<h1>My paragraph is super cool.</h1>"
}

DELETE requests (back)

Logging out response with: /logout

{
    "error": "Successfully logged out"
}

Delete paragraph response with /stories/:id/paragraphs/:id

{
    "id": 28,
    "rich_text_str": "<h4><em>Here you go!</em></h4>",
    "created_at": "2022-10-06T15:00:12.816Z",
    "author": "New Name"
}

License

Read the license here

About

Storyteller is a turn-based creative writing app using React, Rails, Postgresql, BCrypt, and is hosted on Heroku.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published