Giter Club home page Giter Club logo

reactjs-sdk's Introduction

Address Book for React

This repo contains a sample address book application for React that demonstrates how to use the DreamFactory REST API. It includes new user registration, user login, and CRUD for related tables.

#Getting DreamFactory on your local machine

To download and install DreamFactory, follow the instructions here. Alternatively, you can create a free hosted developer account at www.dreamfactory.com if you don't want to install DreamFactory locally.

#Configuring your DreamFactory instance to run the app

  • Enable CORS for development purposes.

    • In the admin console, navigate to the Config tab and click on CORS in the left sidebar.
    • Click Add.
    • Set Origin, Paths, and Headers to *.
    • Set Max Age to 0.
    • Allow all HTTP verbs and check the Enabled box.
    • Click update when you are done.
    • More info on setting up CORS is available here.
  • Create a default role for new users and enable open registration

    • In the admin console, click the Roles tab then click Create in the left sidebar.
    • Enter a name for the role and check the Active box.
    • Go to the Access tab.
    • Add a new entry under Service Access (you can make it more restrictive later).
      • set Service = All
      • set Component = *
      • check all HTTP verbs under Access
      • set Requester = API
    • Click Create Role.
    • Click the Services tab, then edit the user service. Go to Config and enable Allow Open Registration.
    • Set the Open Reg Role Id to the name of the role you just created.
    • Make sure Open Reg Email Service Id is blank, so that new users can register without email confirmation.
    • Save changes.
  • Import the package file for the app.

    • From the Apps tab in the admin console, click Import and click 'Address Book for React' in the list of sample apps. The Address Book package contains the application description, source code, schemas, and sample data. This app contains a pre-build bundle.js file (build with Webpack).
    • Leave storage service and folder blank. It will use the default local file service named 'files'.
    • Click the Import button. If successful, your app will appear on the Apps tab. You may have to refresh the page to see your new app in the list.
  • Decide if you're going to run the app locally or load it from the instance.

    • For running locally you clone the repo to your machine and open index.html in the browser. If running locally you need to set the URL for your instance so the app can make the API calls. Go to your local repo and edit script.js. Set the constant INSTANCE_URL to point to your DreamFactory instance such as http://localhost:8080.
    • For running from the instance you launch the app directly from the Apps tab in the admin console. Leave INSTANCE_URL set to empty string.
  • If running from instance make your app files public.

    • Figure out where your app files are stored. If you used the default storage settings to import the app, it'll be the default local file service named 'files'.
    • Go to the Files tab in the admin console. Find your file service. Double click and find the folder for your app, e.g., 'AddressBookForReact'.
    • Go to the Services tab in the admin console and click the 'files' service. Click the Config tab and add the app folder name 'AddressBookForReact' as a public path. Now select the relevant container from the Container drop down. If you used the default storage settings to import the app then select "local" from the drop down list. Save your changes.
  • Edit your app API key

    • If you are running from instance use the file manager to edit public/bundle.js and set APP_API_KEY to the key for your new app. The API key is shown on the app details in the Apps tab of the admin console.
    • If you are running locally edit script.js in your local repo.
  • Make sure you have a SQL database service named 'db'. Most DreamFactory instances have a default 'db' service for SQLite. You can add one by going to the Services tab in the admin console and creating a new SQL service. Make sure you set the name to 'db'.

#Running the Address Book app

You can launch the app from the Apps tab in the admin console, or by opening your local index.html in your browser.

When the app starts up you can register a new user, or log in as an existing user. Currently the app does not support registering and logging in admin users.

#Stand-Alone App

The package file is pre-build with Webpack, with all necessary dependencies and sample data. The React Address Book sample app can also be run as a stand-alone web application on your locale machine. Follow these steps to install the app and dependencies, configure and build the application from command line:

##Prerequisites

  • node v4.x.x higher and npm 2.14.7
  • to develop independently, without having to put source files in df instance, make sure cors is enabled and necessary permissions are given to services in your df instance

##Run project

git clone https://github.com/dreamfactorysoftware/reactjs-sdk.git
cd reactjs-sdk
# paste your dsp_instance_url and app_key in app/config/config.ts
# install the project's dependencies
npm install
# Build your files and use watch to rebuild on changes
webpack -w

Webpack builds the public/bundle.js file, based on source files, dependencies etc.

#Example API calls

The DreamFactory Address Book for React uses AJAX to make API calls.

The general form of a DreamFactory REST API call is:

<rest-verb> http[s]://<server-name>/api/v2/[<service-api-name>]/[<resource-path>][?<param-name>=<param-value>]

The JavaScript app AJAX call format is:

     dataType: String
  contentType: String
          url: String
         data: String,Object
       method: String
      headers: Object

Breaking down each parameter:

  • dataType Format of the returned data. This depends on the application, but will typically be JSON.
  • contentType The format of data sent to the API. This is commonly JSON and char set UTF-8.
  • url Holds the value of http[s]://<server-name>/api/v2/[<service-api-name>]/[<resource-path>] from the generic call. You can include the query parameters here. However, it is easier and cleaner to pass in the query parameters by using the data parameter than it is to format them into the url.
  • data The (optional) query parameters.
  • method The REST verb.
  • headers The header object must include the app specific API key and a session token.

Examples of log in and registration:

#####Login:

// if the app is imported to the DreamFactory 2.0 instance leave INSTANCE_URL blank. Email and password are typically input fields in the app UI.
var INSTANCE_URL = 'http[s]://<server-name>';
var email         = '[email protected]';
var password      = 'mypassword';

$.ajax({
   dataType: 'json',
   contentType: 'application/json; charset=utf-8',
   url: INSTANCE_URL + '/api/v2/user/session',
   data: JSON.stringify({
      'email': email,
      'password': password
   }),
   method:'POST',
   success:function (response) {
      // Handle success
   },
   error:function (response) {
      // Handle error
   }
});

The user/session API request will return a session token.

#####Registration:

// Email and password are typically input fields in the app UI.
var firstname    = 'firstname';
var lastname     = 'lastname';
var email        = 'email';
var new_password = 'new_password';

$.ajax({
   dataType: 'json',
   contentType: 'application/json; charset=utf-8',
   url: INSTANCE_URL + '/api/v2/user/register?login=true',
   data: JSON.stringify({
      'first_name': firstname,
      'last_name': lastname,
      'email': email,
      'new_password': password
   }),
   method:'POST',
   success:function (response) {
      // Handle success
   },
   error:function (response) {
      // Handle error
   }
});

The API request will return a session token when the (optional) login=true parameter is appended to the url. So with this parameter appended, the new registered user doesn't have to login to get a session token.

The login and registration examples illustrates how to make API requests to DreamFactory 2.0. See an example of how to get records and how to store a record (Groups) below. The examples assume the following are set:

var INSTANCE_URL = 'http[s]://<server-name>';
var API_KEY      = '';
var ACCESS_TOKEN = '';

Examples of fetching records

#####all records in table:

// Make API call to get all records from the **contact_group** table.

$.ajax({
  dataType: 'json',
  contentType: 'application/json; charset=utf-8',
  url: INSTANCE_URL + '/api/v2/db/_table/contact_group',
  cache:false,
  method:'GET',
  headers: {
      "X-DreamFactory-API-Key": API_KEY,
      "X-DreamFactory-Session-Token": ACCESS_TOKEN
  },
  success:function (response) {
    // Handle success
  },
  error:function (response) {
    // Handle error
  }

###Example of creating a record

#####single record:

// Store a group by posting a stringified object. The API request will return the new group id if successful.
var group  = { name: 'My Group' };
var params = JSON.stringify(group);

$.ajax({
  dataType: 'json',
  contentType: 'application/json; charset=utf-8',
  url: url + '/api/v2/db/_table/contact_group',
  data: params,
  cache:false,
  method:'POST',
  headers: {
    "X-DreamFactory-API-Key": key,
    "X-DreamFactory-Session-Token": token
  },
  success:function (response) {                    
    // ID of the new group is returned (response.resource[0].id)
  },
  error:function (response) {
    // Handle error
  }  

#Additional Resources

More detailed information on the DreamFactory REST API is available here.

The live API documentation included in the admin console is a great way to learn how the DreamFactory REST API works.

The Address Book for JavaScript here can also be useful for inspiration.

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.