summaryrefslogtreecommitdiff
path: root/wikipedia/src/endless_wikipedia/ArticleList.js
blob: b79e2e8dcab49a5d24e90efc044f56ec63798f23 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
const GObject = imports.gi.GObject;
const Gtk = imports.gi.Gtk;
const Lang = imports.lang;

const ArticleList = new Lang.Class({
    Name: 'ArticleList',
    Extends: Gtk.ScrolledWindow,
    Signals: {
        'article-chosen': {
            param_types: [GObject.TYPE_STRING, GObject.TYPE_STRING]
        }
    },

    _init: function(props) {
        props = props || {};
        props.hscrollbar_policy = Gtk.PolicyType.NEVER;
        props.vscrollbar_policy = Gtk.PolicyType.AUTOMATIC,
        this.parent(props);

        this._grid = new Gtk.Grid({
            orientation: Gtk.Orientation.VERTICAL,
            vexpand: true
        });
        this.add(this._grid);
    },

    // Takes a list of dictionaries with keys 'title' and 'url'
    setArticles: function(articles) {
        // Remove all existing article links
        this._grid.get_children().forEach(function(element, index, obj) {
            this._grid.remove(element);
        }, this);

        // Create new ones
        articles.forEach(function(element, index, obj) {
            var button = Gtk.Button.new_with_label(element.title.toUpperCase());
            button.image = Gtk.Image.new_from_icon_name('go-next-symbolic',
                Gtk.IconSize.BUTTON);
            button.always_show_image = true; // Don't do this, see BackButton.js
            button.image_position = Gtk.PositionType.RIGHT;
            button.xalign = 0;

            button.connect('clicked', Lang.bind(this, function() {
                this.emit('article-chosen', element.title, element.url);
            }));
            button.show();
            this._grid.add(button);
        }, this);
    }
});