Giter Site home page Giter Site logo

thecodemonks / nytimes-app Goto Github PK

View Code? Open in Web Editor NEW
512.0 14.0 61.0 20.69 MB

๐Ÿ—ฝ A Simple Demonstration of the New York Times App ๐Ÿ“ฑ using Jsoup web crawler with MVVM Architecture ๐Ÿ”ฅ

License: MIT License

Kotlin 100.00%
coroutines jsoup-android jetpack-android jetpack-navigation viewmodel livedata room-persistence-library recyclerview material-design material-ui

nytimes-app's People

Contributors

agustiyann avatar ankitghate avatar ch8n avatar dependabot-preview[bot] avatar drewstephensdesigns avatar eltegani avatar georgcantor avatar nsalazar0429 avatar paolovalerdi avatar sourabhsnath avatar spikeysanju avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

nytimes-app's Issues

Add Theme Engine

Great work on the app! One change I was thinking about, was using a theme engine like Cyanea I've used it in a past app of mine and is easy to implement and I think would give NYTimes-App great character

App crashes when open in offline mode

Steps to reproduce

  1. Go offline in the current device
  2. Open Application

Expected behavior

App open with no internet message

Actual behavior

App crashes immediately

Refactor Code

Refactor Code on Network Connectivity & Add Base Fragment

Add About Screen

Add an about menu to show the application name following data

  • App Logo
  • App Name
  • App Version
  • Visit - (Which takes to our NYTimes repo in Github)

Preview ๐Ÿ‘‡
ABOUT US

Refactor Code

Add extension function to remove boilerplate code

[Crash] On tap on articles in Bookmark app crashes.

Steps to reproduce :

  1. Add a bookmark
  2. Navigate to bookmarks and tap on any article
  3. App crashes.

Expected : App should navigate to article details.

Fix :
Bookmark seems to have wrong navigation path

newsAdapter.setOnItemClickListener { article ->
           ...
            findNavController().navigate(
                R.id.action_articlesFragment_to_articleDetailsFragment,
                bundle
            )
        }

It should be ,

newsAdapter.setOnItemClickListener { article ->
            val bundle = Bundle().apply {
                putSerializable("article", article)
            }
            findNavController().navigate(
                R.id.action_bookmarksFragment_to_articleDetailsFragment,
                bundle
            )
        }

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.