¿Cómo anular la función buildQuote?

Hi!

I’d like to try to modify the buildQuote function so it adds a new line before the opening [quote] tag.

Basically, modifying this:

  return `[quote="${params.join(", ")}"]\n${contents.trim()}\n[/quote]\n\n`;

to this:

  return `\n[quote="${params.join(", ")}"]\n${contents.trim()}\n[/quote]\n\n`;

Is it possible to do such a thing with a theme component? How do I override this function? :smiley:

I’ve managed to achieve it, but is there a prettier solution?

<script type="text/discourse-plugin" version="0.8.23">
    function buildQuote(post, contents, opts = {}) {
      if (!post || !contents) {
        return "";
      }
    
      const params = [
        opts.username || post.username,
        `post:${opts.post || post.post_number}`,
        `topic:${opts.topic || post.topic_id}`
      ];
    
      if (opts.full) params.push("full:true");
    
      return `\n[quote="${params.join(", ")}"]\n${contents.trim()}\n[/quote]\n\n`;
    }
    api.modifyClass('controller:composer', {
        actions: {
            importQuote(toolbarEvent) {
              const postStream = this.get("topic.postStream");
              let postId = this.get("model.post.id");
        
              // If there is no current post, use the first post id from the stream
              if (!postId && postStream) {
                postId = postStream.get("stream.firstObject");
              }
        
              // If we're editing a post, fetch the reply when importing a quote
              if (this.get("model.editingPost")) {
                const replyToPostNumber = this.get("model.post.reply_to_post_number");
                if (replyToPostNumber) {
                  const replyPost = postStream.posts.findBy(
                    "post_number",
                    replyToPostNumber
                  );
        
                  if (replyPost) {
                    postId = replyPost.id;
                  }
                }
              }
        
              if (postId) {
                this.set("model.loading", true);
        
                return this.store.find("post", postId).then(post => {
                  const quote = buildQuote(post, post.raw, {
                    full: true
                  });
        
                  toolbarEvent.addText(quote);
                  this.set("model.loading", false);
                });
              }
            }
        }
    });
</script>
2 Me gusta

Disculpa por revivir un tema antiguo, pero ¿esto todavía te funciona/has tenido que actualizarlo? He estado intentando que esto funcione y no consigo que se active en absoluto, pero he tenido un tiempo terrible con cualquier cosa relacionada con modifyClass.

Lo acabo de probar y todavía funciona :+1:

Literalmente lo copié y pegué en mi tema y funcionó sin ninguna modificación.

1 me gusta

Ver api.modifyClass sometimes(!) not working - #12 by RGJ

¿No estoy seguro de si esto se ha resuelto?

También ver relacionado pero diferente: Issues overriding getters in a controller (3.0.0)

2 Me gusta

Gracias @merefield y @Canapin. He estado intentando aprender la API de plugins de Discourse jugando con lo que parece que deberían ser cosas sencillas como esta, pero modifyClass es muy inconsistente en cuanto a cuándo funcionará y cuándo no. Tengo un pequeño componente temático (ese en el que te mencionaron @merefield) donde dos llamadas a modifyClass funcionan, pero una tercera no, es muy frustrante intentar averiguar si he hecho algo mal o si es solo modifyClass.

Disculpa el off-topic en tu tema y gracias por la rápida respuesta @Canapin.

Actualización:

1 me gusta

No te preocupes, no sé qué significa off-topic ¡pero estamos aquí para ayudar!

1 me gusta

Este tema se cerró automáticamente 30 días después de la última respuesta. Ya no se permiten nuevas respuestas.