Coder Social home page Coder Social logo

sampsontan / raincatcher-workorder Goto Github PK

View Code? Open in Web Editor NEW

This project forked from raincatcher-beta/raincatcher-workorder

0.0 2.0 0.0 172 KB

A workorder model representation and its related services

License: MIT License

JavaScript 51.85% HTML 44.68% CSS 3.46%

raincatcher-workorder's Introduction

FeedHenry RainCatcher workorder Build Status

This module contains a workorder model representation and its related services :

  • Backend services
  • Frontend services
  • Frontend UI templates

Client-side usage

Client-side usage (via broswerify)

Setup

This module is packaged in a CommonJS format, exporting the name of the Angular namespace. The module can be included in an angular.js as follows:

angular.module('app', [
, require('fh-wfm-workorder')
...
])

Integration

Angular controller

A sync manager must first be initialized using the workorderSync.createManager(). This can be placed, for instance, in the resolve config of a ui-router controlled application.

resolve: {
  workorderManager: function(workorderSync) {
    return workorderSync.createManager();
  }
}

For a more complete example, please check the demo portal app.

workorderSync API

These workorderSync API methods all return Promises:

workorderSync method Description
workorderSync.manager.list list all workorders
workorderSync.manager.create(workorder) create a workorder
workorderSync.manager.read(workorderId) read a workorder
workorderSync.manager.update(workorder) update a workorder

Workorder directives

Name Attributes
workorder-list workorders, resultMap, selectedModel
workorder workorder, assignee, status
workorder-form value, workflows, workers
workorder-status status
workorder-sunbmission-result result, step

Usage in an express backend

Setup

The server-side component of this RainCatcher module exports a function that takes express and mediator instances as parameters, as in:

var express = require('express')
  , app = express()
  , mbaasExpress = mbaasApi.mbaasExpress()
  , mediator = require('fh-wfm-mediator/lib/mediator')
  ;

// configure the express app
...

// setup the wfm workorder sync server
require('fh-wfm-workorder/server')(mediator, app, mbaasExpress);

Server side events

the module broadcasts, and listens for the following events

Listens for Responds with
wfm:workorder:list done:wfm:workorder:list
wfm:workorder:read done:wfm:workorder:read
wfm:workorder:update done:wfm:workorder:update
wfm:workorder:create done:wfm:workorder:create

Integration

Check this demo cloud application

Workorder data structure example

  {
     id: 1276001,
     workflowId: '1339',
     assignee: '156340',
     type: 'Job Order',
     title: 'Footpath in disrepair',
     status: 'New',
     startTimestamp: '2015-10-22T14:00:00Z',
     address: '1795 Davie St, Vancouver, BC V6G 2M9',
     location: [49.287227, -123.141489],
     summary: 'Please remove damaged kerb and SUPPLY AND FIX 1X DROP KERB CENTRE BN 125 X 150 cart away from site outside number 3.'
  }

raincatcher-workorder's People

Contributors

bleathem avatar andresgalante avatar sebastienblanc avatar danbev avatar nialldonnellyfh avatar paolobueno avatar matzew avatar pmdarrow avatar

Watchers

 avatar James Cloos avatar

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.