I’m interested in building a tag union capability that would mimic how tag intersections are currently implemented (Tag intersections page): essentially the same result as intersections (the default category/Latest view), but doing an OR on multiple tags rather than an AND. I would appreciate any suggestions as a new Discourse developer.
My thoughts (so far) are as follows:
Searching on multiple tags via the search page essentially provides tag-union functionality (Does multiple tag search support AND vs OR?). The problem is that I don’t want the search results view – I want the default category page. Could search results be redirected to accomplish this?
If search results can’t be redirected, I’m open to attempting a /tags/union/ route (and have been looking into how intersection works). I would prefer to do this via plugin, but I am concerned that that is not something that could currently be accomplished via a plugin. Any suggestions here would be appreciated.
If there is sufficient user interest to add a tag-union capability into the Discourse core, I’d be willing to do it and submit a PR, but I’m hoping to find an alternative. Thanks in advance.
Das Erstellen von queryParam-Arrays mit der Syntax paramName[] ist etwas, das von Backend-Frameworks abhängt, und ich glaube nicht, dass es von Ember nativ unterstützt wird. Wir könnten es vielleicht zum Laufen bringen, aber ich habe mir gerade die serverseitige Implementierung des tags-Filters angesehen und es sieht so aus, als ob wir auch eine durch Leerzeichen getrennte Liste unterstützen.
Das ist sehr praktisch. Allerdings behält die Seite die Einschränkungen nicht bei, wenn eine Kategorie von oben links ausgewählt wird. Bei Seiten mit einzelnen Tags funktioniert dies wie erwartet.
Wenn ich zum Beispiel unter /tag/tag1 bin und oben links site-feedback auswähle. Es wird /tags/c/site-feedback/2/tag1 angezeigt.
Mit /?tags=tag1+tag2 leitet es mich einfach zu /c/site-feedback/2 weiter.
Ist diese Funktionalität möglich?
Ich vermute, dass dies auch in diesen beiden Themen angefordert wurde: