T/U area

    @@ -42,6 +42,7 @@ "head link[rel='canonical'][href]" ]) || {}).href || location.href; + const area = append_element(container, "textarea", { className: "page-meta", value: document.title + "\n" + canonical,
  • /*
     * @title T/U area
     * @description show textarea for copy title/url
     * @include http://*
     * @include https://*
     * @contributor a-kuma3 http://let.hatelabo.jp/a-kuma3/let/hJme4N-s77x7
     * @license MIT License https://opensource.org/licenses/MIT
     * @javascript_url
     */
    
    (() => {
        "use strict";
    
        const append_element = (paren, tag, attr) => {
            return paren.appendChild(Object.assign(document.createElement(tag), attr));
        };
    
        const LET_ID = "let-" + Date.now();
    
        // `id` is possibility of overwritten by Extension or else
        // e.g. It's All Text!
        //      <textarea id="itsalltext_generated_id__1">
        const container = append_element(document.body, "div", {
            className: LET_ID,
        });
    
        const remove_let = () => {
            container.parentNode.removeChild(container);
    
            const style = document.querySelector(`style[data-let-id="${LET_ID}"]`);
            if (!style) return;
    
            style.parentNode.removeChild(style);
        };
    
        // http://let.hatelabo.jp/noromanba/let/hJme3Pyylqos
        // https://gist.github.com/noromanba/d730ccf3ae5e6916cd60
        const canonical = (document.querySelector([
                "head meta[property='og:url'][content]"
            ]) || {}).content ||
            (document.querySelector([
                "head link[rel='canonical'][href]"
            ]) || {}).href ||
            location.href;
    
        const area = append_element(container, "textarea", {
            className: "page-meta",
            value: document.title + "\n" + canonical,
            cols: 100,
            rows: 5,
            // Chrome/mium can not use onkeypress w/ Esc key, use onkeydown/onkeyup
            onkeyup(evt) {
                const ESC = 27;
                if (evt.keyCode === ESC) {
                    remove_let();
                }
            },
            readOnly: true,
        });
    
        // TODO plain link for keyboard a11y
        append_element(container, "div", {
            className: "btn close",
            innerHTML: "&#x274c;",
            title: "Close",
            onclick() { remove_let(); },
            tabIndex: 0,
        });
    
        // TODO plain img-link for keyboard a11y
        append_element(container, "div", {
            className: "btn bookmark",
            innerHTML: "<img src='https://b.st-hatena.com/images/entry-button/button-only.gif'>",
            alt: "Hatena Bookmark",
            title: "Hatena Bookmark",
            onclick() {
                location.href = "http://b.hatena.ne.jp/entry/" + canonical;
            },
            tabIndex: 0,
        });
    
        const STYLE_PREFIX = "." + LET_ID;
        append_element(document.head || document.body, "style", {
            // BUG  Template Literals Workaround for JavaScript::Squish
            //      malfunction multi selector into a Template Literals,
            //      due to Hatena::Let packer was remove spaces at around punctuations
            //
            //      thx id:unarist
            //      JavaScript::Squish SYNOPSIS c.f.
            //      http://unarist.hatenablog.com/entry/2017/04/04/151131
            //          !%&()*+,-/:;<=>?[]\{|}~
            //      http://h.hatena.ne.jp/unarist/83469576782921676
            //      http://let.hatelabo.jp/unarist/let/hLHW5K6CvOAv
            //
            //      i.e.
            //      `.klass div {} .klass pre {}` -> `.klass div{}.klass pre{}`
            //      `${EXP} div {} ${EXP} .clazz {}` -> `${EXP}div{}${EXP}.clazz{}`
            //
            //      Hatena::Let using JavaScript::Squish c.f.
            //      http://secondlife.hatenablog.jp/entry/20100515/1273919432
            //      http://search.cpan.org/dist/JavaScript-Squish/
            //
            // TBD replace `''` c.f.
            // http://let.hatelabo.jp/unarist/let/hJme5PqDlpFI
            textContent: [
                STYLE_PREFIX + " {",
                    "display: inline-block;",
                    "position: fixed;",
                    "top: 0;",
                    "left: 0;",
                    "background-color: white;",
                    "border: 1px inset gray;",
                    "z-index: " + Number.MAX_SAFE_INTEGER || Number.MAX_VALUE + ";",
                "}",
                STYLE_PREFIX + " textarea {",
                "    height: 5em !important;",
                "    vertical-align: top;",
                "    font-family: monospace;",
                "    font-size: 10pt;",
                "    height: 5em;",
                "    width: auto;",
                "    margin: 0;",
                "}",
                STYLE_PREFIX + " textarea::-moz-selection {",
                "    background-color: #5dacf2;",
                "    color: #444;",
                "}",
                STYLE_PREFIX + " .btn {",
                "    display: inline-block;",
                "    position: absolute;",
                "    right: 0;",
                "    color: white;",
                "    width: 1.5em;",
                "    height: 1.5em;",
                "    border: 2px silver solid;",
                "    cursor: pointer;",
                "    text-align: center;",
                "    font-family: monospace;",
                "    font-size: 10pt;",
                "}",
                STYLE_PREFIX + " .close {",
                "    background-color: darkred;",
                "    vertical-align: top;",
                "}",
                STYLE_PREFIX + " .bookmark {",
                "    top: 1.5em;",
                "    padding: 0;",
                "}",
                STYLE_PREFIX + " .bookmark img {",
                "    width: 1.5em;",
                "    height: 1.5em;",
                "}",
            ].join("\n"),
        }).setAttribute("data-let-id", LET_ID);
    
        area.focus();
        area.select();
    })();
    
    // WIP Experimental
    // http://let.hatelabo.jp/noromanba/let/hJme5LS4m4I9
    
    
  • Permalink
    このページへの個別リンクです。
    RAW
    書かれたコードへの直接のリンクです。
    Packed
    文字列が圧縮された書かれたコードへのリンクです。
    Userscript
    Greasemonkey 等で利用する場合の .user.js へのリンクです。
    Loader
    @require やソースコードが長い場合に多段ロードする Loader コミのコードへのリンクです。
    Metadata
    コード中にコメントで @xxx と書かれたメタデータの JSON です。

History

  1. 2017/04/18 22:14:31 - 2017-04-18
  2. 2017/04/18 22:13:29 - 2017-04-18
  3. 2017/04/02 01:19:53 - 2017-04-02
  4. 2017/04/02 01:14:27 - 2017-04-02
  5. 2017/04/01 09:24:51 - 2017-04-01
  6. 2017/04/01 06:27:48 - 2017-04-01
  7. 2017/03/31 20:47:12 - 2017-03-31
  8. 2017/03/31 17:03:27 - 2017-03-31
  9. 2017/03/31 13:38:11 - 2017-03-31
  10. 2017/03/31 13:13:25 - 2017-03-31
  11. 2017/03/31 13:06:06 - 2017-03-31
  12. 2017/03/31 11:32:39 - 2017-03-31
  13. 2017/03/31 11:01:18 - 2017-03-31
  14. 2017/03/31 10:41:28 - 2017-03-31