View | Details | Raw Unified | Return to bug 36275
Collapse All | Expand All

(-)a/koha-tmpl/intranet-tmpl/prog/en/includes/copy-to-clipboard-button.inc (+1 lines)
Line 0 Link Here
1
<button type="button" class="btn btn-xs btn-primary" data-copy-to-clipboard data-value="[% copy_to_clipboard_value | html %]"> <i class="fa-solid fa-clipboard"></i> Copy to clipboard </button>
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/members/apikeys.tt (+3 lines)
Lines 48-57 Link Here
48
                <li>
48
                <li>
49
                    <span class="label">Client ID: </span>
49
                    <span class="label">Client ID: </span>
50
                    [% fresh_api_key.client_id | html %]
50
                    [% fresh_api_key.client_id | html %]
51
                    [% INCLUDE 'copy-to-clipboard-button.inc' copy_to_clipboard_value = fresh_api_key.client_id %]
51
                </li>
52
                </li>
52
                <li>
53
                <li>
53
                    <span class="label">Secret: </span>
54
                    <span class="label">Secret: </span>
54
                    [% fresh_api_key.plain_text_secret | html %]
55
                    [% fresh_api_key.plain_text_secret | html %]
56
                    [% INCLUDE 'copy-to-clipboard-button.inc' copy_to_clipboard_value = fresh_api_key.plain_text_secret %]
55
                </li>
57
                </li>
56
            </ol>
58
            </ol>
57
        </div>
59
        </div>
Lines 137-142 Link Here
137
[% MACRO jsinclude BLOCK %]
139
[% MACRO jsinclude BLOCK %]
138
    [% INCLUDE 'str/members-menu.inc' %]
140
    [% INCLUDE 'str/members-menu.inc' %]
139
    [% Asset.js("js/members-menu.js") | $raw %]
141
    [% Asset.js("js/members-menu.js") | $raw %]
142
    [% Asset.js("js/copyToClipboard.js") | $raw %]
140
    <script>
143
    <script>
141
        $(document).ready(function () {
144
        $(document).ready(function () {
142
            $(".delete").on("click", function (e) {
145
            $(".delete").on("click", function (e) {
(-)a/koha-tmpl/intranet-tmpl/prog/js/copyToClipboard.js (-1 / +23 lines)
Line 0 Link Here
0
- 
1
(() => {
2
    const copyToClipboardButtons = document.querySelectorAll(
3
        "[data-copy-to-clipboard]"
4
    );
5
    if (copyToClipboardButtons.length) {
6
        const copyToClipboard = e => {
7
            const target = e.target;
8
            if (!(target instanceof HTMLButtonElement)) {
9
                return;
10
            }
11
            const { value } = target.dataset;
12
            if (!value) {
13
                return;
14
            }
15
16
            navigator.clipboard.writeText(value);
17
        };
18
19
        copyToClipboardButtons.forEach(copyToClipboardButton => {
20
            copyToClipboardButton.addEventListener("click", copyToClipboard);
21
        });
22
    }
23
})();

Return to bug 36275