sindresorhus/refined-github

Render issue/PR templates #3365

fregante posted onGitHub

EDIT: this has been partially implemented, but your help is needed to improve it as described in: https://github.com/sindresorhus/refined-github/pull/3504

You can pick up where I left off


Issue/PR templates are easy to dismiss and the links in it are not clickable.

What if we rendered them? (via GitHub’s "preview comment" feature)

<table><th>Before<th>After <tr><td valign=top> <img width="940" alt="" src="https://user-images.githubusercontent.com/1402241/87771615-e84b9e80-c820-11ea-931c-a30feea4c074.png"> <td><img width="925" alt="" src="https://user-images.githubusercontent.com/1402241/87771636-ec77bc00-c820-11ea-85df-b80f5ef1beda.png"> </table>

To keep in mind:

  • this won't work for all templates (like https://github.com/babel/babel/issues/new/choose), but it may be worth trying
    • it could be opt-in by each template, for example "Only if it starts with Instructions: or similar keywords"
  • we might have to display the render under the field to avoid moving the field down
  • we probably can't delete the field’s content because some templates have to be filled by the user

the opt-in can be a <--RGH:PreviewInline or <--RGH:Checklist

also some functionality:

  • in Checklist Mode:

    • the user has to click some checkboxes and only if all are checked then submit button becomes activated
  • In PreviewInline Mode:

    • the comments are visible as rendered text, and then in between there are always an textarea
    • maybe there is a fancy editor component which renders the inline comments styled, but the other text as code? so the user can use normal the cursors in this textfield like before...
posted by muescha over 4 years ago
  • the user has to click some checkboxes and only if all are checked then submit button becomes activated

We can't make RG enforce requirements; users will just disable the feature.

  • maybe there is a fancy editor component which renders the inline comments styled, but the other text as code?

I don't think most fields need that. We can just add fields above the regular editor.


I was thinking about this feature today. I think it's important that the feature doesn't require awkward text in the templates. Most people won't see the rendered version, so it's important that they're not bothered by it.

  1. Enable the feature if the template starts with <!-- Please follow the template --->

  2. Render the whole field by sending it to GH

  3. Add a <textarea> after every line that ends with :

    • then, if it looks like this:

      <pre> Enter your code: const your = &#39;code&#39; </pre>

      it's rendered as

      <pre> Enter your code: +---------------------------+ | const your = 'code' | | | | | | | +---------------------------+ </pre>

      and then it's concatenated back to

      <pre> Enter your code: whatever the user entered </pre>

  4. Prepend the rendered form above the regular editor and empty the editor

posted by fregante over 4 years ago

The best part the step 2 is that we get checkboxes for free (they're rendered by GitHub) and that we don't have to do any Markdown parsing. Step 3 currently only means something like:

for (const line of select.all('.markdown-body > *')) {
  if (line.textContent.trim().endsWith(':')) {
    const next = line.nextElementSibling;
    // Preserve demo content
    if (next.matches('pre, .highlight') || next.textContent.startsWith('e.g.')) {
      next.replaceWith(<textarea>{next.textContent}</textarea>)
    } else {
      next.before(<textarea/>)
    }
  }
}

BUT

Actually the hard part isn't rendering: It's merging the content of these textareas back into original template. 🤔 So I think we have to pre-parse the text, insert placeholders (like #$%1, #$%2) and then send them to GitHub for rendering.

posted by fregante over 4 years ago

@fregante using this as a basic non-intrusive checklist for tasks sounds a lot useful than having to handle user input inputs along with it too. It just sounds more complicated (even if we find a very optimised solution for it).

posted by notlmn over 4 years ago

Yooooooooo! Turning this into a meta issue 👇

posted by fregante almost 4 years ago

Fund this Issue

$0.00
Funded

Pull requests