Skip to content

Rise-Vision/rise-storage

Repository files navigation

Rise Storage Web Component CircleCI

Introduction

The rise-storage Web Component uses Google’s Storage API to retrieve the URL of a file, or the URLs of all files within a folder, from Rise Storage. If the Rise Cache application is running, it will be utilized for local storage of the files, and the URLs returned by the web component will point to Rise Cache. Otherwise, if Rise Cache is not running, the browser's cache will be utilized.

Folders and files are monitored for changes if the refresh attribute is set, although a minimum refresh time of 5 minutes is enforced.

Filtering

Files can optionally be filtered by file type or content type. This feature is meant to be used when returning multiple files in a folder, and so will only take effect when a folder attribute is specified but not a fileName, or if neither a folder nor a fileName attribute are specified (in which case files in the root bucket would be returned).

To filter by file type, a fileType attribute should be added to the <rise-storage> element. fileType can be either image or video, in which case only those files that are images (jpg, png, bmp, svg, gif, webp) or HTML5 videos (mp4, webm) will be returned.

Alternatively, the contentType attribute can be used to filter by a specific content type. Multiple content types can be specified by separating them with a space.

Examples

<rise-storage companyId="my-company-id" folder="my-folder" fileType="image">
</rise-storage>

<rise-storage companyId="my-company-id" contentType="image/png image/jpeg">
</rise-storage>

Sorting

Files can optionally be sorted by filename, modified date or randomly. This feature is meant to be used when returning multiple files in a folder, and so will only take effect when a folder attribute is specified but not a fileName, or if neither a folder nor a fileName attribute are specified (in which case files in the root bucket would be returned).

To specify a sort order, a sort attribute should be added to the <rise-storage> element. sort can be one of name, date or random.

To specify a direction, the sortDirection attribute should be used. sortDirection can be either asc or desc. If the sort attribute is set to random, then sortDirection is ignored. If the sort attribute is name or date, but sortDirection is not specified, the files will be sorted in ascending order.

Example

<rise-storage companyId="my-company-id" folder="my-folder" sort="name" sortDirection="desc">
</rise-storage>

Rise Storage Web Component works in conjunction with Rise Vision, the digital signage management application that runs on Google Cloud.

At this time Chrome is the only browser that this project and Rise Vision supports.

Usage

To use the Rise Storage Web Component, you should first install it using Bower:

bower install https://github.com/Rise-Vision/rise-storage.git

Next, construct your HTML page. You should include webcomponents.js before any code that touches the DOM, and load the web component using an HTML Import. For example:

<!DOCTYPE html>
<html>
  <head>
    <script src="bower_components/webcomponentsjs/webcomponents-lite.js"></script>
    <link rel="import" href="bower_components/rise-storage/rise-storage.html">
  </head>
  <body>
    <rise-storage
      companyId="my-company-id"
      folder="my-folder"
      fileName="my-image.png"
      refresh="60"></rise-storage>

    <script>
      // Wait for 'WebComponentsReady'.
      window.addEventListener('WebComponentsReady', function(e) {
        var storage = document.querySelector('rise-storage');

        // Respond to events it fires.
        storage.addEventListener('rise-storage-response', function(e) {
          if (e.detail) {
            console.log(e.detail.url); // URL to the file.
          }
        });

        storage.go(); // Call its API methods.
      });
    </script>
  </body>
</html>

You can get the companyId by copying the value of the cid parameter in the URL when logged into the Rise Vision platform:

company-id

The web component returns a JSON response for each file matching the provided criteria with the following format (one message per file):

{
  "url": "http://url.to.file",
  "added": "boolean indicating if the file has just been added",
  "changed": "boolean indicating if the file has changed since the previous message",
  "deleted": "boolean indicating if the file has been deleted since the previous message",
}

Documentation

For further documentation on rise-storage attributes, methods, usage, and a comprehensive demo, please see here.

Built With

Development

Dependencies

  • Git - Git is a free and open source distributed version control system that is used to manage our source code on Github.
  • npm & Node.js - npm is the default package manager for Node.js. npm runs through the command line and manages dependencies for an application. These dependencies are listed in the package.json file.
  • Bower - Bower is a package manager for Javascript libraries and frameworks. All third-party Javascript dependencies are listed in the bower.json file.
  • Gulp - Gulp is a Javascript task runner. It lints, runs unit and E2E (end-to-end) tests, minimizes files, etc. Gulp tasks are defined in gulpfile.js.
  • Polyserve - A simple web server for using bower components locally.

Local Development Environment Setup and Installation

To make changes to the web component, you'll first need to install the dependencies:

  • Git
  • Node.js and npm
  • Bower - To install Bower, run the following command in Terminal: npm install -g bower. Should you encounter any errors, try running the following command instead: sudo npm install -g bower.
  • Gulp - To install Gulp, run the following command in Terminal: npm install -g gulp. Should you encounter any errors, try running the following command instead: sudo npm install -g gulp.

The web components can now be installed by executing the following commands in Terminal:

git clone https://github.com/Rise-Vision/rise-storage.git
cd rise-storage
npm install
bower install

Run Locally

To access the demo locally, run the following command in Terminal: polyserve

Now in your browser, navigate to:

localhost:8080/components/rise-storage/demo/index.html

Testing

You can run the suite of tests either by command terminal or via a local web server using Polyserve.

Command Terminal

Execute the following command in Terminal to run tests:

gulp test

Local Server

Run the following command in Terminal: polyserve.

Now in your browser, navigate to:

localhost:8080/components/rise-storage/test/index.html

Deployment

Once you are satisifed with your changes, deploy the contents of the bower_components folder to a folder on your server and also create a rise-storage folder within your folder and upload rise-storage.html to it. You can then use the web component by following the Usage instructions.

Submitting Issues

If you encounter problems or find defects we really want to hear about them. If you could take the time to add them as issues to this Repository it would be most appreciated. When reporting issues, please use the following format where applicable:

Reproduction Steps

  1. did this
  2. then that
  3. followed by this (screenshots / video captures always help)

Expected Results

What you expected to happen.

Actual Results

What actually happened. (screenshots / video captures always help)

Contributing

All contributions are greatly appreciated and welcome! If you would first like to sound out your contribution ideas, please post your thoughts to our community, otherwise submit a pull request and we will do our best to incorporate it. Please be sure to submit test cases with your code changes where appropriate.

Resources

If you have any questions or problems, please don't hesitate to join our lively and responsive community at http://community.risevision.com.

If you are looking for user documentation on Rise Vision, please see http://www.risevision.com/help/users/

If you would like more information on developing applications for Rise Vision, please visit http://www.risevision.com/help/developers/.

Facilitator

Stuart Lees