Jonathan Bailey
Jonathan Bailey
I started implementing this a few days ago, and it works, just knowing how to display the results is a bit ugly, I'm passing the name of the directive (view)...
Definitely! I don't know about the others, but I guess it's the same, but I don't consider anything "my" feature :)
I quite agree :) though it seemed like that would be easier to do after making it a single page app (which is necessary to do things like background audio,...
Work should definitely be the priority, though hopefully you don't work yourself to death :) I'm curious what you ideas were for the search?
There are some parts of the implementation I'm not quite happy with, there isn;t really a way to search multiple types of things from the same app (for example tracks...
This looks like it might be helpful: http://blog.barisione.org/2014-09/rpi-browser/ but as far as I can see it doesn't use the frame buffer directly.
I was thinking of adding some kind of actions to mcjs-library-item, currently it would just be "watch" and "edit", and this could be applied to right click menus, pressing enter...
Ah yes I hadn't considered off canvas actions. Perhaps create a remote service/factory to have an array of actions that can be sent from the remote and have directives add...
So like [line 31 in movies](https://github.com/jansmolders86/mediacenterjs/blob/master/apps/movies/views/movies.jade#L31) would be: ``` label.view-select(mcjs-remote-action="query.hidden ? 'Show Hidden' : 'Hide Hidden'" for="showhidden", ng-init="query.hidden='false'", ng-click="query.hidden = query.hidden == 'false' ? '' : 'false'") ``` So when...
I've created a new branch with an implementation of contextual actions. Working for the Show/Hide Hidden button in the Movies app. Is this what you were thinking?