1.4.0 • Published 2 years ago

commode v1.4.0

Weekly downloads
3
License
ISC
Repository
github
Last release
2 years ago

commode

Electron-Vue based, iTunes like UI, for file tagging, restructuring, processing, and general management.

npm.io npm.io npm.io npm.io

Theory of Operation

  • iTunes like view of your data
  • You must prepare a directory with data.js, sort.js and filter.js
  • .js before .json, program will seek a .js data file that may load json.
  • You must create data.js/on based on your own data set.

Action Handler Example (work.js)

When you hit play Promise's resolve, reject is sent to an emitter handler, simply perform your operation and call resolve();

emitter.on('example', function({app, item, name, resolve, reject }) {

  // make an indication that you are working on this item
  app.selectItem(item);

  // in this example we uppercase the name of the item...
  item.name = item.name.toUpperCase();

  setTimeout(function(){
    console.log( 'Working on %s.', name );
    // When the thing is done, call resolve...
    resolve();
  },200);


});

Todo

  • More samples
  • drop built-in filter editor (just edit filter.js)
  • maybe drop manual item editor in favor of actions?
1.4.0

2 years ago

1.3.0

3 years ago

1.2.0

5 years ago

1.1.0

5 years ago

1.0.15

6 years ago

1.0.14

6 years ago

1.0.13

6 years ago

1.0.12

6 years ago

1.0.11

6 years ago

1.0.10

6 years ago

1.0.9

6 years ago

1.0.8

6 years ago

1.0.7

6 years ago

1.0.6

6 years ago

1.0.5

7 years ago

1.0.4

7 years ago

1.0.3

7 years ago

1.0.2

7 years ago

1.0.1

7 years ago