summaryrefslogtreecommitdiffstats
path: root/vendor/ipl/web/src/Widget/CopyToClipboard.php
blob: 28e934787554413de648412abcc101192f2c39f6 (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
<?php

namespace ipl\Web\Widget;

use ipl\Html\Attributes;
use ipl\Html\BaseHtmlElement;
use ipl\Html\HtmlElement;
use ipl\I18n\Translation;

/**
 * Copy to clipboard button
 */
class CopyToClipboard extends BaseHtmlElement
{
    use Translation;

    protected $tag = 'button';

    protected $defaultAttributes = ['type' => 'button'];

    /**
     * Create a copy to clipboard button
     *
     * Creates a copy to clipboard button, which when clicked copies the text from the html element identified as
     * clipboard source that the clipboard button attaches itself to.
     */
    private function __construct()
    {
        $this->addAttributes(
            [
                'class'                 => 'copy-to-clipboard',
                'data-icinga-clipboard' => true,
                'tabindex'              => -1,
                'data-copied-label'     => $this->translate('Copied'),
                'title'                 => $this->translate('Copy to clipboard'),
            ]
        );
    }

    /**
     * Attach the copy to clipboard button to the given Html source element
     *
     * @param BaseHtmlElement $source
     *
     * @return void
     */
    public static function attachTo(BaseHtmlElement $source): void
    {
        $clipboardWrapper = new HtmlElement(
            'div',
            Attributes::create(['class' => 'clipboard-wrapper'])
        );

        $clipboardWrapper->addHtml(new static());

        $source->addAttributes(['data-clipboard-source' => true]);
        $source->prependWrapper($clipboardWrapper);
    }

    public function assemble(): void
    {
        $this->setHtmlContent(new Icon('clone'));
    }
}