Skip to content

This issue was moved to a discussion.

You can continue the conversation there. Go to discussion →

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[FR] Add support for Twig auto-completion AND goto file behavior in plugins and modules #4846

Closed
BenParizek opened this issue Aug 29, 2019 · 0 comments
Labels
enhancement improvements to existing features site development 👩‍💻 features related to website/API development

Comments

@BenParizek
Copy link
Contributor

BenParizek commented Aug 29, 2019

Adding the Symfony Support plugin to PhpStorm adds some neat features when working with Craft such as Twig variable auto-completion as described in this article Auto-Complete Craft CMS 3 APIs in Twig with PhpStorm.

One feature, however, that the Symfony Support plugin seems to have support for but that does not currently work in Craft is to auto-complete templates and jump to them when you command+click on the file name like you can when jumping between classes or method names in PhpStorm.

In my tests, it appears this feature is almost supported but the syntax that Symfony supports for targeting paths in Twig is slightly different than what Craft expects, especially when it comes to plugins and modules where template paths are prefixed by the module name.

It appears, if we could optionally place an @ sign at the beginning of template paths before the module name, the Symfony plugin would allow us to add support for auto-completion AND goto template behavior.

I'm not advocating that this is the only way to support this. The more general feature request is simply to support Twig auto-completion AND goto behavior.


Here's an example of how this almost works:

Once the Symfony Support plugin is added to a project, you can add an ide-twig.json file to the root of your project to configure paths for the Symfony plugins settings in: Languages & Frameworks -> PHP -> Symfony -> Twig / Template.

The ide-twig.json file might look like this:

{
    "namespaces": [
        {
            "path": "vendor/craftcms/cms/src/templates"
        }
    ]
}

The Craft templates folder auto-completion and goto behavior works out of the box, as no namespace is required and no module prefix is required in the template path.

{% extends "_layouts/base.html" %}
{% import "_includes/forms.html" as forms %}

When adding support for plugins and modules, however, the path does not get recognized with the configuration above because the module ID is required in the template path:

{% extends "sprout-forms/_layouts/base.twig" %}
{% import 'sprout-base/_includes/sproutcp.twig" as sprout %}

If we add namespaces to our ide-twig.json file, we can get very close to the same naming conventions:

{
    "namespaces": [
        {
            "path": "vendor/craftcms/cms/src/templates"
        },
        {
            "namespace": "sprout-forms",
            "path": "vendor/barrelstrength/sprout-forms/src/templates"
        },
        {
            "namespace": "sprout-base",
            "path": "vendor/barrelstrength/sprout-base/src/templates"
        }
    ]
}

Once those namespaces are in place, we can get autocompletion using the following syntax – the only difference being the @ symbol at the beginning of the module ID string:

{% extends "@sprout-forms/_layouts/base.twig" %}
{% import '@sprout-base/_includes/sproutcp.twig" as sprout %}

Example of autocompletion working for paths in separate plugins or modules:
http://share.barrelstrength.co/01f917439107

While this gives us auto-completion in templates for our plugins and modules, the templates do not load any longer as the @ syntax is not recognized and throws an "Unable to find the template" error.

If Craft could support an optional @ symbol at the beginning of module IDs when loading templates, I believe we could have auto-completion AND goto template support when we command+click on a template filename in the IDE.

@BenParizek BenParizek changed the title [FR] Add support for Twig auto-completion AND goto file behavior [FR] Add support for Twig auto-completion AND goto file behavior in plugins and modules Aug 29, 2019
@brandonkelly brandonkelly added site development 👩‍💻 features related to website/API development enhancement improvements to existing features labels Aug 30, 2019
@craftcms craftcms locked and limited conversation to collaborators Jun 22, 2021

This issue was moved to a discussion.

You can continue the conversation there. Go to discussion →

Labels
enhancement improvements to existing features site development 👩‍💻 features related to website/API development
Projects
None yet
Development

No branches or pull requests

2 participants