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

jquery.lostofsfileman

v1.0.6

Published

jQuery file manager for lostofs (local storage filesystem)

Downloads

7

Readme

jquery.lostofsfileman Build Status

jQuery file manager plugin for LOSTOFS.

LOSTOFS (LOcal STOrage FileSystem) could be interfaced to GUIs in various ways, this jQuery plugin implements a simple traditional looking file manager.

A demo is available (in the 'demo' folder of the jquery.lostofsfileman distribution). To access the demo, run npm install and grunt build to, among other, things build a LOSTOFS bundle, and then ./node_modules/http-server/bin/http-server demo to run a HTTP server for the demo files.

In a production environment it will probably be more efficient to build your own webpack or browserify bundle.

Usage

Constructor

A LOSTOFS filesystem object must be passed to the jquery.lostofsfileman object, which is just an interface to the filesystem.

let fs = new lostofs_fs({unformatted:'format'});

$('#some_div').lostofsfileman({
    fs: fs
    });

Besides the mandatory fs parameter, dir and menu_shform are additional optional parameters.

Parameter | Description :-- | :-- dir | set the directory displayed (default is /, the root) menu_shform | default false, adds a 'format' option to the file manager menu if true no_header | default is false, removes the header (with the current dir) if true single_dir | default is false, removes . and .. and 'make directory' from the menu menu | default is none, but if an array is given, add extra options to the context menu file_choose | replaces the file selection function, see below

When using menu, menu items must be as per jquery.easymenu, for example the following would add a 'Ping' menu option to the bottom of the filemanagers context menu:

let fm = $('#some_div').lostofsfileman({
    fs: fs,
    menu: [
		{ label: 'Ping', callback: function () { alert('pong'); } }
	]});

When using file_choose the default file selection action function is replaced. The default is usually to download the file, but when integrated as part of a web app it may be required to select the file for the app instead. The function provided will be invoked when a file is double clicked and the file/entity provided as a parameter:

let fm = $('#some_div').lostofsfileman({
    fs: fs,
    file_choose: function (ent) { console.log('choose inode '+ent.inode()); },
	});

Other API calls

new_file

fm.lostofsfileman('new_file', 'new_file.txt');

Creates a new file in the currently displayed directory. Optionally the file content may be given as a third parameter.

A promise is returned which resolves to the new file/entity when the file manager has rerendered.

rename

Call to rename a file in the currently displayed directory.

fm.lostofsfileman('rename', 'some_file.txt');

There is no replacement filename, this initiates a rename in the filemanager, i.e. the filename becomes editable and focused.

rendered

When an event causes the GUI to be rerendered, a promise is created during the render (since the render is based on asynchronous access to a filesystem). This API call returns the promise.

do_thing_that_causes_update(fm);
fm.lostofsfileman('rendered').then(function () {
	do_thing_that_requires_uptodate_render();
});

Events

The 'rendered' event is emitted when ever the plugin finishes rerendering.

Build

run npm install to install the dev/build and demo dependencies, and grunt build to build.

Running the demo

Run ./node_modules/http-server/bin/http-server demo (after build).