• 正在查找将来过去时的官方设定集?不如看看万界大百科吧!
  • 《将来过去时》第一部分 现在 魔科纪元的少年少女 即将正式发布!
  • 让我偷偷看一眼小鱼君的博客……
  • 服务器已成功迁移到 阿里云(杭州)

“MediaWiki:Gadget-InPageEdit.js”的版本间的差异

来自小鱼君和他的朋友们
第1行: 第1行:
 
function InPageEdit(inPageEditTarget) {
 
function InPageEdit(inPageEditTarget) {
  
   if ( $('#InPageEdit').length > 1 ) {
+
   if ($('#InPageEdit').length > 0) { // 只能存在一个窗口
    Modal('已经存在一个编辑任务!请先关闭现在的编辑窗口。','In page edit 错误');
+
    Modal('已经存在一个编辑任务!请先关闭现在的编辑窗口。', 'In page edit 错误');
   return;
+
   } else { // 开始执行任务
   }
+
   // Variables
 
+
   if (inPageEditTarget == undefined) {
  // Variables
+
    inPageEditTarget = mw.config.get('wginPageEditTarget');
  if (inPageEditTarget == undefined) {
+
    }
   inPageEditTarget = mw.config.get('wginPageEditTarget');
+
    var origintext;
  }
 
  var origintext;
 
 
 
  new mw.Api().get({
 
   action: "parse",
 
    page: inPageEditTarget,
 
   prop: "wikitext",
 
   format: "json"
 
  }).then(function(data) {
 
    origintext = data.parse.wikitext['*'];
 
   ajaxArea()
 
  }).fail(function() {
 
   origintext = '<!-- 注意: 无法获取页面内容。新建页面请删除此行 -->\n';
 
   ajaxArea()
 
  });
 
  function ajaxArea() {
 
   // Create area & hide article
 
   $('#mw-content-text').hide();
 
   $('#mw-content-text').before('<div id="InPageEdit">' + '<h2 id="edit-title"></h2><textarea id="newcontent" style="width:100%;min-height:300px"></textarea>' + '<button id="preview-btn">预览</button><button id="cancle-btn">取消</button><br/><input id="reason" placeholder="原因"> <button id="submit-btn">提交</button>' + '<div id="preview-area"></div></div>');
 
   $('#InPageEdit #newcontent').val(origintext);
 
   $('#InPageEdit #edit-title').html('正在编辑: '+inPageEditTarget);
 
  
    // Cancle
+
    new mw.Api().get({
    $('#InPageEdit #cancle-btn').click(function() {
+
    action: "parse",
     var cancleconfirm = confirm(' 取消吗?');
+
    page: inPageEditTarget,
     if (cancleconfirm) {
+
    prop: "wikitext",
     $('#InPageEdit').remove();
+
    format: "json"
     $('#mw-content-text').show();
+
    }).then(function(data) {
     }
+
     origintext = data.parse.wikitext['*'];
 +
     ajaxArea()
 +
   }).fail(function() {
 +
    origintext = '<!-- 注意: 无法获取页面内容。新建页面请删除此行 -->\n';
 +
     ajaxArea()
 
    });
 
    });
 +
   function ajaxArea() {
 +
    // Create area & hide article
 +
    $('#mw-content-text').hide();
 +
    $('#mw-content-text').before('<div id="InPageEdit">' + '<h2 id="edit-title"></h2><textarea id="newcontent" style="width:100%;min-height:300px"></textarea>' + '<button id="preview-btn">预览</button><button id="cancle-btn">取消</button><br/><input id="reason" placeholder="原因"> <button id="submit-btn">提交</button>' + '<div id="preview-area"></div></div>');
 +
    $('#InPageEdit #newcontent').val(origintext);
 +
    $('#InPageEdit #edit-title').html('正在编辑: ' + inPageEditTarget);
  
   // Preview
+
    // Cancle
   $('#InPageEdit #preview-btn').click(function() {
+
    $('#InPageEdit #cancle-btn').click(function() {
    new mw.Api().post({
+
     var cancleconfirm = confirm('取消吗?');
     action: "parse",
+
     if (cancleconfirm) {
     text: $('#InPageEdit #newcontent').val(),
+
      $('#InPageEdit').remove();
     prop: "text",
+
      $('#mw-content-text').show();
     preview: true,
+
     }
     format: "json"
 
    }).then(function(data) {
 
     var previewcontent = data.parse.text['*'];
 
 
 
     $('#InPageEdit #preview-area').html(previewcontent);
 
 
     });
 
     });
   });
 
  
   // Submit
+
    // Preview
   $('#InPageEdit #submit-btn').click(function() {
+
    $('#InPageEdit #preview-btn').click(function() {
    var submitconfirm = confirm('提交吗?');
 
    if (submitconfirm) {
 
 
      new mw.Api().post({
 
      new mw.Api().post({
       action: 'edit',
+
       action: "parse",
 
       text: $('#InPageEdit #newcontent').val(),
 
       text: $('#InPageEdit #newcontent').val(),
       title: inPageEditTarget,
+
       prop: "text",
       summary: '[InPageEdit] ' + $('#InPageEdit #reason').val(),
+
       preview: true,
       token: mw.user.tokens.get('editToken')
+
       format: "json"
      }).done(function() {
+
      }).then(function(data) {
       $('#InPageEdit').html('<center style="font-weight:bold;color:green;min-height: 300px;line-height: 300px;font-size: 48px;">已提交</center>');
+
      var previewcontent = data.parse.text['*'];
      window.location.reload();
+
 
 +
       $('#InPageEdit #preview-area').html(previewcontent);
 
      });
 
      });
     }
+
     });
   });
+
 
   };
+
    // Submit
 +
    $('#InPageEdit #submit-btn').click(function() {
 +
     var submitconfirm = confirm('提交吗?');
 +
     if (submitconfirm) {
 +
      new mw.Api().post({
 +
       action: 'edit',
 +
       text: $('#InPageEdit #newcontent').val(),
 +
       title: inPageEditTarget,
 +
       summary: '[InPageEdit] ' + $('#InPageEdit #reason').val(),
 +
       token: mw.user.tokens.get('editToken')
 +
      }).done(function() {
 +
       $('#InPageEdit').html('<center style="font-weight:bold;color:green;min-height: 300px;line-height: 300px;font-size: 48px;">已提交</center>');
 +
       window.location.reload();
 +
      });
 +
     }
 +
    });
 +
   }
 +
   }
 
}
 
}
 
// Add button
 
// Add button
 
$(function() {
 
$(function() {
   $('.action-view #p-userpagetools ul').append($('<li>').append($('<a>').attr('href', '#_InPageEdit').text('快速编辑').click(function(){InPageEdit()})));
+
   $('.action-view #p-userpagetools ul').append($('<li>').append($('<a>').attr('href', '#_InPageEdit').text('快速编辑').click(function() {
 +
   InPageEdit()
 +
  })));
 
});
 
});
 
// Get links in ariticle
 
// Get links in ariticle

2019年9月23日 (一) 22:18的版本

function InPageEdit(inPageEditTarget) {

  if ($('#InPageEdit').length > 0) { // 只能存在一个窗口
    Modal('已经存在一个编辑任务!请先关闭现在的编辑窗口。', 'In page edit 错误');
  } else { // 开始执行任务
    // Variables
    if (inPageEditTarget == undefined) {
      inPageEditTarget = mw.config.get('wginPageEditTarget');
    }
    var origintext;

    new mw.Api().get({
      action: "parse",
      page: inPageEditTarget,
      prop: "wikitext",
      format: "json"
    }).then(function(data) {
      origintext = data.parse.wikitext['*'];
      ajaxArea()
    }).fail(function() {
      origintext = '<!-- 注意: 无法获取页面内容。新建页面请删除此行 -->\n';
      ajaxArea()
    });
    function ajaxArea() {
      // Create area & hide article
      $('#mw-content-text').hide();
      $('#mw-content-text').before('<div id="InPageEdit">' + '<h2 id="edit-title"></h2><textarea id="newcontent" style="width:100%;min-height:300px"></textarea>' + '<button id="preview-btn">预览</button><button id="cancle-btn">取消</button><br/><input id="reason" placeholder="原因"> <button id="submit-btn">提交</button>' + '<div id="preview-area"></div></div>');
      $('#InPageEdit #newcontent').val(origintext);
      $('#InPageEdit #edit-title').html('正在编辑: ' + inPageEditTarget);

      // Cancle
      $('#InPageEdit #cancle-btn').click(function() {
        var cancleconfirm = confirm('取消吗?');
        if (cancleconfirm) {
          $('#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() {
        var submitconfirm = confirm('提交吗?');
        if (submitconfirm) {
          new mw.Api().post({
            action: 'edit',
            text: $('#InPageEdit #newcontent').val(),
            title: inPageEditTarget,
            summary: '[InPageEdit] ' + $('#InPageEdit #reason').val(),
            token: mw.user.tokens.get('editToken')
          }).done(function() {
            $('#InPageEdit').html('<center style="font-weight:bold;color:green;min-height: 300px;line-height: 300px;font-size: 48px;">已提交</center>');
            window.location.reload();
          });
        }
      });
    }
  }
}
// Add button
$(function() {
  $('.action-view #p-userpagetools ul').append($('<li>').append($('<a>').attr('href', '#_InPageEdit').text('快速编辑').click(function() {
    InPageEdit()
  })));
});
// Get links in ariticle
$(function() {
  var self = this;
  $('#mw-content-text a.external').each(function(i) {
    var url = $(this).attr('href');
    var reg = /(([^?&=]+)(?:=([^?&=]*))*)/g;
    var params = {},
    match;
    while (match = reg.exec(url)) {
      params[match[2]] = decodeURIComponent(match[3]);
    }
    if (params.action === 'edit' && params.title !== undefined && params.section !== 'new') {
      $(this).after($('<a>').attr({
        'href': 'javascript:void(0)',
        'class': 'in-page-edit-link-edit'
      }).html('<sup title="快速编辑">[编]<sup>').data({
        'target': decodeURIComponent(params.title),
        'number': params.section || -1
      }));
      $('.in-page-edit-link-edit').click(function() {
        InPageEdit(params.title)
      });
    }
  });
});