// ==UserScript== // @name 【tapd】一键查询所有项目中的wiki // @namespace https://github.com/kiccer/tapd-search-wiki // @version 2.1.0 // @description 为了方便在tapd的wiki中查找接口而开发 // @author kiccer<1072907338@qq.com> // @copyright 2020, kiccer (https://github.com/kiccer) // @license MIT // @iconURL https://www.google.com/s2/favicons?domain=www.tapd.cn // @include /^https:\/\/www\.tapd\.cn\/\d+\/markdown_wikis\/(show\/|search\?.*)$/ // @require https://cdn.bootcdn.net/ajax/libs/vue/2.6.9/vue.js // @require https://cdn.bootcdn.net/ajax/libs/axios/0.21.0/axios.js // @require https://cdn.bootcdn.net/ajax/libs/tween.js/18.6.4/tween.umd.min.js // @noframes 这个千万别删掉!会出现死循环的! // @nocompat Chrome // @grant none // @downloadURL none // ==/UserScript== /* global Vue axios TWEEN takePartInWorkspaces */ // https://www.tampermonkey.net/documentation.php // https://element.eleme.cn/#/zh-CN/component/button (() => { 'use strict' // 当前是否是 show 页面 const IN_SHOW_PAGE = /^https:\/\/www\.tapd\.cn\/\d+\/markdown_wikis\/show\/.*$/.test(location.href) // 当前是否是 search 页面 const IN_SEARCH_PAGE = /^https:\/\/www\.tapd\.cn\/\d+\/markdown_wikis\/search\?.*$/.test(location.href) // 当前项目id const CURR_PROJECT_ID = location.href.match(/(?<=https:\/\/www.tapd.cn\/)\d+(?=\/markdown_wikis\/)/g)[0] || '' // 随机字符串 const GM_ADD_STYLE_HASH = `GM_addStyle_${parseInt(Math.random() * Date.now())}` // 从 session 中获取缓存的搜索词 const SEARCH_WORD = sessionStorage.getItem('tapd-search-wiki/search_word') || '' // 页面 query 参数 const URL_QUERY = (() => { const queryStr = location.href.split('?')[1] if (queryStr) { const res = {} queryStr.split('&').forEach(n => { const [key, val] = n.split('=') res[key] = val }) return res } else { return {} } })() // GM_addStyle 方法 function GM_addStyle (css) { const style = document.getElementById(GM_ADD_STYLE_HASH) || (() => { const style = document.createElement('style') style.type = 'text/css' style.id = GM_ADD_STYLE_HASH document.head.appendChild(style) return style })() const sheet = style.sheet // sheet.insertRule(css, (sheet.rules || sheet.cssRules || []).length) css.split('\n\n').forEach(n => sheet.insertRule(n, (sheet.rules || sheet.cssRules || []).length)) } // 自写 Promise.all 方法 function PromiseAll (arr = []) { return new Promise((resolve, reject) => { const resVal = Array(arr.length).fill() arr.forEach((func, index) => { func().then(res => { resVal[index] = res if (resVal.every(n => n)) resolve(resVal) }).catch(err => { reject(err) }) }) }) } // 加载 element-ui script function elementScript () { return new Promise((resolve, reject) => { const vueListener = setInterval(() => { // 注册全局 Vue window.Vue || (window.Vue = Vue) if (window.Vue) { clearInterval(vueListener) const elScript = document.createElement('script') elScript.setAttribute('src', 'https://cdn.bootcdn.net/ajax/libs/element-ui/2.14.1/index.min.js') document.head.appendChild(elScript) elScript.addEventListener('load', resolve) elScript.addEventListener('error', reject) } }, 100) }) } // 加载 element-ui css function elementStyle () { return new Promise((resolve, reject) => { const elStyle = document.createElement('link') elStyle.setAttribute('href', 'https://cdn.bootcdn.net/ajax/libs/element-ui/2.14.1/theme-chalk/index.min.css') elStyle.setAttribute('rel', 'stylesheet') document.head.appendChild(elStyle) elStyle.addEventListener('load', resolve) elStyle.addEventListener('error', reject) }) } // 等待所有依赖项加载完毕后再执行 PromiseAll([ elementScript, elementStyle ]).then(() => { init() }).catch(err => { console.log(222, err) }) // vue 组件 (搜索框) Vue.component('search-input', { name: 'search-input', template: `
`, props: { enter: Function, loading: Boolean }, data () { return { keyword: '' } }, created () { if (IN_SEARCH_PAGE) { this.keyword = SEARCH_WORD || decodeURIComponent(URL_QUERY.search) || '' } }, methods: { search () { if (this.loading) return // 保存搜索词 sessionStorage.setItem('tapd-search-wiki/search_word', this.keyword) // 如果绑定了 enter 方法,那就支持无刷新更新数据 if (this.enter) { this.enter(this.keyword) } else { location.href = `https://www.tapd.cn/${CURR_PROJECT_ID}/markdown_wikis/search?search=${encodeURIComponent(this.keyword)}` } } } }) // 初始化 function init () { // 添加 vue 容器 const headerBar = document.getElementById('hd') const app = document.createElement('div') headerBar.appendChild(app) headerBar.removeChild( document.querySelector('.main-search-area') ) new Vue({ el: app, name: 'kiccer-tampermonkey-tapd-wiki-search', template: ` ` }) // 如果是 search 页面则添加搜索结果列表容器 if (IN_SEARCH_PAGE) { const searchResultContainer = document.querySelector('.search-result') const resultDom = document.createElement('div') searchResultContainer.appendChild(resultDom) ;[ document.querySelector('.search-div'), document.querySelector('.wiki-list'), document.querySelector('.simple-pager') ].forEach(n => n && searchResultContainer.removeChild(n)) new Vue({ el: resultDom, name: 'kiccer-tampermonkey-tapd-wiki-result', template: `