aboutsummaryrefslogtreecommitdiff
path: root/app/src/main/kotlin/com/pitchedapps/frost/activities/MainActivity.kt
blob: d03c6496f3bca99831bd1c1e992409072296e29c (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
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
/*
 * Copyright 2018 Allan Wang
 *
 * This program is free software: you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as published by
 * the Free Software Foundation, either version 3 of the License, or
 * (at your option) any later version.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License
 * along with this program.  If not, see <http://www.gnu.org/licenses/>.
 */
package com.pitchedapps.frost.activities

import android.os.Bundle
import androidx.viewpager.widget.ViewPager
import com.google.android.material.tabs.TabLayout
import com.pitchedapps.frost.facebook.FbItem
import com.pitchedapps.frost.views.BadgedIcon
import io.reactivex.android.schedulers.AndroidSchedulers
import io.reactivex.schedulers.Schedulers
import io.reactivex.subjects.PublishSubject
import org.jsoup.Jsoup
import java.util.concurrent.TimeUnit

class MainActivity : BaseMainActivity() {

    override val fragmentSubject = PublishSubject.create<Int>()
    var lastPosition = -1
    val headerBadgeObservable = PublishSubject.create<String>()

    override fun onNestedCreate(savedInstanceState: Bundle?) {
        setupTabs()
        setupViewPager()
    }

    private fun setupViewPager() {
        viewPager.addOnPageChangeListener(object : ViewPager.SimpleOnPageChangeListener() {
            override fun onPageSelected(position: Int) {
                super.onPageSelected(position)
                if (lastPosition == position) return
                if (lastPosition != -1) fragmentSubject.onNext(-(lastPosition + 1))
                fragmentSubject.onNext(position)
                lastPosition = position
            }

            override fun onPageScrolled(position: Int, positionOffset: Float, positionOffsetPixels: Int) {
                super.onPageScrolled(position, positionOffset, positionOffsetPixels)
                val delta = positionOffset * (255 - 128).toFloat()
                tabsForEachView { tabPosition, view ->
                    view.setAllAlpha(
                        when (tabPosition) {
                            position -> 255.0f - delta
                            position + 1 -> 128.0f + delta
                            else -> 128f
                        }
                    )
                }
            }
        })
        viewPager.post { fragmentSubject.onNext(0); lastPosition = 0 } //trigger hook so title is set
    }

    private fun setupTabs() {
        viewPager.addOnPageChangeListener(TabLayout.TabLayoutOnPageChangeListener(tabs))
        tabs.addOnTabSelectedListener(object : TabLayout.ViewPagerOnTabSelectedListener(viewPager) {
            override fun onTabReselected(tab: TabLayout.Tab) {
                super.onTabReselected(tab)
                currentFragment.onTabClick()
            }

            override fun onTabSelected(tab: TabLayout.Tab) {
                super.onTabSelected(tab)
                (tab.customView as BadgedIcon).badgeText = null
            }
        })
        headerBadgeObservable.throttleFirst(15, TimeUnit.SECONDS)
            .subscribeOn(Schedulers.newThread())
            .map { Jsoup.parse(it) }
            .filter { it.select("[data-sigil=count]").size >= 0 } //ensure headers exist
            .map {
                val feed = it.select("[data-sigil*=feed] [data-sigil=count]")
                val requests = it.select("[data-sigil*=requests] [data-sigil=count]")
                val messages = it.select("[data-sigil*=messages] [data-sigil=count]")
                val notifications = it.select("[data-sigil*=notifications] [data-sigil=count]")
                return@map arrayOf(feed, requests, messages, notifications).map { e -> e?.getOrNull(0)?.ownText() }
            }
            .observeOn(AndroidSchedulers.mainThread())
            .subscribe { (feed, requests, messages, notifications) ->
                tabsForEachView { _, view ->
                    when (view.iicon) {
                        FbItem.FEED.icon -> view.badgeText = feed
                        FbItem.FRIENDS.icon -> view.badgeText = requests
                        FbItem.MESSAGES.icon -> view.badgeText = messages
                        FbItem.NOTIFICATIONS.icon -> view.badgeText = notifications
                    }
                }
            }.disposeOnDestroy()
        adapter.pages.forEach {
            tabs.addTab(tabs.newTab()
                .setCustomView(BadgedIcon(this).apply { iicon = it.icon })
            )
        }
    }
}