I've got a web app reporting interface with a dozen controls with multiple interdependencies, such as:
- if more than one campaign or "All" is selected for campaigns then Campaign should be in the Group By filter
- if it's the Product X view and the Secondary Publisher option has been assigned for this client, add the "Include Secondary Publisher" checkbox.
- if "Include Secondary Publisher" is checked, then add Secondary Publisher to the Group By filter
There are probably close to a hundred such rules and my code has gotten fairly complex. Before I undertake a big re-write, I want to document the dependencies so we can get some better automated tests in place.
Any pointers toward best practices for such documentation?
While I'm here, any pointers for managing the code complexity? (I'm thinking of using knockout.js, since it seems more or less built for this sort of situation....)