Capacidad de destacar grupos en la página Acerca de

Creo que sería agradable poder destacar ciertos grupos en la página de información.

Podría utilizarse para incluir grupos asociados al foro, por ejemplo, un grupo de ‘Mentores’ (o Ayudantes del Foro). También se podrían listar otros grupos, como miembros de productos principales (por ejemplo, en un foro de programación, miembros del equipo principal de proyectos específicos estrechamente relacionados con el foro; muchos de estos suelen tener estado TL4, lo que les permite fijar temas, editar publicaciones y publicar noticias en sus secciones dedicadas, etc.).

Además, estrechamente relacionado con esto, el estado TL4 podría utilizarse como punto de partida para moderadores de categorías (y, por lo tanto, ser nuevamente un grupo digno de incluirse en la página de información).

13 Me gusta

Instead of some hardcore feature where there is a magic flag on every group and this is database driven, I would far prefer we just sprinkle an outlet or 2 on the about.hbs file and you solve this with a theme component.

At the moment I see no outlets on discourse/app/assets/javascripts/discourse/templates/about.hbs at ead6600f4b175b95b2028e3e0b8f7b7ede9b84e4 · discourse/discourse · GitHub

Can you do a visual mockup on what you are after in the context of your forum so we can figure out where to add the outlet?

5 Me gusta

Sorry about the delay Sam, here ya go:

(Although there would be different people in each group - though some forums might want to have someone in more than one group).

Edit: Forgot to say, we will need to be able to configure who’s shown in each - for instance, some will be added as moderators but we may not want them listed as a moderator (as they might be a Supervisor or in some cases part of the Helper Team). Some forums might want to do the same with Admins - ie give the user Admin privs but list them as a Supervisor.

4 Me gusta

Plugin outlets added per:

https://github.com/discourse/discourse/commit/6aea185ab4bc6f6dcfa77158f5d0e14a69abeeb8

This gives you 2 options:

  1. You can create a theme component that inserts a static bit of HTML you take care of updating by hand as you see fit.

  2. You can create a plugin that adds information to the serializer and injects the groups dynamically.

10 Me gusta

Thanks Sam :slight_smile:

When creating/using a theme component for this, can we override all of the current groups - so basically just insert HTML for all of that section? I think that might be the easiest option to get it how we need it.

Yes you can hide built in with css

1 me gusta

Hola @AstonJ @sam
Estoy dispuesto a intentarlo. ¿Sigue disponible en pr-welcome?
Estoy pensando en crear un componente de tema para esto que tendrá tres configuraciones de componente:

  • Seleccionar grupos para mostrar en la página Acerca de
  • Seleccionar la prioridad de los grupos (los usuarios de un grupo de mayor prioridad no se mostrarán en uno de menor prioridad)
  • Deshabilitar la visualización de usuarios según la prioridad de los grupos, es decir, evitar repeticiones de usuarios
3 Me gusta