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

From KDE TechBase
No edit summary
m (Fix syntax highlighting.)
(4 intermediate revisions by 3 users not shown)
Line 3: Line 3:
series=JavaScript Plasmoids|
series=JavaScript Plasmoids|


name=JavaScript Plasmoid Cheat Sheet|
name=Now Playing: Advanced DataEngine Usage


pre=[[../DataEngine|Now Playing: Advanced DataEngine Usage Example]]|
pre=[[../NowPlaying|Getting Data: How to retreive data from a data engine]]|


reading=[[../API|JavaScript Plasmoid API reference]]
next=[[../CheatSheet|Cheat Sheet: Common gotchas and useful tips]]|
 
reading=[[../API|JavaScript Plasmoid API reference]], [[../SystemMonitor|How to access systemmonitor data engine]]
}}
}}


Line 20: Line 22:
Create a <tt>contents/code/main.js</tt> file with the following contents:
Create a <tt>contents/code/main.js</tt> file with the following contents:


<code>
<syntaxhighlight lang="javascript">
layout = new LinearLayout(plasmoid);
layout = new LinearLayout(plasmoid);
layout.setOrientation(QtVertical);
layout.orientation = QtVertical;


label = new Label();
label = new Label();
Line 29: Line 31:


function firstSource() {
function firstSource() {
var sources = plasmoid.dataEngine("nowplaying").sources;
var sources = dataEngine("nowplaying").sources;
if (sources.length) {
if (sources.length) {
return sources[0];
return sources[0];
Line 38: Line 40:
}
}


plasmoid.dataUpdate = function(name, data) {
plasmoid.dataUpdated = function(name, data) {
if (source == name) {
if (source == name) {
label.text = 'Info:\n';
label.text = 'Info:\n';
Line 49: Line 51:
source = firstSource();
source = firstSource();


npDataEngine = plasmoid.dataEngine("nowplaying");
npDataEngine = dataEngine("nowplaying");


npDataEngine.sourceRemoved.connect(function(name) {
npDataEngine.sourceRemoved.connect(function(name) {
Line 70: Line 72:
npDataEngine.connectSource(source, plasmoid, 500);
npDataEngine.connectSource(source, plasmoid, 500);
}
}
</code>
</syntaxhighlight>


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.
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.

Revision as of 11:16, 30 June 2011

Now Playing: Advanced DataEngine Usage pre=Getting Data: How to retreive data from a data engine
Tutorial Series   JavaScript Plasmoids
Previous   None
What's Next   Cheat Sheet: Common gotchas and useful tips
Further Reading   JavaScript Plasmoid API reference, How to access systemmonitor data engine

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.