npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

oncloud.mobile

v0.4.2

Published

jQuery Mobile based oncloud user interface

Downloads

6

Readme

Logo

oncloud.mobile

=================

NPM version Downloads

NPM

jQuery Mobile based user interface.

Screen

Usage

To use mobile UI you need to create the logical structure in admin.

E.g.: Go to the tab "Enums" and create new enum, e.g. "customs". Slider

Create new enum group in "enum.customs", e.g. "controls" Slider

Add some states to "enum.customs.controls" Slider

Slider

Go to mobile page, press on "Info" (top, right) and press "Refresh" to load objects from oncloud Slider

After reload you can go to "Customs => controls" Slider

Supported types

Sliders:

Slider

- role = "level.dimmer"
- role = "level.blind"
- role consists "level", common.type is "number", common.write is "true" and common.max is defined
- common.type = "number", common.write is "true" and common.max is defined

Example:

{
  "_id": "javascript.0.mobile.inputSlider",
  "type": "state",
  "common": {
    "name": "Slider",
    "type": "number",
    "read": true,
    "write": true,
    "min": 0,
    "max": 100
  },
  "native": {}
}

Buttons (must be explicit set to visible via edit mode):

Button

- role consists "button"
- role consists "action"

Buttons are invisible by default. They just writes "true" if pressed.

Example:

{
  "_id": "javascript.0.mobile.inputButton",
  "type": "state",
  "common": {
    "name": "Button",
    "role": "button",
    "type": "boolean",
    "write": true
  },
  "native": {}
}

Switch:

Switch

- common.type = "boolean", common.write is "true"

Example:

{
  "_id": "javascript.0.mobile.inputSwitch",
  "type": "state",
  "common": {
    "name": "Switch",
    "type": "boolean",
    "write": true
  },
  "native": {}
}

Set with input field:

Input field

- common.type = "number", common.max is undefined, common.write is "true", common.states is undefined

Example:

{
  "_id": "javascript.0.mobile.inputNumber",
  "type": "state",
  "common": {
    "name": "Number",
    "type": "number",
    "write": true
  },
  "native": {}
}

Set with states:

States

- common.type = "number", common.max is undefined, common.write is "true", common.states is defined

Example:

{
  "_id": "javascript.0.mobile.inputNumber",
  "type": "state",
  "common": {
    "name": "Number",
    "type": "number",
    "write": true,
    "states": {
          "1": "Value 1",
          "2": "Value 2"
        }
  },
  "native": {}
}

Show boolean value:

Boolean value

- common.write is "false" and common.type is "boolean"

Example:

{
  "_id": "javascript.0.mobile.valueBoolean",
  "type": "state",
  "common": {
    "name": "Boolean value",
    "type": "bolean"
  },
  "native": {}
}

Show value:

Number value

- common.write is "false" and common.type is not "boolean"

Example:

{
  "_id": "javascript.0.mobile.valueNumber",
  "type": "state",
  "common": {
    "name": "Number value",
    "type": "number",
    "unit": "%"
  },
  "native": {}
}

ToDO:

  • edit of Icon
  • show some widgets with more icons
  • tablet view

Changelog

0.4.11 (2017-07-12)

  • (BasGo) Fixed blind states

0.4.10 (2016-11-08)

  • (bluefox) Better cloud support

0.4.9 (2016-10-29)

  • (bluefox) Fix rooms rendering
  • (bluefox) add green, red, blue, white types

0.4.8 (2016-10-09)

  • (bluefox) implement type blind

0.4.7 (2016-09-10)

  • (bluefox) make narrow screen on wide displays
  • (bluefox) fix some widgets

0.4.6 (2016-09-03)

  • (bluefox) support of custom images
  • (bluefox) fix input number and select value

0.4.5 (2016-07-01)

  • (bluefox) fix open first page

0.4.4 (2016-06-24)

  • (bluefox) reload if problems occur

0.4.3 (2016-06-24)

  • (bluefox) just check invalid objects

0.4.2 (2016-06-14)

  • (bluefox) update version number

0.4.1 (2016-05-12)

  • (bluefox) fix control of logical states

0.4.0

  • (bluefox) add theme switcher

0.3.0

  • (bluefox) fix problem with room names with spaces
  • (bluefox) implement side panel

0.2.2

  • (bluefox) fix locations in edit mode
  • (bluefox) enable visibility of indicators

0.2.1

  • (bluefox) fix some errors

0.2.0

  • (bluefox) sorting and edit name

0.1.1

  • (bluefox) fix errors for some devices

0.1.0

  • (bluefox) edit of visibility

0.0.4

  • (bluefox) first version. No edit possible.

License

The MIT License (MIT)

Copyright (c) 2015-2016 bluefox [email protected]

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.