summaryrefslogtreecommitdiff
path: root/src/UsesWordPressScripts.php
blob: e93a01e43e3e85d40ad60f5100fc667078466513 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
<?php

namespace Dweipert\WpEnqueueAssets;

trait UsesWordPressScripts
{
    /**
     * @var string
     */
    protected $buildDir = 'build';

    /**
     * @param string $handle
     * @param string $asset
     * @param array $deps
     * @param bool $inFooter
     */
    public function enqueueScript($handle, $asset, $deps = [], $inFooter = false)
    {
        $assetBaseName = pathinfo($asset, PATHINFO_FILENAME);
        $meta = $this->assetsMeta($assetBaseName);

        wp_enqueue_script(
            $handle,
            $this->assetsUrl($asset),
            array_replace($meta['dependencies'] ?? [], $deps),
            $meta['version'] ?? false,
            $inFooter
        );
    }

    /**
     * @param string $handle
     * @param string $asset
     * @param array $deps
     * @param string $media
     */
    public function enqueueStyle($handle, $asset, $deps = [], $media = 'all')
    {
        $assetBaseName = pathinfo($asset, PATHINFO_FILENAME);
        $meta = $this->assetsMeta($assetBaseName);

        wp_enqueue_style(
            $handle,
            $this->assetsUrl($asset),
            $deps,
            $meta['version'] ?? false,
            $media
        );
    }

    /**
     * @param string $asset
     *
     * @return string
     */
    public function assetsUrl($asset)
    {
        return get_stylesheet_directory_uri() . "/{$this->buildDir}/$asset";
    }

    /**
     * @param string $asset
     *
     * @return mixed
     */
    public function assetsMeta($asset)
    {
        return include get_stylesheet_directory() . "/{$this->buildDir}/$asset.asset.php";
    }
}