SlaVcE14 / JsonList

Material You Android app for previewing JSON files in a user-friendly list format
MIT License
25 stars 2 forks source link

For Object arrays: may be infer the JSON format and let user choose what entry to display #35

Open lamyergeier opened 3 weeks ago

lamyergeier commented 3 weeks ago

For a large object arrays, it can be useful for user to display particular entries from all object array indices.

For example if the JSON file is as follows:

[
  {
    "name": "LINUX Unplugged Jupiter Broadcasting",
    "website": "https://www.jupiterbroadcasting.com/show/linux-unplugged/",
    "YouTube": null,
    "dDownloadRP": null,
    "feed": "https://feeds.jupiterbroadcasting.com/lup",
    "author": null,
    "tag": [
      "computer",
      "Linux",
      "software"
    ],
    "comment": [],
    "description": null,
    "automatic_download": false,
    "subscription": true,
    "starred": false,
    "timestamp": {
      "add": "2024-04-28",
      "star": null
    }
  },
  {
    "name": "Looking For Modi with Avani Dias - ABC listen",
    "website": "https://www.abc.net.au/listen/programs/looking-for-modi",
    "YouTube": null,
    "dDownloadRP": null,
    "feed": null,
    "author": null,
    "tag": [
      "India",
      "politics"
    ],
    "comment": [],
    "description": null,
    "automatic_download": false,
    "subscription": true,
    "starred": false,
    "timestamp": {
      "add": "2024-04-28",
      "star": null
    }
  }
]

The GUI can let user select which entries to display, and if user selects: name and tag only that particular data is displayed.

SlaVcE14 commented 3 weeks ago

That's a good idea. Maybe it will be in the next release that I'm planning