Giter VIP home page Giter VIP logo

ui-message-queue's Introduction

ui-message-queue AKA User Message Queue Javascript implementation

Build Status

Description

ui-message-queue is a Javascript implementation of a message queue allowing you to push messages (simple Strings) to the queue and display in a DOM element via a First In First Out (FIFO) method. This means that you can load up messages and they each have a defined display time after which will be overwritten with the next message or cleared.

The goal is to be as simple as possible to include and use, it's meant for displaying messages to website users rather than queuing backend type tasks.

Check out a demo here.

Features:

  • Add messages to queue; displayed in FIFO order.
  • Select the DOM element to update, falling back to Javascript Alert if not found.
  • No jQuery! Whilst fantastic as it is, can be a pain to have to include jQuery just for one library so we're jQuery free zone.

Contents

This repository contains the following sections:

  1. src - this contains the source Coffeescript.
  2. lib/UiMessageQueue-release.js - the source is then compiled into this Javascript file (copy this to use!).
  3. test/spec/*_spec.coffee - the tests implemented in Jasmine.
  4. test/html/index.html - some real life html with proper Javascript to test this project.
  5. A working demo is available here - check it out to see what UiMessageQueue can do.

Getting started

How to use:

  1. Copy Javascript source from lib/UiMessageQueue-release.js to project

  2. Import source file

    <script type="text/javascript" src="UiMessageQueue-release.js"></script>
  1. Options

Takes options in the form of an object literal:

    options = {
        outputElementId: "output-id",
        delay: TIME_IN_MSECS,
        emptyDisplayString: "STRING"
    };

These are as follows:

  • outputElementId [OPTIONAL] - The ID of the element in the DOM to add messages to. If this is not found then ui-message-queue falls back to using the alert popup box
  • delay [OPTIONAL] - Time in milisecs to display each message for. Throws "Invalid argument" Error if not numeric. Default val is 1000
  • emptyDisplayString [OPTIONAL] - This is message displayed when no messages are in the queue. Default val is "..."

If no options passed then it throws "Missing arguments" Error.

  1. Create instance of object passing options
    var messageQueue = new UiMessageQueue(options);
  1. Add messages to the queue
    messageQueue.push("Here is a message");
    messageQueue.push("Here is another one");
    messageQueue.push("Finally, one more message");

These will be displayed in a FIFO method with each message for that set period of time.

See the demo for a cool, super useful example.

Contributions

Please use the GitHub pull-request mechanism to submit contributions.

Edit the coffeescript source and then compile to js - Do not edit UiMessageQueue-release.js

Testing

Checkout the Cakefile for build and test commands.

# do a build for the test suite
cake build.test

# run tests
cake test

Code style

Run CoffeeLint over the source:

cake test.quality
# or the indentical call
coffeelint src/

Build

To produce a release build, run the build script; this compiles to JS and merges into one file to produce src/UiMessageQueue-release.js.

cake build.release

License

This project is available for use under the MIT software license. See LICENSE

ui-message-queue's People

Contributors

gerhobbelt avatar rob-murray avatar

Watchers

 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.