Ok, so in our app we have an RSS feed. We want the user to be able to check certain tags to filter their RSS feed. For example, if they were to check 'Test 1', all articles in the RSS feed tagged 'Test 1' would show up, and nothing else unless they check other tags as well.
With events like this for each tag:
(This is how I have the local storage variables set up):
So now I'm at a bit if a road block. I'm not sure how to make tags in the RSS feed itself for the app to sort with. How would I go about doing this?
Second, I want to have a search page so the user can search for a key term or date to find a specific article in the RSS feed. I have a search page made, but I'm not sure how to make it functional. I found the documentation on search bars, but it looks to be working with a database. I'm not sure how that would work. Would I need to have all of the information from the RSS feed go to a database somehow?