cyrusae / highlighter-public

Next.js/SQLite app for qualitative coding and content analysis; prototype currently in (sometimes) working alpha.
Other
3 stars 0 forks source link

Ability to pick question for session #38

Closed cyrusae closed 2 years ago

cyrusae commented 2 years ago

Filter for questions and have that filter persist while navigating through individual statements. If I was working in raw SQL I'd make a temporary table for this but syncing that back to the main Statements table seems questionable and I don't know how much it would disagree with Prisma. (I guess make a temporary table to navigate around and then send updates to standard Statements...? Don't know how long that table would last though. Or just load an array of all possible statement IDs for the criteria at load time? That sounds like it might be terrible though.)

The problem here is taking a subset of statements and applying full site functionality to only that subset. Presumably it's going to be a session management thing at least partly (e.g. preserve chosen criteria in session and piggyback them onto axios requests).

cyrusae commented 2 years ago

This is a duplicate of #3 actually.