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

hoodie-admin-dashboard-uikit

v3.0.0

Published

A UI kit for building the Admin Dashboard components of Hoodie plugins.

Downloads

29

Readme

hoodie-admin-dashboard-UIKit

Build Status Dependency Status devDependency Status

NOTE: the functionality described here is for version 2.0.0 or higher (should be included with any hoodie-server with a version above 0.9.26).

Screenshot of a plugin styled by the UIKit

Admin Dashboard UIKit is a collection of CSS styles and JS libraries for easier and faster building of Admin Dashboard components for Hoodie Plugins. It includes neat form styles, better select drop-downs with autocomplete, drag-n-drop file upload fields, better checkboxes etc. We encourage the use of this kit when building your own plugins so

  1. you don't have to worry about styling, and
  2. all plugins have a consistent look in their admin panels

It includes a static test page of all available elements that you can copy and paste for use in your Admin Dashboard components, this is at http://yourhoodieendpoint/_api/_plugins/_assets/index.html.

Including the UIKit in your plugin's Admin Dashboard component

Put this in the <head>:<link rel="stylesheet" href="/_api/_plugins/_assets/styles/admin-dashboard-uikit.css">

And this before the closing </body> tag: <script src="/_api/_plugins/_assets/scripts/admin-dashboard-uikit.js"></script>

You'll get basic styles and behaviour for a bunch of UI elements, including nicer checkboxes/radio buttons and better select dropdowns.

You can also have drag n' drop file uploads, please consultthe aforementioned index.html as well as /_api/_plugins/_assets/scripts/main.js for an example of the frontend aspect of this.

In the future, these will be part of a my-first-plugin-repo you can use as a base for your own plugins. Also, there will be a docs page with copy-and-pastable examples and clearer usage explanations.

To explore the UIKit further, browse through http://yourhoodieendpoint/_api/_plugins/_assets/ (final slash matters, sorry). This base path will show you an index of all available files.

Development

Install dependencies and run the preview app on a local webserver with livereload.

npm install -g grunt-cli bower
npm install
bower install
grunt server