~qqworini/ubuntu-rssreader-app/uitk-1_3

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
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
import QtQuick 2.3
import QtQuick.XmlListModel 2.0
import Ubuntu.Components 1.1
import Ubuntu.Components.ListItems 1.0 as ListItem
import Ubuntu.Components.Popups 1.0
import "./feeds"
import "./listview"

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

MainView {
    id: mainView

    property bool isTabletMode: false // Disabled for now.
//    property bool isTabletMode: {
//        if (width === 0 || height === 0)
//            return
//        return (width > units.gu(90))
//    }

    readonly property real latestDBVersion: 1.2

    objectName: "mainView"
    applicationName: "com.ubuntu.shorts"
    anchorToKeyboard: true

    width: units.gu(100)
    height: units.gu(80)
    focus: true

    useDeprecatedToolbar: false

    headerColor: "#3a2c32"
    backgroundColor: "#875864"
    footerColor: "#9b616c"

    Component.onCompleted: {
        // Update database if the db scheme is old.
        var dbv = parseFloat(optionsKeeper.dbVersion())
        console.log("db version: " , dbv)
        if (dbv < latestDBVersion) {
            if (DB.updateDatabase(dbv)) {
                optionsKeeper.setDbVersion(latestDBVersion)
            }
            else {
                // TODO if update database fail ??
                // TODO We can drop tables and create new
            }
        }

        // Filling DB with default data.
        //DB.dropTable()
        var result = DB.feedsCount()

        if (result.count < 1) {
            DB.addTag("Ubuntu")
            DB.addFeed("" , "http://developer.ubuntu.com/feed/")
            DB.addFeed("" , "http://design.canonical.com/feed/")
            DB.addFeedTag(1, 1)
            DB.addFeedTag(2, 1)
            DB.addTag("Canonical")
            DB.addFeed("" , "http://voices.canonical.com/feed/atom/")
            DB.addFeed("" , "http://insights.ubuntu.com/feed/")
            DB.addFeed("" , "http://blog.canonical.com/feed/")
            DB.addFeedTag(3, 2)
            DB.addFeedTag(4, 2)
            DB.addFeedTag(5, 2)
            topicManagement.reloadTopics()
            refresh()
        } else {
            repeater.reloadTabs()
            /* Update if "isListView" set will be done automatically.
             */
            if (!pageStack.isListView) {
                shortsTab.reloadTab()
                savedTab.reloadTab()
            }
        }
    }

    /* Refresh current topic or all feeds if we are in the Shorts.
     */
    function refresh() {
        var topicId = 0
        if (pageStack.currentPage == tabstabs) {
            var curTab = tabstabs.selectedTab
            topicId = curTab.topicId
        }

        console.log("REFRESH TOPIC", topicId)
        if (topicId == -2) {
            refreshSavedTab()
            return
        }

        var feeds
        if (topicId !== 0)
            feeds = DB.loadFeedsFromTag(topicId)
        else feeds = DB.loadFeeds()

        var feedarray = []
        for (var i=0; i< feeds.rows.length; i++) {
            feedarray.push(feeds.rows.item(i))
        }
        networkManager.updateFeeds(feedarray, topicId)
    }

    function reloadViews(tagId) {
        // savedTab.reload() // Doesn't change with network update.
        tagId = tagId || 0

        shortsTab.reloadTab()
        if (tagId == 0 || !repeater.containsTopic(tagId))
            repeater.reloadTabs()

        tabstabs.selectTopic(tagId)
    }

    // refresh "Saved" Tab
    function refreshSavedTab() {
        savedTab.reloadTab()
    }

    function showArticle(model, index) {      //   go to single article page
        articlePage.setFeed(model, index)
        pageStack.push(articlePage)
    }

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

    //  change the topic name if the name changed by management
    function changeTopicName(topicId, newName) {
        repeater.changeTopicName(topicId, newName)
    }

    /* -------------------------- Visuals ---------------------------- */

    PageStack {
        id: pageStack
        objectName: "pageStack"

        property bool isListView: optionsKeeper.useListMode()
        property var commonHeadActions: [refreshAction, changeModeAction, addReadsAction, editTopicsAction]

        anchors.fill: parent
        focus: true

        Component.onCompleted: {
            push(tabstabs)
        }

        Keys.onPressed: {
            console.log(objectName, event.key.toString(16), event.modifiers.toString(16))

            /* Hotkeys for tabs management.
             */
            if (currentPage == tabstabs) {
                if (event.key >= Qt.Key_0 && event.key <= Qt.Key_9 &&
                        event.modifiers & Qt.AltModifier) { // Digits for switching tabs...
                    var tabNumber = event.key - Qt.Key_0
                    if (tabNumber < tabstabs.getTabCount()) {
                        tabstabs.selectedTabIndex = tabNumber
                        event.accepted = true
                    }
                }

                if (event.modifiers & Qt.ControlModifier) { // Control+Tab and Control+Shift+Tab
                    if (event.key === Qt.Key_Backtab) {
                        tabstabs.selectedTabIndex = (tabstabs.selectedTabIndex - 1 + tabstabs.getTabCount()) % tabstabs.getTabCount()
                        event.accepted = true
                    } else if (event.key === Qt.Key_Tab) {
                        tabstabs.selectedTabIndex = (tabstabs.selectedTabIndex + 1) % tabstabs.getTabCount()
                        event.accepted = true
                    } else if (event.key === Qt.Key_N) {
                        pageStack.push(appendFeedPage, {"isDirty" : true})
                    } else if (event.key === Qt.Key_R) {
                        refresh()
                    }
                }
            } else if (currentPage == articlePage) {
                if (event.key == Qt.Key_Left) {
                    articlePage.articleView.showPrevArticle()
                } else if (event.key == Qt.Key_Right) {
                    articlePage.articleView.showNextArticle()
                }
            }
        }

        onCurrentPageChanged: {
            if (currentPage != null) {
                if (currentPage.reloadPageContent)
                    currentPage.reloadPageContent()
            }
        }

        /* -------------------------- Actions ---------------------------- */

        Action {
            id: refreshAction

            text:  i18n.tr("Refresh")
            iconSource: Qt.resolvedUrl("./icons_tmp/reload.svg")
            onTriggered: refresh()
        }

        Action {
            id: changeModeAction
            text:  pageStack.isListView ? i18n.tr("Grid View") : i18n.tr("List view")
            iconSource: pageStack.isListView ? Qt.resolvedUrl("./icons_tmp/view-fullscreen.svg") : Qt.resolvedUrl("./icons_tmp/view-fullscreen.svg")
            onTriggered: {
                pageStack.isListView = !pageStack.isListView
                optionsKeeper.setUseListMode(pageStack.isListView)


                /* Spike solution for bug: https://bugs.launchpad.net/ubuntu-rssreader-app/+bug/1214916
                                 * If we switched to grid, manually cause header return.
                                 */
                if (!pageStack.isListView) {
                    var ind = tabstabs.selectedTabIndex
                    if (ind == 0) {
                        tabstabs.selectedTabIndex = 1
                        tabstabs.selectedTabIndex = ind
                    } else {
                        tabstabs.selectedTabIndex = 0
                        tabstabs.selectedTabIndex = ind
                    }
                }
            } // onTriggered
        }

        Action {
            id: addReadsAction
            iconSource: Qt.resolvedUrl("./icons_tmp/add.svg")
            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).
                 * ATTENTION: similar call can be found in hotkeys section.
                 */
                pageStack.push(appendFeedPage, {"isDirty" : true})
            }
        }

        Action {
            id: editTopicsAction
            objectName:"editTopicsAction"
            text:  i18n.tr("Edit topics")
            iconSource: Qt.resolvedUrl("./icons_tmp/edit.svg")
            onTriggered: {
                pageStack.push(topicManagement)
            }
        }

        /* -------------------------- Pages & Tabs ---------------------------- */

        Tabs {
            id: tabstabs

            objectName: "tabstabs"
            visible: false

            Component.onCompleted: {
                selectedTabIndex = 1
            }

            onSelectedTabIndexChanged: {
                // console.log("onSelectedTabIndexChanged", selectedTabIndex)
                if (selectedTabIndex <= 1)
                    return
                repeater.reloadTabAt(selectedTabIndex - 2)
            }

            function getTabCount() {
                return repeater.model + 2 // + Shorts and Saved
            }

            function selectTopic(topicId) {
                if (/*topicId == undefined ||*/ topicId == 0 ) {
                    tabstabs.selectedTabIndex = 1
                } else {
                    for(var i = 0; i < repeater.count; i++) {
                        if (repeater.itemAt(i).topicId == topicId) {
                            repeater.reloadTabAt(i, "selectTopic")
                            tabstabs.selectedTabIndex = i + 2
                            break
                        }
                    }
                }
            }

            /* Used for keeping status in sync across tabs.
             */
            function updateStatusInModels(tagId, articleId, status) {
                savedTab.updateStatusInModel(articleId, status)
                shortsTab.updateStatusInModel(articleId, status)
                for(var i = 0; i < repeater.count; i++) {
                    if (repeater.itemAt(i).topicId == tagId) {
                        repeater.itemAt(i).updateStatusInModel(articleId, status)
                        break
                    }
                }
            }

            /* Used for keeping favourite in sync across tabs.
             */
            function updateFavouriteInModels(article, fav) {
                var tagId = article.tagId
                var articleId = article.id

                savedTab.updateFavouriteInModel(article, fav)
                shortsTab.updateFavouriteInModel(articleId, fav)
                for(var i = 0; i < repeater.count; i++) {
                    if (repeater.itemAt(i).topicId == tagId) {
                        repeater.itemAt(i).updateFavouriteInModel(articleId, fav)
                        return
                    }
                }
            }

            SavedTab {
                id: savedTab

                objectName: "Tab1"
                title: i18n.tr("Saved")
                topicId: -2
            }

            ShortsTab {
                id: shortsTab

                objectName: "Tab0"
                title: i18n.tr("Shorts")
                topicId: 0
            }

            Repeater {
                id: repeater

                TopicTab { }

                function reloadTabs() {
                    repeater.model = 0
                    var tags = DB.loadTags()
                    repeater.model = tags.rows.length

                    for (var i = 0; i< tags.rows.length; i++) {
                        repeater.itemAt(i).title = tags.rows.item(i).name
                        repeater.itemAt(i).topicId = tags.rows.item(i).id
                    }
                }

                function changeTopicName(topicId, newName) {
                    for(var i = 0; i < repeater.count; i++) {
                        if (repeater.itemAt(i).topicId == topicId) {
                            repeater.itemAt(i).title = newName
                            break
                        }
                    }
                }

                function reloadTabAt(tabIndex, purpose) {
                    if (tabIndex >= repeater.count)
                        return

                    repeater.itemAt(tabIndex).reloadTab(purpose)
                }

                function containsTopic(topicId) {
                    for(var i = 0; i < repeater.count; i++) {
                        if (repeater.itemAt(i).topicId == topicId) {
                            return true
                        }
                    }

                    return false
                }
            } // Repeater
        } // Tabs

        // ******************************** Create Topic **********************///////////////

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

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

        AppendFeedPage {
            id: appendFeedPage

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

        // ******************************** Choose Topic Page ***********************///////////////

        ChooseTopicPage {
            id: chooseTopicPage
            visible: false
        }

        // ******************************** Rss Feed Page ***********************///////////////

        ArticleViewPage {
            id: articlePage
            visible: false

            Connections {
                target: articlePage.articleView

                onArticleStatusChanged: {
                    tabstabs.updateStatusInModels(tagId, articleId, status)
                }

                onArticleFavouriteChanged: {
                    tabstabs.updateFavouriteInModels(article, favourite)
                }
            }
        }

        // ******************************** Topic Management Page ***********************///////////////
        TopicManagement {
            id: topicManagement
            visible: false
        }

        // ******************************** Edit Feed Page ***********************///////////////
        EditFeedPage {
            id: editFeed
            visible: false
        }
    } // PageStack

    /* -------------------------- Utils ---------------------------- */

    NetworkManager {
        id: networkManager

        onDownloadFinished: {
            reloadViews(tagId)
        }

        onDownloadStarted: {
            PopupUtils.open(refreshWaitDialogComponent, null)
        }
    }

    OptionsKeeper {
        id: optionsKeeper
    }

    /* -------------------------- Components ---------------------------- */

    Component {
        id: refreshWaitDialogComponent

        Dialog {
            id: refreshWaitDialog
            objectName: "refreshWaitDialog"

            title: i18n.tr("Checking for new articles")

            ActivityIndicator {
                objectName: "activityindicator"
                running: true
            }

            Button {
                text: i18n.tr("Cancel")
                objectName: "refreshCancel"
                color: UbuntuColors.orange
                onClicked: {
                    networkManager.cancelDownload()
                    PopupUtils.close(refreshWaitDialog)
                }
            }

            Connections {
                target: networkManager

                onDownloadFinished: {
                    PopupUtils.close(refreshWaitDialog)
                    if ( networkManager.operationStatus === "withErrors" ) {
                        PopupUtils.open(errorDialogComponent, appendFeedPage,
                                        {"text" : i18n.tr("Perhaps some of the channels have not been updated."),
                                            "title" : i18n.tr("Errors occurred during the update")})
                    }
                }
            }
        } // Dialog
    } // Component

    Component {
        id: addReadsPopoverComp

        ActionSelectionPopover {
            id: addReadsPopover
            objectName: "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).
                         * ATTENTION: similar call can be found in hotkeys section.
                         */
                        pageStack.push(appendFeedPage, {"isDirty" : true})
                    }
                }

                // Currently redundant. We will use it later.
                //                Action {
                //                    text: i18n.tr("+ New topic")
                //                    onTriggered: {
                //                        pageStack.push(createTopicPage)
                //                    }
                //                }

                Action {
                    text: i18n.tr("Add online accounts")
                    onTriggered: {
                        PopupUtils.open(errorDialogComponent, null,
                                        {"text" : i18n.tr("Online accounts are not available for now"),
                                            "title" : i18n.tr("We are sorry")})
                    }
                }

                Action {
                    text: i18n.tr("Import subscriptions")
                    onTriggered: {
                        PopupUtils.open(errorDialogComponent, null,
                                        {"text" : i18n.tr("Importing subscriptions is not available for now"),
                                            "title" : i18n.tr("We are sorry")})
                    }
                }
            } // ActionList
        } // ActionSelectionPopover
    } // Component

    Component {
        id: errorDialogComponent

        Dialog {
            id: errorDialog

            Button {
                text: i18n.tr("Ok")
                objectName: "errordialogbutton"
                onClicked: PopupUtils.close(errorDialog)
            }
        }
    } // Component

    /* -------------------------- Connections ---------------------------- */

    Connections {
        target: createTopicPage

        onTopicAdded: {
            reloadViews()
        }
    }

    Connections {
        target: chooseTopicPage

        onTopicChoosen: {
            networkManager.updateFeeds(addedFeeds, topicId)
        }
    }

    Connections {
        target: topicManagement

        onFeedEdit: {
            console.log("onFeedEdit: ", topicId)
            shortsTab.reloadTab()
            tabstabs.selectTopic(topicId)
        }

        onTopicDeleted: {
            reloadViews()
        }
    }

    // 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.keyboardRectangle.height)
            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;
        }
    }
}