Git Product home page Git Product logo

grouppost's Introduction

GroupPost

Deploy to Azure

Responsive note taking single page application designed to perform well as a native hosted web application on Windows. Feature detection and access to Windows APIs directly from JS when running as an application on Windows with browser fallbacks.

Notes

Notes are taken within a "PostIt Note" and are of text input (letters and numbers). Individual note backgrounds can be set to a pictures taken from the webcam.

Login

Currently only supports Facebook login. Once logged in the user will be able to add notes. Notes are currently private so only the user posting will be able to view them.

Integration with Windows Platfrom

Before each function is called feature detection is done to dermine if the Windows namespace is available.

if (typeof Windows != "undefined") {
	//Call the function for platfrom integration
}

Camera Capture

function winRTCapture (divID) {
  //Initialize windows media camera capture
  var captureUI = new Windows.Media.Capture.CameraCaptureUI();
  
  //Set the format of the picture that's going to be captured (.png or .jpg)
  captureUI.photoSettings.format = Windows.Media.Capture.CameraCaptureUIPhotoFormat.png;

  //Pop up the camera UI to take a picture
  captureUI.captureFileAsync(Windows.Media.Capture.CameraCaptureUIMode.photo).then(function (capturedItem) {
     if (capturedItem) {
        //Do stuff with the image
     }
     else {
        //Taking a picture has failed
     }
  });
}

Storage

The notes and backgtound pictures are stored on Firebase levaraging callbacks for live syncing and updates across clients.

Coming Soon

  • Sharing note boards across groups of Facebook friends
  • Live updates to notes across multiple devices
  • More Facebook integration
  • Twitter login and integration

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.