“MediaWiki:Gadget-InPageEdit.js”的版本间的差异
来自小鱼君和他的朋友们
小 (//InPageEdit) 标签:InPageEdit |
|||
第12行: | 第12行: | ||
// 开始执行任务 | // 开始执行任务 | ||
$('body').addClass('action-in-page-edit'); | $('body').addClass('action-in-page-edit'); | ||
− | + | ||
// Variables | // Variables | ||
var origintext, | var origintext, | ||
− | inPageEditTarget = option.target, | + | inPageEditTarget = decodeURIComponent(option.target), |
+ | inPageEditSection = option.section, | ||
inPageEditReason = option.reason, | inPageEditReason = option.reason, | ||
inPageEditTags = option.tags, | inPageEditTags = option.tags, | ||
inPageEditRefresh = option.refresh; | inPageEditRefresh = option.refresh; | ||
if (inPageEditTarget === undefined || inPageEditTarget === ''){inPageEditTarget = mw.config.get('wgPageName')} | if (inPageEditTarget === undefined || inPageEditTarget === ''){inPageEditTarget = mw.config.get('wgPageName')} | ||
+ | if (inPageEditSection=== undefined || inPageEditSection === ''){inPageEditSection = ''}else{inPageEditSection=parseInt(inPageEditSection)-1} | ||
if (inPageEditReason === undefined || inPageEditReason === ''){inPageEditReason = ''} | if (inPageEditReason === undefined || inPageEditReason === ''){inPageEditReason = ''} | ||
if (inPageEditRefresh === undefined || inPageEditRefresh == 'true' || inPageEditRefresh == '1'){inPageEditRefresh = true;} | if (inPageEditRefresh === undefined || inPageEditRefresh == 'true' || inPageEditRefresh == '1'){inPageEditRefresh = true;} | ||
− | if (inPageEditTags === undefined || inPageEditTags === ''){inPageEditTags = ' | + | if (inPageEditTags === undefined || inPageEditTags === ''){inPageEditTags = ''} |
− | + | ||
new mw.Api().get({ | new mw.Api().get({ | ||
action: "parse", | action: "parse", | ||
page: inPageEditTarget, | page: inPageEditTarget, | ||
+ | section: inPageEditSection, | ||
prop: "wikitext", | prop: "wikitext", | ||
format: "json" | format: "json" | ||
}).then(function(data) { | }).then(function(data) { | ||
− | origintext = data.parse.wikitext['*']; | + | if (data.parse !== undefined) { |
+ | origintext = data.parse.wikitext['*']; | ||
+ | } else { | ||
+ | origintext = '<!-- ⚠ Notice: Can’t get page content. Delete this line if you are creating a new page. -->\n'; | ||
+ | } | ||
ajaxArea() | ajaxArea() | ||
}).fail(function() { | }).fail(function() { | ||
− | origintext = '<!-- ⚠ | + | origintext = '<!-- ⚠ Notice: Can’t get page content. Delete this line if you are creating a new page. -->\n'; |
ajaxArea() | ajaxArea() | ||
}); | }); | ||
第41行: | 第48行: | ||
$('#mw-content-text').before( | $('#mw-content-text').before( | ||
'<div id="InPageEdit">' + | '<div id="InPageEdit">' + | ||
− | + | ||
'<h1 id="edit-title">in-page-edit-title</h1>' + | '<h1 id="edit-title">in-page-edit-title</h1>' + | ||
'<textarea id="newcontent" style="width:100%;min-height:300px;max-height:1200px"></textarea>' + | '<textarea id="newcontent" style="width:100%;min-height:300px;max-height:1200px"></textarea>' + | ||
− | + | ||
'<div id="button-area">' + | '<div id="button-area">' + | ||
− | '<div id="normal"><button id="cancle-btn"> | + | '<div id="normal"><button id="cancle-btn">Cancel</button> <button id="preview-btn">Preview</button> <label><input type="checkbox" id="is-minor"/> Minor edit</label> <div style="float:right"><input id="reason" placeholder="Summary" value="'+inPageEditReason+'"> <button id="submit-btn">Publish</button></div></div>' + |
− | + | ||
− | '<center id="confirm" style="display:none;clear:both"><span id="code"></span><br/><button id="no"> | + | '<center id="confirm" style="display:none;clear:both"><span id="code"></span><br/><button id="no">No</button> <button id="yes">Yes</button></center>' + |
− | + | ||
'</div>' + | '</div>' + | ||
− | + | ||
'<center id="info-area" style="display:none;"></center>' + | '<center id="info-area" style="display:none;"></center>' + | ||
− | + | ||
− | '<h1> | + | '<h1>Preview</h1>' + |
'<div id="preview-area" style="padding:8px; border:2px dotted #aaa"></div>' + | '<div id="preview-area" style="padding:8px; border:2px dotted #aaa"></div>' + | ||
− | + | ||
'</div>' | '</div>' | ||
); | ); | ||
$('#InPageEdit #newcontent').val(origintext); | $('#InPageEdit #newcontent').val(origintext); | ||
− | $('#InPageEdit #edit-title').html(' | + | $('#InPageEdit #edit-title').html('Editing: ' + inPageEditTarget); |
− | + | ||
// Cancle | // Cancle | ||
$('#InPageEdit #cancle-btn').click(function() { | $('#InPageEdit #cancle-btn').click(function() { | ||
$('#InPageEdit #button-area #normal').hide(); | $('#InPageEdit #button-area #normal').hide(); | ||
$('#InPageEdit #confirm').show(); $('#InPageEdit #confirm button').unbind(); | $('#InPageEdit #confirm').show(); $('#InPageEdit #confirm button').unbind(); | ||
− | $('#InPageEdit #confirm #code').text(' | + | $('#InPageEdit #confirm #code').text('Are you sure to cancel the action?'); |
$('#InPageEdit #confirm #no').click(function(){$('#InPageEdit #button-area #normal').show();$('#InPageEdit #confirm').hide();}); | $('#InPageEdit #confirm #no').click(function(){$('#InPageEdit #button-area #normal').show();$('#InPageEdit #confirm').hide();}); | ||
$('#InPageEdit #confirm #yes').click(function(){ | $('#InPageEdit #confirm #yes').click(function(){ | ||
第74行: | 第81行: | ||
}); | }); | ||
}); | }); | ||
− | + | ||
− | // Preview | + | // Preview |
$('#InPageEdit #preview-btn').click(function() { | $('#InPageEdit #preview-btn').click(function() { | ||
new mw.Api().post({ | new mw.Api().post({ | ||
第85行: | 第92行: | ||
}).then(function(data) { | }).then(function(data) { | ||
var previewcontent = data.parse.text['*']; | var previewcontent = data.parse.text['*']; | ||
− | + | ||
$('#InPageEdit #preview-area').html(previewcontent); | $('#InPageEdit #preview-area').html(previewcontent); | ||
}); | }); | ||
}); | }); | ||
− | + | ||
// Submit | // Submit | ||
$('#InPageEdit #submit-btn').click(function() { | $('#InPageEdit #submit-btn').click(function() { | ||
$('#InPageEdit #button-area #normal').hide(); | $('#InPageEdit #button-area #normal').hide(); | ||
$('#InPageEdit #confirm').show(); $('#InPageEdit #confirm button').unbind(); | $('#InPageEdit #confirm').show(); $('#InPageEdit #confirm button').unbind(); | ||
− | $('#InPageEdit #confirm #code').text(' | + | $('#InPageEdit #confirm #code').text('Are you sure to submit your edits?'); |
$('#InPageEdit #confirm #no').click(function(){$('#InPageEdit #button-area #normal').show();$('#InPageEdit #confirm').hide();}); | $('#InPageEdit #confirm #no').click(function(){$('#InPageEdit #button-area #normal').show();$('#InPageEdit #confirm').hide();}); | ||
$('#InPageEdit #confirm #yes').click(function(){ | $('#InPageEdit #confirm #yes').click(function(){ | ||
第100行: | 第107行: | ||
$('#InPageEdit #newcontent').attr('readonly','readonly'); | $('#InPageEdit #newcontent').attr('readonly','readonly'); | ||
$('#InPageEdit #button-area').hide(); | $('#InPageEdit #button-area').hide(); | ||
− | $('#InPageEdit #info-area').show().html('<div style="font-weight:bold;color:green;min-height: 50px;line-height: 50px;font-size: 36px;"> | + | $('#InPageEdit #info-area').show().html('<div style="font-weight:bold;color:green;min-height: 50px;line-height: 50px;font-size: 36px;">Submitting <img src="https://wjghj.cn/images/9/98/Windows-loading.gif" style="height:36px;width:auto" /></div>'); |
− | + | ||
// Do post request | // Do post request | ||
var isMinor = $('#InPageEdit #is-minor').prop('checked'); | var isMinor = $('#InPageEdit #is-minor').prop('checked'); | ||
第108行: | 第115行: | ||
text: $('#InPageEdit #newcontent').val(), | text: $('#InPageEdit #newcontent').val(), | ||
title: inPageEditTarget, | title: inPageEditTarget, | ||
+ | section: inPageEditSection, | ||
minor: isMinor, | minor: isMinor, | ||
tags: inPageEditTags, | tags: inPageEditTags, | ||
第113行: | 第121行: | ||
token: mw.user.tokens.get('editToken') | token: mw.user.tokens.get('editToken') | ||
}).done(function() { | }).done(function() { | ||
− | $('#InPageEdit #info-area').html('<div style="font-weight:bold;color:green;min-height: 50px;line-height: 50px;font-size: 36px;"> | + | $('#InPageEdit #info-area').html('<div style="font-weight:bold;color:green;min-height: 50px;line-height: 50px;font-size: 36px;">Successful</div>'); |
window.location.href=window.location.href; | window.location.href=window.location.href; | ||
}).fail(function(){ | }).fail(function(){ | ||
// Show elements | // Show elements | ||
− | $('#InPageEdit #submit-btn').html(' | + | $('#InPageEdit #submit-btn').html('Retry'); |
$('#InPageEdit #newcontent').attr('readonly',false); | $('#InPageEdit #newcontent').attr('readonly',false); | ||
$('#InPageEdit #button-area, #InPageEdit #button-area #normal').show(); | $('#InPageEdit #button-area, #InPageEdit #button-area #normal').show(); | ||
第128行: | 第136行: | ||
} | } | ||
} | } | ||
− | + | ||
/** Add button **/ | /** Add button **/ | ||
$(function() { | $(function() { | ||
− | + | $('.page-header__contribution-buttons .wds-dropdown__content ul').append($('<li>').append($('<a>').addClass('in-page-edit-btn-link').attr('href', 'javascript:void(0)').text('Quick Edit').click(function() { | |
− | |||
− | |||
− | |||
− | $('. | ||
InPageEdit({target:mw.config.get('wgPageName'), reason:' //InPageEdit'}) | InPageEdit({target:mw.config.get('wgPageName'), reason:' //InPageEdit'}) | ||
}))); | }))); | ||
第142行: | 第146行: | ||
$(function() { | $(function() { | ||
$('#mw-content-text a').each(function(i) { | $('#mw-content-text a').each(function(i) { | ||
+ | if ($(this).attr('href') === undefined) return; | ||
var url = $(this).attr('href'); | var url = $(this).attr('href'); | ||
− | params = {} | + | params = {}; |
− | + | var vars = url.split('?').pop().split("&"); | |
− | |||
− | |||
− | |||
for (var i=0;i<vars.length;i++) { | for (var i=0;i<vars.length;i++) { | ||
var pair = vars[i].split("="); | var pair = vars[i].split("="); | ||
params[pair[0]] = pair[1]; | params[pair[0]] = pair[1]; | ||
} | } | ||
+ | |||
+ | // Not edit link of this wiki | ||
+ | if (url.split('/')['2'] !== location.href.split('/')['2'] && url.substr(0, 1)!=='/') return; | ||
+ | // Not url start with 'index.php?title=FOO' | ||
if (params.title === undefined) params.title = url.split('/wiki/')['1'].split('?')['0']; | if (params.title === undefined) params.title = url.split('/wiki/')['1'].split('?')['0']; | ||
+ | if (params.section === undefined) params.section = ''; | ||
+ | |||
if (params.action === 'edit' && params.title !== undefined && params.section !== 'new') { | if (params.action === 'edit' && params.title !== undefined && params.section !== 'new') { | ||
$(this).after($('<a>').attr({ | $(this).after($('<a>').attr({ | ||
'href': 'javascript:void(0)', | 'href': 'javascript:void(0)', | ||
− | 'class': 'in-page-edit-article-link' | + | 'class': 'in-page-edit-article-link', |
− | + | 'data-ipe-target': params.title, | |
− | InPageEdit({target:params.title,reason:' //InPageEdit'}); | + | 'data-ipe-section': params.section |
+ | }).text('[QuickEdit]').click(function (){ | ||
+ | InPageEdit({target:params.title,reason:' //InPageEdit',section:params.section}); | ||
})); | })); | ||
} | } | ||
}); | }); | ||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
}); | }); |
2019年9月29日 (日) 20:16的版本
/** * MediaWiki JS Plugin: In Page Edit * Author: 机智的小鱼君 * Url: https://github.com/Dragon-Fish/wjghj-wiki/edit/master/Gadgets/in-page-edit * Description: Let you edit page without open new tab. And edit Navebox via navbar, edit section via section edit link etc. **/ function InPageEdit(option) { // 只能存在一个窗口 if ($('#InPageEdit').length > 0) { $('#InPageEdit').remove(); } // 开始执行任务 $('body').addClass('action-in-page-edit'); // Variables var origintext, inPageEditTarget = decodeURIComponent(option.target), inPageEditSection = option.section, inPageEditReason = option.reason, inPageEditTags = option.tags, inPageEditRefresh = option.refresh; if (inPageEditTarget === undefined || inPageEditTarget === ''){inPageEditTarget = mw.config.get('wgPageName')} if (inPageEditSection=== undefined || inPageEditSection === ''){inPageEditSection = ''}else{inPageEditSection=parseInt(inPageEditSection)-1} if (inPageEditReason === undefined || inPageEditReason === ''){inPageEditReason = ''} if (inPageEditRefresh === undefined || inPageEditRefresh == 'true' || inPageEditRefresh == '1'){inPageEditRefresh = true;} if (inPageEditTags === undefined || inPageEditTags === ''){inPageEditTags = ''} new mw.Api().get({ action: "parse", page: inPageEditTarget, section: inPageEditSection, prop: "wikitext", format: "json" }).then(function(data) { if (data.parse !== undefined) { origintext = data.parse.wikitext['*']; } else { origintext = '<!-- ⚠ Notice: Can’t get page content. Delete this line if you are creating a new page. -->\n'; } ajaxArea() }).fail(function() { origintext = '<!-- ⚠ Notice: Can’t get page content. Delete this line if you are creating a new page. -->\n'; ajaxArea() }); function ajaxArea() { // Create area & hide article $('#mw-content-text').hide(); $('#mw-content-text').before( '<div id="InPageEdit">' + '<h1 id="edit-title">in-page-edit-title</h1>' + '<textarea id="newcontent" style="width:100%;min-height:300px;max-height:1200px"></textarea>' + '<div id="button-area">' + '<div id="normal"><button id="cancle-btn">Cancel</button> <button id="preview-btn">Preview</button> <label><input type="checkbox" id="is-minor"/> Minor edit</label> <div style="float:right"><input id="reason" placeholder="Summary" value="'+inPageEditReason+'"> <button id="submit-btn">Publish</button></div></div>' + '<center id="confirm" style="display:none;clear:both"><span id="code"></span><br/><button id="no">No</button> <button id="yes">Yes</button></center>' + '</div>' + '<center id="info-area" style="display:none;"></center>' + '<h1>Preview</h1>' + '<div id="preview-area" style="padding:8px; border:2px dotted #aaa"></div>' + '</div>' ); $('#InPageEdit #newcontent').val(origintext); $('#InPageEdit #edit-title').html('Editing: ' + inPageEditTarget); // Cancle $('#InPageEdit #cancle-btn').click(function() { $('#InPageEdit #button-area #normal').hide(); $('#InPageEdit #confirm').show(); $('#InPageEdit #confirm button').unbind(); $('#InPageEdit #confirm #code').text('Are you sure to cancel the action?'); $('#InPageEdit #confirm #no').click(function(){$('#InPageEdit #button-area #normal').show();$('#InPageEdit #confirm').hide();}); $('#InPageEdit #confirm #yes').click(function(){ $('body').removeClass('action-in-page-edit'); $('#InPageEdit').remove(); $('#mw-content-text').show(); }); }); // Preview $('#InPageEdit #preview-btn').click(function() { new mw.Api().post({ action: "parse", text: $('#InPageEdit #newcontent').val(), prop: "text", preview: true, format: "json" }).then(function(data) { var previewcontent = data.parse.text['*']; $('#InPageEdit #preview-area').html(previewcontent); }); }); // Submit $('#InPageEdit #submit-btn').click(function() { $('#InPageEdit #button-area #normal').hide(); $('#InPageEdit #confirm').show(); $('#InPageEdit #confirm button').unbind(); $('#InPageEdit #confirm #code').text('Are you sure to submit your edits?'); $('#InPageEdit #confirm #no').click(function(){$('#InPageEdit #button-area #normal').show();$('#InPageEdit #confirm').hide();}); $('#InPageEdit #confirm #yes').click(function(){ // Hide elements $('#InPageEdit #newcontent').attr('readonly','readonly'); $('#InPageEdit #button-area').hide(); $('#InPageEdit #info-area').show().html('<div style="font-weight:bold;color:green;min-height: 50px;line-height: 50px;font-size: 36px;">Submitting <img src="https://wjghj.cn/images/9/98/Windows-loading.gif" style="height:36px;width:auto" /></div>'); // Do post request var isMinor = $('#InPageEdit #is-minor').prop('checked'); new mw.Api().post({ action: 'edit', text: $('#InPageEdit #newcontent').val(), title: inPageEditTarget, section: inPageEditSection, minor: isMinor, tags: inPageEditTags, summary: $('#InPageEdit #reason').val(), token: mw.user.tokens.get('editToken') }).done(function() { $('#InPageEdit #info-area').html('<div style="font-weight:bold;color:green;min-height: 50px;line-height: 50px;font-size: 36px;">Successful</div>'); window.location.href=window.location.href; }).fail(function(){ // Show elements $('#InPageEdit #submit-btn').html('Retry'); $('#InPageEdit #newcontent').attr('readonly',false); $('#InPageEdit #button-area, #InPageEdit #button-area #normal').show(); $('#InPageEdit #confirm').hide(); Modal('<span class="error">Error post your request.</span>','InPageEdit Error'); $('#InPageEdit #info-area').hide().html(''); }); }); }); } } /** Add button **/ $(function() { $('.page-header__contribution-buttons .wds-dropdown__content ul').append($('<li>').append($('<a>').addClass('in-page-edit-btn-link').attr('href', 'javascript:void(0)').text('Quick Edit').click(function() { InPageEdit({target:mw.config.get('wgPageName'), reason:' //InPageEdit'}) }))); }); /** Get links in ariticle **/ $(function() { $('#mw-content-text a').each(function(i) { if ($(this).attr('href') === undefined) return; var url = $(this).attr('href'); params = {}; var vars = url.split('?').pop().split("&"); for (var i=0;i<vars.length;i++) { var pair = vars[i].split("="); params[pair[0]] = pair[1]; } // Not edit link of this wiki if (url.split('/')['2'] !== location.href.split('/')['2'] && url.substr(0, 1)!=='/') return; // Not url start with 'index.php?title=FOO' if (params.title === undefined) params.title = url.split('/wiki/')['1'].split('?')['0']; if (params.section === undefined) params.section = ''; if (params.action === 'edit' && params.title !== undefined && params.section !== 'new') { $(this).after($('<a>').attr({ 'href': 'javascript:void(0)', 'class': 'in-page-edit-article-link', 'data-ipe-target': params.title, 'data-ipe-section': params.section }).text('[QuickEdit]').click(function (){ InPageEdit({target:params.title,reason:' //InPageEdit',section:params.section}); })); } }); });