~nik90/cliffhanger/develop

« back to all changes in this revision

Viewing changes to models/Cast.qml

  • Committer: Nekhelesh Ramananthan
  • Date: 2014-04-07 11:46:45 UTC
  • Revision ID: git-v1:15b7b9a5b286031bcf2b8a1ae65f4732f92aa847
Added all the project files

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*
 
2
 * Flashback - Entertainment app for Ubuntu
 
3
 * Copyright (C) 2013, 2014 Nekhelesh Ramananthan <nik90@ubuntu.com>
 
4
 *
 
5
 * This program is free software: you can redistribute it and/or modify
 
6
 * it under the terms of the GNU General Public License version 3 as
 
7
 * published by the Free Software Foundation.
 
8
 *
 
9
 * This program is distributed in the hope that it will be useful,
 
10
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 
11
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
12
 * GNU General Public License for more details.
 
13
 *
 
14
 * You should have received a copy of the GNU General Public License
 
15
 * along with this program.  If not, see <http://www.gnu.org/licenses/>.
 
16
 *
 
17
 */
 
18
 
 
19
import QtQuick 2.0
 
20
 
 
21
BaseModel {
 
22
    id: cast
 
23
 
 
24
    function updateJSONModel() {
 
25
        model.clear();
 
26
 
 
27
        var objectArray = JSON.parse(json).cast;
 
28
        for ( var key in objectArray ) {
 
29
            var jo = objectArray[key];
 
30
            model.append({
 
31
                'name': jo.name,
 
32
                'character': jo.character,
 
33
                'id': jo.id,
 
34
                'thumb_url': thumbnail_url(jo.profile_path, "person")
 
35
            });
 
36
        }
 
37
    }
 
38
}