Skip to content
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

[4.x] Allow to get site by key #9567

Closed
wants to merge 1 commit into from

Conversation

aerni
Copy link
Contributor

@aerni aerni commented Feb 21, 2024

I've come across this issue on almost every multi-site I've built. So this is an attempt to provide an easy fix without the need for some ugly Antlers or a new tag.

I need to output some data of a specific site on the frontend. There is already a sites variable in the cascade. However, it uses integers as the keys, so you can't get a specific site by its handle.

This is unfeasible and prone to errors as the order of the sites might change in the config/sites.php config:

{{ sites:0:permalink }}

This technically works:

{{ sites | where('handle', 'gounity') | first | get('permalink') }}

But getting the site by handle is much nicer:

{{ sites:gounity:permalink }}

I've tried using the locales tag to do what I need as well. But it has its own quirks and doesn't work reliably in every scenario. It wasn't built to simply output the data of a given site.

This PR is technically a breaking change, as a user might have output a site by integer key in the template:

{{ sites:0:permalink }}

So it's probably safest to merge this into Statamic 5.

I'm not entirely sure why you've called ->values() on the sites in the first place. So please enlighten me, if there was a specific reason for this.

@jasonvarga
Copy link
Member

I'm not entirely sure why you've called ->values() on the sites in the first place. So please enlighten me, if there was a specific reason for this.

We added sites mainly so you could loop over them. Without calling ->values(), you can't loop over them anymore. Explained here: https://statamic.dev/variables/sites

Unfortunately this PR breaks that.

A workaround for you that might be simpler might be this:

{{? $keyed_sites = $sites->keyBy->handle ?}}

{{ keyed_sites:gounity:handle }}

or

{{? $gounity = $sites->firstWhere('handle', 'gounity') ?}}

{{ gounity:name }}
{{ gounity:handle }}

@jasonvarga jasonvarga closed this Feb 22, 2024
@aerni
Copy link
Contributor Author

aerni commented Feb 22, 2024

Oh, yeah. Don't mind me forgetting basic PHP 😅

Would you welcome a PR for a simple site tag instead?

This tag gets the site from the context by handle and can be used as a single tag or tag pair.

class Site extends Tags
{
    public function wildcard($key)
    {
        $handle = Str::before($key, ':');

        $site = $this->context->get('sites')->firstWhere('handle', $handle);

        if (! $site) {
            return null;
        }

        $data = $site->toAugmentedCollection();

        return Str::contains($key, ':')
            ? $data->get(Str::after($key, ':'))
            : $data;
    }
}
{{ site:gounity:permalink }}

{{ site:gounity }}
    {{ permalink }}
{{ /site:gounity }}

@jasonvarga
Copy link
Member

There's already a site variable in the context which is the current site. It'll conflict with that and you'd need to do {{ %site:gounity }}

But yes a tag like that could be useful as long as it doesn't end up breaking the existing site variable.

Or maybe even call it get_site, like we have get_content, get_errors, etc.

@aerni
Copy link
Contributor Author

aerni commented Feb 22, 2024

I'm aware of the site variable. It shouldn't conflict with the tag, though, as the variable is evaluated before the tag.

The only very unlikely scenario is that you won't be able to get a site by handle with the tag because the handle is called the same as a key inside the site variable's config.

For example, getting the permalink from the site variable will always work, but you will never be able to get a site with the handle permalink.

This will give you the permalink from the variable in the context rather than the site with handle permalink:

{{ site:permalink }}

@aerni aerni mentioned this pull request Feb 23, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants