Skip to content

Instantly share code, notes, and snippets.

@twinsant
Last active April 11, 2025 07:47
Show Gist options
  • Select an option

  • Save twinsant/10a7613ad0b92ed64d5900bc5bebd6c2 to your computer and use it in GitHub Desktop.

Select an option

Save twinsant/10a7613ad0b92ed64d5900bc5bebd6c2 to your computer and use it in GitHub Desktop.
Aminer引用论文排序
// ==UserScript==
// @name Sort Qutes
// @namespace http://www.twinsant.com/
// @version 2025-04-10
// @description 将Aminer的引用论文排序
// @author twinsant
// @match https://www.aminer.cn/pub/*
// @require https://cdnjs.cloudflare.com/ajax/libs/jquery/3.7.1/jquery.min.js
// @icon https://www.google.com/s2/favicons?sz=64&domain=aminer.cn
// @grant none
// ==/UserScript==
/**
* jQuery.fn.sortElements
* --------------
* @param Function comparator:
* Exactly the same behaviour as [1,2,3].sort(comparator)
*
* @param Function getSortable
* A function that should return the element that is
* to be sorted. The comparator will run on the
* current collection, but you may want the actual
* resulting sort to occur on a parent or another
* associated element.
*
* E.g. $('td').sortElements(comparator, function(){
* return this.parentNode;
* })
*
* The <td>'s parent (<tr>) will be sorted instead
* of the <td> itself.
*/
jQuery.fn.sortElements = (function() {
var sort = [].sort;
return function(comparator, getSortable) {
getSortable = getSortable || function() {
return this;
};
var placements = this.map(function() {
var sortElement = getSortable.call(this),
parentNode = sortElement.parentNode,
// Since the element itself will change position, we have
// to have some way of storing its original position in
// the DOM. The easiest way is to have a 'flag' node:
nextSibling = parentNode.insertBefore(
document.createTextNode(''),
sortElement.nextSibling
);
return function() {
if (parentNode === this) {
throw new Error(
"You can't sort elements if any one is a descendant of another."
);
}
// Insert before flag:
parentNode.insertBefore(this, nextSibling);
// Remove flag:
parentNode.removeChild(nextSibling);
};
});
return sort.call(this, comparator).each(function(i) {
placements[i].call(getSortable.call(this));
});
};
})();
(function() {
'use strict';
// Your code here...
$(document).ready(function() {
const tab = $('span:contains("引用论文")')
tab.click();
tab.html('引用论文-已排序');
$('.a-aminer-core-pub-c-reference-tree-content').sortElements(function(a, b) {
const numA = parseInt($(a).find('.a-aminer-core-pub-c-reference-tree-quote>span:first').html());
const numB = parseInt($(b).find('.a-aminer-core-pub-c-reference-tree-quote>span:first').html());
//console.log(numA, numB);
return numA < numB ? 1 : -1;
});
$('span:contains("引用论文")').html('引用论文-已排序');
});
})();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment