UNPKG

tidal-cli-client

Version:

You can now use Tidal on linux. With your loved CLI. <3

14 lines (12 loc) 304 B
const actions = require("../../../actions"); module.exports = (action, store, parent) => { switch (action) { case "OPEN_INPUT_BAR": parent.showTextInputBar(); parent.textInputBar.setValue("search "); break; case "PLAY_NEXT_TRACK": store.dispatch(actions.player.skipTracks(1)); break; } };