Development/Tutorials/Plasma4/JavaScript/NowPlaying: Difference between revisions

    From KDE TechBase
    No edit summary
    No edit summary
    Line 7: Line 7:
    pre=[[../NowPlaying|Getting Data: How to retreive data from a data engine]]|
    pre=[[../NowPlaying|Getting Data: How to retreive data from a data engine]]|


    next=[[../SystemMonitor|System Monitor: How to access systemmonitor data engine]|
    next=[[../SystemMonitor|System Monitor: How to access systemmonitor data engine]]|


    reading=[[../API|JavaScript Plasmoid API reference]], [[../SystemMonitor|How to access systemmonitor data engine]]
    reading=[[../API|JavaScript Plasmoid API reference]], [[../SystemMonitor|How to access systemmonitor data engine]]

    Revision as of 17:17, 6 May 2013

    Now Playing: Advanced DataEngine Usage

    Abstract

    This will show you some slightly more advanced techniques for dealing with data engines, and give you a useful plasmoid at the end that you can easily edit to display custom information about what your favourite media player is playing (providing, of course, that your favourite media player is supported by the nowplaying data engine).

    We assume you've read the JavaScript data engine tutorial.

    Main script

    Create a contents/code/main.js file with the following contents:

    layout = new LinearLayout(plasmoid);
    layout.orientation = QtVertical;
    
    label = new Label();
    layout.addItem(label);
    label.text = "No player found";
    
    function firstSource() {
    	var sources = dataEngine("nowplaying").sources;
    	if (sources.length) {
    		return sources[0];
    	} else {
    		label.text = "No player found";
    		return '';
    	}
    }
    
    plasmoid.dataUpdated = function(name, data) {
    	if (source == name) {
    		label.text = 'Info:\n';
    		for (var key in data) {
    			label.text += key + ': ' + data[key] + '\n';	
    		}
    	}
    }
    
    source = firstSource();
    
    npDataEngine = dataEngine("nowplaying");
    
    npDataEngine.sourceRemoved.connect(function(name) {
    	if (name == source) {
    		source = firstSource();
    		if (source) {
    			npDataEngine.connect(source, plasmoid, 500);
    		}
    	}
    });
    
    npDataEngine.sourceAdded.connect(function(name) {
    	if (!source) {
    		source = name;
    		npDataEngine.connect(source, plasmoid, 500);
    	}
    });
    
    if (source) {
    	npDataEngine.connectSource(source, plasmoid, 500);
    }
    

    It looks complicated, compared to the two previous tutorials, but there is really only one new thing, and that is that we're watching for sources appearing and disappearing.

    The nowplaying data engine makes sources appear and disappear as media players come and go. This plasmoid is a little stupid and only ever watches the first source in the list, but that will be enough for us.

    The magic is in listening to the sourceAdded and sourceRemoved signals of the data engine. These, unsuprisingly, are emitted when the sources property of the data engine, which lists all known sources, changes. Note that it may be possible to sensibly request sources that are not in the sources property of a data engine - for example, the twitter data engine has a theoretically infinite number of sources available, one for each possible twitter account, and these cannot possibly be listed in the sources property.

    You can learn more about using signals and slots in JavaScript in the QtScript documentation. Remember that any property, signal or slot and any method tagged with Q_INVOKABLE (see the Plasma API documentation for which methods this applies to) can be called from JavaScript.

    Challenge

    Modify plasmoid.dataUpdate to display the information you care about, rather than all the information provided by the nowplaying data engine.