WaniKani External Definition

Get External Definition from Weblio, Kanjipedia

目前为 2020-05-09 提交的版本。查看 最新版本

// ==UserScript==
// @name         WaniKani External Definition
// @namespace    https://github.com/patarapolw/wanikani-userscript
// @version      0.6
// @description  Get External Definition from Weblio, Kanjipedia
// @author       polv
// @match        *://www.wanikani.com/review/session*
// @match        *://www.wanikani.com/lesson/session*
// @match      *://www.wanikani.com/*vocabulary/*
// @match      *://www.wanikani.com/*kanji/*
// @match      *://www.wanikani.com/*radical/*
// @grant        GM_xmlhttpRequest
// @connect      kanjipedia.jp
// @connect      weblio.jp
// @require      https://cdn.jsdelivr.net/npm/@lyo/cheerio
// ==/UserScript==

(function (cheerio) {
    'use strict';

    cheerio = cheerio && Object.prototype.hasOwnProperty.call(cheerio, 'default') ? cheerio['default'] : cheerio;

    /*! *****************************************************************************
    Copyright (c) Microsoft Corporation.

    Permission to use, copy, modify, and/or distribute this software for any
    purpose with or without fee is hereby granted.

    THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH
    REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY
    AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT,
    INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM
    LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR
    OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
    PERFORMANCE OF THIS SOFTWARE.
    ***************************************************************************** */

    var __assign = function() {
        __assign = Object.assign || function __assign(t) {
            for (var s, i = 1, n = arguments.length; i < n; i++) {
                s = arguments[i];
                for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p)) t[p] = s[p];
            }
            return t;
        };
        return __assign.apply(this, arguments);
    };

    function __awaiter(thisArg, _arguments, P, generator) {
        function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }
        return new (P || (P = Promise))(function (resolve, reject) {
            function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }
            function rejected(value) { try { step(generator["throw"](value)); } catch (e) { reject(e); } }
            function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); }
            step((generator = generator.apply(thisArg, _arguments || [])).next());
        });
    }

    function __generator(thisArg, body) {
        var _ = { label: 0, sent: function() { if (t[0] & 1) throw t[1]; return t[1]; }, trys: [], ops: [] }, f, y, t, g;
        return g = { next: verb(0), "throw": verb(1), "return": verb(2) }, typeof Symbol === "function" && (g[Symbol.iterator] = function() { return this; }), g;
        function verb(n) { return function (v) { return step([n, v]); }; }
        function step(op) {
            if (f) throw new TypeError("Generator is already executing.");
            while (_) try {
                if (f = 1, y && (t = op[0] & 2 ? y["return"] : op[0] ? y["throw"] || ((t = y["return"]) && t.call(y), 0) : y.next) && !(t = t.call(y, op[1])).done) return t;
                if (y = 0, t) op = [op[0] & 2, t.value];
                switch (op[0]) {
                    case 0: case 1: t = op; break;
                    case 4: _.label++; return { value: op[1], done: false };
                    case 5: _.label++; y = op[1]; op = [0]; continue;
                    case 7: op = _.ops.pop(); _.trys.pop(); continue;
                    default:
                        if (!(t = _.trys, t = t.length > 0 && t[t.length - 1]) && (op[0] === 6 || op[0] === 2)) { _ = 0; continue; }
                        if (op[0] === 3 && (!t || (op[1] > t[0] && op[1] < t[3]))) { _.label = op[1]; break; }
                        if (op[0] === 6 && _.label < t[1]) { _.label = t[1]; t = op; break; }
                        if (t && _.label < t[2]) { _.label = t[2]; _.ops.push(op); break; }
                        if (t[2]) _.ops.pop();
                        _.trys.pop(); continue;
                }
                op = body.call(thisArg, _);
            } catch (e) { op = [6, e]; y = 0; } finally { f = t = 0; }
            if (op[0] & 5) throw op[1]; return { value: op[0] ? op[1] : void 0, done: true };
        }
    }

    function fixUrl($$, baseUrl) {
        $$('a').each(function (_, el) {
            $$(el).attr('href', new URL($$(el).attr('href'), baseUrl).href);
        });
        $$('img').each(function (_, el) {
            $$(el).attr('src', new URL($$(el).attr('src'), baseUrl).href);
        });
    }
    function parseJapanese(q, getFunction) {
        return __awaiter(this, void 0, void 0, function () {
            var result, weblio;
            return __generator(this, function (_a) {
                switch (_a.label) {
                    case 0:
                        result = {};
                        if (!(q.length === 1)) return [3 /*break*/, 2];
                        return [4 /*yield*/, parseKanjipedia(q, getFunction)];
                    case 1:
                        result = _a.sent();
                        _a.label = 2;
                    case 2: return [4 /*yield*/, parseWeblio(q, getFunction)];
                    case 3:
                        weblio = _a.sent();
                        result = __assign(__assign({}, result), weblio);
                        return [2 /*return*/, result];
                }
            });
        });
    }
    function parseKanjipedia(q, getFunction) {
        return __awaiter(this, void 0, void 0, function () {
            var urlBase, html, $$, trueUrl, _a, _b;
            return __generator(this, function (_c) {
                switch (_c.label) {
                    case 0:
                        urlBase = 'https://www.kanjipedia.jp/';
                        return [4 /*yield*/, getFunction(urlBase + "search?k=" + q + "&kt=1&sk=leftHand")];
                    case 1:
                        html = _c.sent();
                        $$ = cheerio.load(html);
                        trueUrl = new URL($$('#resultKanjiList a').attr('href'), urlBase).href;
                        _b = (_a = cheerio).load;
                        return [4 /*yield*/, getFunction(trueUrl)];
                    case 2:
                        $$ = _b.apply(_a, [_c.sent()]);
                        fixUrl($$, urlBase);
                        return [2 /*return*/, {
                                kanjipedia: $$('#kanjiRightSection').find('p').html(),
                                kanjipediaUrl: trueUrl
                            }];
                }
            });
        });
    }
    function parseWeblio(q, getFunction) {
        return __awaiter(this, void 0, void 0, function () {
            var url, html, $$;
            return __generator(this, function (_a) {
                switch (_a.label) {
                    case 0:
                        url = 'https://www.weblio.jp/content/' + q;
                        return [4 /*yield*/, getFunction(url)];
                    case 1:
                        html = _a.sent();
                        $$ = cheerio.load(html);
                        fixUrl($$, 'https://www.weblio.jp');
                        return [2 /*return*/, {
                                weblio: $$('.NetDicBody').toArray().map(function (el) { return $$(el).html() || ''; }).filter(function (el) { return el !== ''; }),
                                weblioUrl: url
                            }];
                }
            });
        });
    }
    window.external_definition = { parseJapanese: parseJapanese };

    var lookupMap = new Map();
    $(function () {
        updateInfo();
        $.jStorage.listenKeyChange('currentItem', function () {
            updateInfo();
        });
    });
    var observer = new MutationObserver(function (mutations) {
        var doUpdate = false;
        mutations.forEach(function (mutation) {
            mutation.addedNodes.forEach(function (node) {
                if (node instanceof HTMLElement &&
                    node.matches('#item-info-meaning-mnemonic, #supplement-voc-meaning, #supplement-kan-meaning, #information')) {
                    doUpdate = true;
                }
            });
        });
        if (doUpdate) {
            updateInfo();
        }
    });
    observer.observe(document.body, {
        attributes: true,
        childList: true,
        characterData: true,
        subtree: true
    });
    function scrape(url) {
        return __awaiter(this, void 0, void 0, function () {
            return __generator(this, function (_a) {
                return [2 /*return*/, new Promise(function (resolve, reject) {
                        GM_xmlhttpRequest({
                            method: 'GET',
                            url: url,
                            onload: function (data) {
                                resolve(data.responseText);
                            },
                            onerror: function (data) {
                                reject(data.statusText);
                            }
                        });
                    })];
            });
        });
    }
    function updateInfo() {
        return __awaiter(this, void 0, void 0, function () {
            var word, _a, kanjipedia, kanjipediaUrl, weblio, weblioUrl, _b, $dialog, $meanings, $kanjipedia, $weblio_1;
            return __generator(this, function (_c) {
                switch (_c.label) {
                    case 0:
                        word = (function () {
                            var m = /wanikani\.com\/(?:kanji|vocabulary)\/(.+)$/.exec(location.href);
                            if (m) {
                                return decodeURIComponent(m[1].replace(/する$/, ''));
                            }
                            var it = $.jStorage.get('currentItem');
                            return it.kan || it.voc;
                        })();
                        if (!word) {
                            return [2 /*return*/];
                        }
                        _b = lookupMap.get(word);
                        if (_b) return [3 /*break*/, 2];
                        return [4 /*yield*/, parseJapanese(word, scrape)];
                    case 1:
                        _b = (_c.sent());
                        _c.label = 2;
                    case 2:
                        _a = _b, kanjipedia = _a.kanjipedia, kanjipediaUrl = _a.kanjipediaUrl, weblio = _a.weblio, weblioUrl = _a.weblioUrl;
                        lookupMap.set(word, { kanjipedia: kanjipedia, kanjipediaUrl: kanjipediaUrl, weblio: weblio, weblioUrl: weblioUrl });
                        $dialog = $('<div id="external-def">');
                        $meanings = $('#item-info-meaning-mnemonic, #supplement-voc-meaning, #supplement-kan-meaning');
                        if ($meanings.length > 0) {
                            $meanings.prepend($dialog);
                        }
                        else {
                            $('#information').append($dialog);
                        }
                        if (kanjipedia) {
                            $kanjipedia = $('<section class="kanjipedia"></section>');
                            $dialog.append($kanjipedia);
                            if ($.jStorage.get('questionType') === 'reading')
                                $('.kanjipedia').css('display', 'none');
                            $kanjipedia.html(kanjipedia +
                                '<br><a href="' + kanjipediaUrl + '" target="_blank">Click for full entries</a>');
                            $kanjipedia.prepend('<h2>Kanjipedia Explanation</h2>');
                        }
                        if (weblio.length > 0) {
                            $weblio_1 = $('<section class="weblio"></section>');
                            $dialog.append($weblio_1);
                            if ($.jStorage.get('questionType') === 'reading')
                                $('.weblio').css('display', 'none');
                            $weblio_1.html('');
                            weblio.map(function (w) {
                                $weblio_1.append(w);
                            });
                            $weblio_1.append('<br><a href="' + weblioUrl + '" target="_blank">Click for full entries</a>');
                            $weblio_1.prepend('<h2>Weblio Explanation</h2>');
                        }
                        return [2 /*return*/];
                }
            });
        });
    }
    // @ts-ignore
    try {
        $('.app-store-menu-item').remove();
        $('<li class="app-store-menu-item"><a href="https://community.wanikani.com/t/there-are-so-many-user-scripts-now-that-discovering-them-is-hard/20709">App Store</a></li>').insertBefore($('.navbar .dropdown-menu .nav-header:contains("Account")'));
        window.appStoreRegistry = window.appStoreRegistry || {};
        window.appStoreRegistry[GM_info.script.uuid] = GM_info;
        localStorage.appStoreRegistry = JSON.stringify(appStoreRegistry);
    }
    catch (e) { }

}(cheerio));

QingJ © 2025

镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址