Wish.com - Price filter

Filtering by max price

目前為 2018-02-02 提交的版本,檢視 最新版本

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

You will need to install an extension such as Tampermonkey to install this script.

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

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

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

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

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

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

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

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

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

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

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

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

// ==UserScript==
// @name         Wish.com - Price filter
// @namespace    http://tampermonkey.net/
// @version      1.4
// @description  Filtering by max price
// @author       [email protected], Shuunen
// @match        https://www.wish.com/*
// @grant        none
// ==/UserScript==

$(document).ready(function() {

    console.log('wish price filter : init');

    // Returns a function, that, as long as it continues to be invoked, will not
    // be triggered. The function will be called after it stops being called for
    // N milliseconds. If `immediate` is passed, trigger the function on the
    // leading edge, instead of the trailing.
    function debounce(func, wait, immediate) {
        var timeout;
        return function() {
            var context = this, args = arguments;
            var later = function() {
                timeout = null;
                if (!immediate) func.apply(context, args);
            };
            var callNow = immediate && !timeout;
            clearTimeout(timeout);
            timeout = setTimeout(later, wait);
            if (callNow) func.apply(context, args);
        };
    }

    function showHideProducts() {
        console.log('wish price filter : showHideProducts');
        max_price = parseInt($("#wtc_max_price").val()) || 1000;
        var items = $(".feed-actual-price");
        $.each( items, function() {
            var priceOk = ($(this).text().replace(/\D/g,'') <= max_price);
            $(this).parent().parent().parent().parent().toggle(priceOk);
        });
    }

    if ($("#nav-search").length > 0){
        $("#header-left").after('<div id="wish_tweaks_config" style="float: left; margin-top: 18px;">Max Price: <input id="wtc_max_price" type="text" maxlength="4" style="width: 30px;width: 2;margin-left: 5px;margin-top: 0px;"></div>');
    }

    var showHideProductsDebounced = debounce(showHideProducts, 500);

    // when dom content change
    document.getElementById('contest-feed').addEventListener('DOMSubtreeModified', showHideProductsDebounced);

    // when input value change
    $("#wtc_max_price").keydown(showHideProductsDebounced);

});