Introduce Code Mirror editing of templates in the debug tool

Created on 10 April 2024, 12 months ago
Updated 19 April 2024, 12 months ago

Problem/Motivation

Some of the people working on this project also worked on a Code Mirror implementation of our. Lets see if we can add that to the jsx_devel module, so when it lists the JSX component used by a region of the page, you can click an "edit" option to edit the template via Codemirror.

Another option is to first add this to edit twig templates - start with whichever template type will be easier to implement, then the functionality can be expanded in followups.

Similarly, if it's easier to start with just one or a few templates, that's fine, getting anything editable is a great start

Steps to reproduce

Proposed resolution

Remaining tasks

User interface changes

API changes

Data model changes

๐Ÿ› Bug report
Status

Needs review

Version

1.0

Component

JSX Theme Engine

Created by

๐Ÿ‡บ๐Ÿ‡ธUnited States bnjmnm Ann Arbor, MI

Live updates comments and jobs are added and updated live.
Sign in to follow issues

Merge Requests

Comments & Activities

  • Issue created by @bnjmnm
  • First commit to issue fork.
  • Merge request !28Added codemirror editor for editing โ†’ (Open) created by utkarsh_33
  • Pipeline finished with Canceled
    12 months ago
    Total: 17s
    #142608
  • ๐Ÿ‡ฎ๐Ÿ‡ณIndia utkarsh_33

    To start with I have added the codeMirror editor inside the debug tool with a random twig template for editing.

  • Pipeline finished with Success
    12 months ago
    Total: 1100s
    #142609
  • Pipeline finished with Success
    12 months ago
    #144583
  • ๐Ÿ‡ฎ๐Ÿ‡ณIndia utkarsh_33

    So currently this MR contains 2 approaches:-
    1)24644f4c commit adds the codeMirror as a standalone app which is not integrated with Drupal.
    2)In the second approach i have used this codeMirror wrapper and added to the debug tool.This also loads the twig templates in the codeMirrror dynamically as soon as an element rendered with twig is clicked.

  • Pipeline finished with Success
    12 months ago
    Total: 961s
    #144750
  • Status changed to Needs review 12 months ago
  • ๐Ÿ‡บ๐Ÿ‡ธUnited States bnjmnm Ann Arbor, MI

    Re #5 this will ultimately need to have the ability to load and save files. For the time being, this might be easiest to accomplish by having the Codemirror integration run as a standalone Vite application so fs can be used. Eventually it would be nice to not have a separate app running on a different port - perhaps the file edits/saves can happen via server side endpoints. That could happen here but it could also happen in a followup.

  • Pipeline finished with Success
    12 months ago
    Total: 990s
    #147609
  • ๐Ÿ‡ฎ๐Ÿ‡ณIndia yash.rode pune

    yash.rode โ†’ made their first commit to this issueโ€™s fork.

  • Pipeline finished with Success
    12 months ago
    Total: 1169s
    #147894
  • Pipeline finished with Canceled
    12 months ago
    Total: 138s
    #148076
  • Pipeline finished with Canceled
    12 months ago
    Total: 156s
    #148077
  • ๐Ÿ‡ฎ๐Ÿ‡ณIndia yash.rode pune

    We are not able to read using fs so we have used fetch to do so. In the Stand alone react app we are able to read a file, within the react app. what should be the next step on this?

  • Pipeline finished with Success
    12 months ago
    Total: 1279s
    #148080
  • ๐Ÿ‡บ๐Ÿ‡ธUnited States bnjmnm Ann Arbor, MI

    We are not able to read using fs so we have used fetch to do so. In the Stand alone react app we are able to read a file, within the react app. what should be the next step on this?

    Create a Drupal controller that returns the contents of the file requested (probably have the path as a query arg?), and return it as JSON. That controller implementation doesn't have to have major access restructions for the time being, but it should only allow loading of files with the extensions related to Twig and JSX templates.

  • Pipeline finished with Success
    12 months ago
    Total: 1307s
    #149005
  • ๐Ÿ‡ฎ๐Ÿ‡ณIndia utkarsh_33

    Added the controller for fetching the files from Drupal.Currently the MR is rendering on the twig files which are overriden in umami_jsx theme.

  • Pipeline finished with Success
    12 months ago
    Total: 989s
    #149097
  • Pipeline finished with Canceled
    12 months ago
    Total: 98s
    #149139
  • Pipeline finished with Success
    12 months ago
    Total: 1043s
    #149140
  • Pipeline finished with Success
    12 months ago
    Total: 1056s
    #149673
  • Pipeline finished with Success
    12 months ago
    Total: 1345s
    #149738
  • Pipeline finished with Canceled
    12 months ago
    Total: 800s
    #149796
  • Pipeline finished with Success
    12 months ago
    Total: 1232s
    #149808
  • ๐Ÿ‡บ๐Ÿ‡ธUnited States bnjmnm Ann Arbor, MI

    I might be missing something obvious, but I'm not sure how to manually test this (so far everything has been based on just looking at the code). Can someone document some basic steps to do this? It's possible something else on my local is making this unavailable - running dev or build in web/themes/contrib/jsx/modules/jsx_devel/codeMirror results in an error, but perhaps that's not even what I'm supposed to be doing. Excited to see what has been built!

  • ๐Ÿ‡ฎ๐Ÿ‡ณIndia utkarsh_33

    Steps to get the codeMirror running in the debug tool:-
    1) cd web/themes/contrib/jsx/modules/jsx_devel/app
    2) npm install
    3)npm run build
    4) Open the twig mode.
    Now yo can get the codeMirror once you select the component to edit and then click the Edit button.

Production build 0.71.5 2024