sis001 upload multiple file

sis001 upload multiple files

目前為 2023-10-12 提交的版本,檢視 最新版本

您需要先安裝使用者腳本管理器擴展,如 TampermonkeyGreasemonkeyViolentmonkey 之後才能安裝該腳本。

您需要先安裝使用者腳本管理器擴充功能,如 TampermonkeyViolentmonkey 後才能安裝該腳本。

您需要先安裝使用者腳本管理器擴充功能,如 TampermonkeyViolentmonkey 後才能安裝該腳本。

您需要先安裝使用者腳本管理器擴充功能,如 TampermonkeyUserscripts 後才能安裝該腳本。

你需要先安裝一款使用者腳本管理器擴展,比如 Tampermonkey,才能安裝此腳本

您需要先安裝使用者腳本管理器擴充功能後才能安裝該腳本。

(我已經安裝了使用者腳本管理器,讓我安裝!)

你需要先安裝一款使用者樣式管理器擴展,比如 Stylus,才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展,比如 Stylus,才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展,比如 Stylus,才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展後才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展後才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展後才能安裝此樣式

(我已經安裝了使用者樣式管理器,讓我安裝!)

// ==UserScript==
// @name         sis001 upload multiple file
// @namespace    http://tampermonkey.net/
// @version      0.2
// @description  sis001 upload multiple files
// @author       fear1999
// @match        https://sis001.com/forum/post.php?action=newthread*
// @match        https://sis001.com/forum/post.php?action=edit*
// @match        https://sis001.com/forum/post.php?action=reply*
// @icon         https://www.google.com/s2/favicons?sz=64&domain=sis001.com
// @grant        none
// @license MIT
// ==/UserScript==

var origainalInsertAttach

function main() {
    configMultipleInput()
    origainalInsertAttach = this.insertAttach
    this.insertAttach = customInsertAttach
}

function configMultipleInput() {
    console.log('configMultipleInput')
    Array.from(
        document
        .getElementById('posteditor_bottom')
        .getElementsByTagName('input')
    ).forEach((ele) => {
        if (ele.name == 'attach[]') {
            replaceInput(ele, (newInput) => {
                newInput.setAttribute('multiple', 'multiple')
            })
        }
    })
}

function customInsertAttach(id) {
    try {
        console.log('customInsertAttach')
        var input = document.getElementById('attach_' + id)
        let files = input.files
        Array.from(files)
            .forEach((file, index) => {
                let currentId = id + index
                let currentInput = document.getElementById('attach_' + currentId)
                replaceInput(currentInput, (newInput) => {
                    newInput.files = createFileList(file)
                })
                origainalInsertAttach(currentId)
            })
    } catch (e) {
        console.log(e)
    }
}

function replaceInput(old, op) {
    let newInput = old.cloneNode()
    newInput.onchange = old.onchange
    op(newInput)
    old.parentElement.replaceChild(newInput, old)
    return newInput
}

function createFileList(file) {
    let newList = new DataTransfer()
    newList.items.add(file)
    return newList.files
}

main()