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

agk-ui

v0.0.2

Published

User Interface elements using HTMl and ARIA, mainly used for Audio Games

Downloads

6

Readme

AGK-UI

A quick way to render menus for audio games

Audio games' main focus is audio. However, I still wanted a very quick and easy way to create menus using HTML from JavaScript, without touching the DOM directly. So I wrote a library to do it for me.

The same library contains some JavaScript to split a text by a sign of your choosing (Default is \n) and let you advance through the text with a button.

The reason this library came into existence was mobile phones. I was writing audio games for the browser, which is why the whole AGK suite started existing. On mobile, it was tedious to create menus using only audio and WebTTS wasn't reliable.

Installation

Using NPM: npm install agk-ui

Modules

All the components are submoduled. Here's a list.

  • agk-ui/menu: The main menu runner. This is what you use to plug your menu items into and display the menu to the user.
  • agk-ui/menu/items/types: A definition of all the different menu types: ** NORMAL - A simple clickable menu item ** EDIT: An edit box menu item ** SELECTOR: A menu selector item ** SLIDER: A slider menu item
  • agk-ui/menu/items/edititem: The edit box menu item.
  • agk-ui/menu/items/menuitem: A normal menu item
  • agk-ui/menu/items/scrolleritem: A scroller item
  • agk-ui/menu/items/slideritem: A slider item
  • agk-ui/text/scrollingtext: The scrolling text

Usage

HTML

   .interactiveArea {
position: absolute;
top:20%;/* Header Height */
left:0%;
   bottom:10%;/* Footer Height */
   width:80%;height:80%;}
   

JavaScript

import SoundObject from "agk-soundobject"; import ScrollingText from "agk-ui/text/scrollingtext" import EditItem from "agk-ui/menu/items/edititem"; import MenuItem from "agk-ui/menu/items/menuitem"; import SelectorItem from "agk-ui/menu/items/selectoritem"; import SliderItem from "agk-ui/menu/items/slideritem"; import Menu from "agk-ui/menu";

SoundObject.directory = "./sounds/"; SoundObject.extension = ".wav";

let menuSounds = {}; menuSounds.keyChar = SoundObject.create("ui/keyChar"); menuSounds.keyDelete = SoundObject.create("ui/keyDelete"); menuSounds.keyEnter = SoundObject.create("ui/keyEnter"); menuSounds.boundary = SoundObject.create("ui/menuBoundary"); menuSounds.choose = SoundObject.create("ui/menuChoose"); menuSounds.move = SoundObject.create("ui/menuMove"); menuSounds.open = SoundObject.create("ui/menuOpen"); menuSounds.selector = SoundObject.create("ui/menuSelector"); menuSounds.sliderLeft = SoundObject.create("ui/menuSliderLeft"); menuSounds.sliderRight = SoundObject.create("ui/menuSliderRight"); menuSounds.wrap = SoundObject.create("menuWrap"); let textSounds = {}; textSounds.continue = SoundObject.create("ui/textContinue"); textSounds.close = SoundObject.create("ui/textClose"); textSounds.open = SoundObject.create("ui/textOpen");

const item1 = new MenuItem(1, "Meow"); const item2 = new SelectorItem(2, "Male or Female", ["Male","Female"]); const item3 = new EditItem(3, "Enter your name"); const item4 = new SliderItem(4, "Slide meow", 0, 100, 5);

const menu = new Menu(document.getElementById("interaction"), "Select something", [item1, item2, item3, item4], menuSounds); menu.run(e => { menu.destroy(); new ScrollingText(document.getElementById("interaction"), "Menu is done, selected item was " + e.selected + ", \n with all the stuff set to " + JSON.stringify(e.items), "\n", textSounds, () => console.log("All done!")); });

Contributing

Help me make this better. I'm sure you can! <3

License

This code is MIT licensed.