Yhenni1989 Plush Save

Pictures sharing app with Expo, React Native, Apollo GraphQL, and AWS Amplify.

Project README

Plush

Plush

Plush is a full-stack mobile application for pictures sharing. It uses Expo and React Native for the front end, AWS Amplify as the back-end service, and the API service is built with GraphQL.

Demo

Demo video of the app functionalities in here.

Overview

After sign up/sign in, users can perform the following:

  • Give access to their mobile device library by pressing the camera icon in the header.
  • Upload pictures to the feed.
  • Like and unlike pictures (from other users and their own).
  • Refresh the feed by pull-to-refresh or by pressing the reload button in the header.
  • Flag inappropriate content by pressing the options icon in the image card footer.
  • Remove their own pictures from the feed. Also available in the options icon.

App flow

  • Users are authenticated using out of the box AWS Amplify authentication flow.

  • Users a redirected to the only screen of the app: the feed.

  • When a user uploads a picture:

    • A put request with RNS3 will store the file in an AWS-S3 bucket.
    • An Apollo graphql mutation will store a record in a DynamoDB Picture table.
  • When a user flags inappropriate content:

    • An AppSync Client graphql mutation will store a record in a DynamoDB Flag table.
    • The front-end will hide that picture from the user's feed.
  • When a user likes/unlikes a picture:

    • An AppSync Client graphql mutation will create a like instance in a DynamoDB Like table.
    • An AppSync Client graphql mutation will destroy that like instance from the DynamoDB Like table.
  • When a user deletes a picture:

    • A remove request with the Amplify Storage API will delete the associated file from the AWS-S3 bucket.
    • An Apollo graphql mutation will destroy the record from the DynamoDB Picture table.
    • The feed is refreshed to display the current pictures.
  • When a user refreshes the feed:

    • An AppSync Client graphql query will request all the current pictures stored in the DynamoDB Picture table.

Prerequisites

To run this app on your local machine, you need the following tools:

Configuring the back-end

  1. Clone this repo to your local machine.
git clone https://github.com/yhenni1989/plush

cd plush
  1. Add AWS Amplify dependencies to your project.
yarn add aws-amplify aws-amplify-react-native

# or

npm install aws-amplify aws-amplify-react-native
  1. Initialise the AWS Amplify project.
amplify init
  1. Follow the same instructions as below.
init
  1. Configure an Amazon Cognito User Pool to store users credentials.
amplify add auth

# When prompt, choose: Yes, use the default configuration.
  1. Add an Amazon S3 bucket to store pictures.
amplify add storage

# Choose: Content (Images, audio, video, etc.)
# Give access to only authenticated users.
# Give users read/write acces.
  1. Add GraphQL API to your project.
amplify add api

# Choose GraphQL as the API service. 
# Choose an authorization type for the API: Amazon Cognito User Pool
# Do you have an annotated GraphQL schema? Yes
# Provide your schema file path: src/graphQL/schema.graphql
  • The schema for this project, located at src/graphQL/schema.graphql, looks like this:
type Picture @model {
  id: ID!
  pictureOwnerId: String!
  pictureOwnerUsername: String!
  visibility: Visibility
  file: S3Object
  likes: [Like] @connection(name: "PictureLikes")
  flags: [Flag] @connection(name: "PictureFlags")
}

type Like @model {
  id: ID!
  likeOwnerId: String!
  likeOwnerUsername: String!
  picture: Picture @connection(name: "PictureLikes")
}

type Flag @model {
  id: ID!
  flagOwnerId: String!
  flagOwnerUsername: String!
  picture: Picture @connection(name: "PictureFlags")
}

type S3Object {
  bucket: String!
  region: String!
  key: String!
  uri: String!
}

enum Visibility {
  public
  private
}
  • Picture, Like, and Flag are all DynamoDB tables used to store the data from users input.
  1. Time to deploy your project to the cloud :stuck_out_tongue:.
amplify push
cloudformation
Do you want to generate code for your newly created GraphQL API: No.

The AWS Amplify CLI will create an Amazon Cognito User Pool and Identity Pool, an Amazon S3 bucket to store each users pictures and an AWS AppSync GraphQL API that uses Amazon DynamoDB to store metadata about the pictures (i.e. bucket name, likes, flags, owner, date of creation ... etc).

Running the application

  1. Install client dependencies.
yarn

# or

npm install
  1. You will need your AWS IAM credentials to access your S3 bucket.
  • Copy your access and secret keys in the src/myKeys.js file of your project.
const keys = {
 accessKey: 'blablabla',
 secretKey: 'blablabla',
}
export default keys
  • Save the changes.
  1. Now you are ready to launch and test the app :rocket:.
expo start --ios

# or

expo start --android
  1. Create a new user.
  • The app uses the Higher Order Component withAuthenticator (HOC) from AWS Amplify to perform the authentication flow: sign up, confirm sign up and sign in users.
  1. Add and display pictures.
  • If the application runs successfully you should be able to press the camera icon, allow access to the device library, and select a picture from your device. This will upload the picture to S3 then make a GraphQL call to enter the record into DynamoDB.

  • You can then press the refresh button to display the picture on the screen.

  • You can like/unlike and flag other users pictures, and delete your own pictures.

Want to contribute ?

  • If you like this project, help me grow and improve it by sending pull requests :muscle:.
Open Source Agenda is not affiliated with "Yhenni1989 Plush" Project. README Source: youneshenniwrites/Plush

Open Source Agenda Badge

Open Source Agenda Rating