~carla-sella/ubuntu-rssreader-app/view-feeds-test

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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
import QtQuick 2.0
import QtQuick.XmlListModel 2.0
import Ubuntu.Components 0.1
import Ubuntu.Components.ListItems 0.1 as ListItem
import Ubuntu.Components.Popups 0.1
import "./feeds"
import "./listview"

import "./databasemodule_v2.js" as DB
import "./imgSeparator.js" as ImageUtils

MainView {
    // objectName for functional testing purposes (autopilot-qt5)
    id: mainView
    objectName: "mainView"
    applicationName: "RSS reader"

    width: units.gu(50)
    height: units.gu(75)

    headerColor: "#583437"
    backgroundColor: "#624251"
    footerColor: "#65445a"

    Component.onCompleted:
    {
        //////////////////////////////////////////////////////////////  below DB operation is for avoid empty db
//         DB.dropTable()
        var feeds = DB.loadFeeds();

        if (feeds.rows.length < 1)
        {
            DB.addFeed("" , "http://news.yahoo.com/rss/topstories");
            DB.addFeed("" , "http://news.yahoo.com/rss/tech");
            DB.addFeed("" , "http://www.engadget.com/rss.xml");
            DB.addFeed("" , "http://qtrosapps.hostenko.com/feed/")
            DB.addTag("news");
            DB.addTag("tech");
            DB.addTag("engadget");
            DB.addFeedTag(1, 1) ;
            DB.addFeedTag(2, 2) ;
            DB.addFeedTag(3, 3) ;
            refresh() ;
        }

        else repeater.reloadTabs() ;     // load tabs from db

    }

    function refresh()             //  download all articles
    {
        var feeds = DB.loadFeeds();
        var feedarray = [] ;
        for (var i=0; i< feeds.rows.length; i++)
        {
            feedarray.push(feeds.rows.item(i));
        }
        xmlnetwork.addFeedList(feedarray);
    }

    function toRssPage(model, index)     //   go to single article page     // bugs remain
    {
        feed_page.setFeed(model, index)
        pageStack.push(feed_page)
    }

    function toEditFeed(feedid, title, url, pTopicId)
    {
        editFeed.setValues(feedid, title, url, pTopicId) ;
        pageStack.push(editFeed) ;
    }

    PageStack {
        id: pageStack

        property bool isListView: false // TODO use options.

        anchors.fill: parent

        Component.onCompleted:
        {
            if (isListView)
                push(feedListPage)
            else push(tabs);                      // use tabs as first page
            // push(editFeedsPage);
        }

        onCurrentPageChanged: {
            if (currentPage != null) {
                console.log("PageStack onCurrentPageChanged", currentPage.title)
                if (currentPage.reloadPageContent)
                    currentPage.reloadPageContent()
            }
        }

        ToolbarItems {
            id: mainCommonToolbar

            back: ToolbarButton {
                action: Action {
                    text:  i18n.tr("Refresh")
                    iconSource: Qt.resolvedUrl("./icons_tmp/reload.svg")
                    onTriggered:
                    {
                        refresh();
                        toolbar.opened = false;
                    }
                }
            }

            ToolbarButton {
                action: Action {
                    id: changeModeAction

                    text:  pageStack.isListView ? i18n.tr("Shorts") : i18n.tr("List view")
                    iconSource: pageStack.isListView ? Qt.resolvedUrl("./icons_tmp/view-fullscreen.svg") : Qt.resolvedUrl("./icons_tmp/view-fullscreen.svg")
                    onTriggered: {
                        if (pageStack.isListView) {
                            pageStack.pop()
                            pageStack.push(tabs)
                        } else {
                            pageStack.pop()
                            pageStack.push(feedListPage)
                        }

                        pageStack.isListView = !pageStack.isListView
                        mainCommonToolbar.opened = false
                    }
                }
            }

            ToolbarButton {
                id: addReadsBtn
                action: Action {
                    text:  i18n.tr("Add reads")
                    iconSource: Qt.resolvedUrl("./icons_tmp/add.svg")
                    onTriggered: {
                        // pageStack.push(editFeedsPage)
                        PopupUtils.open(addReadsPopoverComp, addReadsBtn)
                    }
                }
            }

            ToolbarButton {
                action: Action {
                    text:  i18n.tr("Edit topics")
                    iconSource: Qt.resolvedUrl("./icons_tmp/edit.svg")
                    onTriggered: {
//                        pageStack.push(editFeedsPage)
                        pageStack.push(topicManagement) ;
                    }
                }
            }
        }



        Page
        {
            id: tabs
            visible: false
            anchors.fill: parent


            Tabs {
                id: tabstabs
//                visible: parent.visible

                anchors.fill: parent
    //            anchors.topMargin: units.gu(3)
    //            anchors.bottomMargin: units.gu(7)
                //            title: i18n.tr("Shorts")
                // anchors.margins: units.gu(4)

                function reloadPageContent() {

                }

                Tab {
                    objectName: "Tab0"

                    title: i18n.tr("Shorts")
                    page: Page {
                        //                    anchors.margins: units.gu(2)

                        tools: mainCommonToolbar

                        Component.onCompleted: shorts_view.reload() ;

                        ListColumnView
                        {
                            id: shorts_view
                            //                        anchors.margins: units.gu(2)
                            isAll: true
                        }

                    }
                }

                Repeater
                {
                    id: repeater
                    model: 0
                    TopicTab{  }

                    function reloadTabs()
                    {
                        repeater.model = 0 ;
                        var tags = DB.loadTags()
                        repeater.model = tags.rows.length ;
                        for (var i=0; i< tags.rows.length; i++)
                        {
                            console.log(JSON.stringify(tags.rows.item(i)));
                            repeater.itemAt(i).title = tags.rows.item(i).name ;
                            repeater.itemAt(i).tag_id = tags.rows.item(i).id ;
                            repeater.itemAt(i).isAll = false ;
                            repeater.itemAt(i).reload() ;
                        }
                    }
                }
            }
        } // Page "Shorts"




        // ************************************************************* ////////////////////////////////////


        ManageFeedsPage {
            id: editFeedsPage
            visible: false
            flickable: null
        } // Page

        // ************************************************************* ////////////////////////////////////

        CreateTopicPage {
            id: createTopicPage
            visible: false
            flickable: null
        } // Page

        // ************************************************************* ////////////////////////////////////

        ManageTopicsPage {
            id: manageTopicsPage
            flickable: null
            visible: false
        } // Page "Topics"


        // ******************************** APPEND FEED ***********************///////////////

        AppendFeedPage {
            id: appendFeedPage

            title: i18n.tr("Append feed")
            flickable: null
            visible: false
        }


        // ************************ Choose Topic PAGE ******************////////////

        ChooseTopicPage {
            id: chooseTopicPage
        }

        // ************************************************************* ////////////////////////////////////

        RssFeedPage {
            id: feed_page
            visible: false
        }

        TopicManagement  // by Joey
        {
            id: topicManagement
            visible: false
        }

        EditFeed    // by Joey
        {
            id: editFeed
            visible: false
        }

        // ************************************************************* ////////////////////////////////////

        FeedListPage {
            id: feedListPage

            title: i18n.tr("Feeds")
            flickable: null
            visible: false
        }

        // ************************************************************* ////////////////////////////////////

        ArticleListPage {
            id: articleListPage

            title: i18n.tr("Articles")
            flickable: null
            visible: false
        }
    }

    Component {
        id: addReadsPopoverComp

        ActionSelectionPopover {
            id: addReadsPopover

            actions: ActionList {
                id: popoverActionsList

                Action {
                    text: i18n.tr("+ Add feeds")
                    onTriggered: {
                        /* When we want to show "Append feed" page from
                         * any page except of "Choose topic",
                         * we should clear it (mark as dirty).
                         */
                        pageStack.push(appendFeedPage, {"isDirty" : true})
                    }
                }

                Action {
                    text: i18n.tr("+ New topic")
                    onTriggered: {
                        pageStack.push(createTopicPage)
                    }
                }

                Action {
                    text: i18n.tr("Add online accounts")
                    onTriggered: {
                        console.log("NOT IMPLEMENTED")
                    }
                }

                Action {
                    text: i18n.tr("Import subscriptions")
                    onTriggered: {
                        console.log("NOT IMPLEMENTED")
                    }
                }
            } // ActionList
        } // ActionSelectionPopover
    } // Component

    XmlNetwork         //  all download and xml parse functions here
    {
        id: xmlnetwork

        onDownloadFinish:
        {
            shorts_view.reload() ;
            repeater.reloadTabs() ;
        }
    }

    ////////////////////////////////////////////////////////////////////////
    //////////// Connections for handling the add topic and add feed event
    Connections
    {
        id: connAddTopic
        target: createTopicPage

        onTopicAdded:
        {
            shorts_view.reload() ;
            repeater.reloadTabs() ;
        }
    }

    Connections
    {
        id: connAddFeed
        target: chooseTopicPage

        onFeedAdded:
        {
            shorts_view.reload() ;
            repeater.reloadTabs() ;
        }
    }

    // Workaround for https://bugs.launchpad.net/ubuntu-ui-toolkit/+bug/1201400.
    // Inspired by the KeyboardRectangle component, originally written for the
    // telephony application.
    Connections {
        target: Qt.inputMethod

        onVisibleChanged: {
            console.log("keyboard visible: ", Qt.inputMethod.visible)
            if (!Qt.inputMethod.visible) {
                var focusedItem = recursiveFindFocusedItem(window);
                if (focusedItem != null) {
                    focusedItem.focus = false;
                }
            }
        }

        function recursiveFindFocusedItem(parent) {
            if (parent.activeFocus) {
                return parent;
            }

            for (var i in parent.children) {
                var child = parent.children[i];
                if (child.activeFocus) {
                    return child;
                }

                var item = recursiveFindFocusedItem(child);

                if (item != null) {
                    return item;
                }
            }

            return null;
        }
    }
}