Site Notice

hello, world

Difference between revisions of "User:机智的小鱼君/common.js"

From Project-EPB Commons
m (// Via InPageEdit-v2)
 
(224 intermediate revisions by the same user not shown)
Line 1: Line 1:
mw.loader.load('https://common.wjghj.cn/js/InPageEdit-v2');
+
$.ajax({
 +
  url: 'http://127.0.0.1:1005/InPageEdit.js',
 +
  dataType: 'script',
 +
}).then(
 +
  function () {
 +
    console.log('[InPageEdit] Using local dev')
 +
  },
 +
  function () {
 +
    console.log('[InPageEdit] Local dev not found')
 +
    mw.loader.load('https://unpkg.com/mediawiki-inpageedit')
 +
  }
 +
)
  
      function getArrItem(arr, num) {
+
/** InPageEdit Preferences */
          var temp_array = new Array();
+
;(window.InPageEdit = window.InPageEdit || {}).myPreference = {
          for (var index in arr) {
+
  editMinor: false,
              temp_array.push(arr[index]);
+
  editSummary: '$section$oldid // Via InPageEdit-v2',
          }
+
  redLinkQuickEdit: true,
          var return_array = new Array();
+
  outSideClose: false,
          for (var i = 0; i < num; i++) {
+
  watchList: true,
              if (temp_array.length > 0) {
+
  plugins: [
                  var arrIndex = Math.floor(Math.random() * temp_array.length);
+
    'toolbox.js',
                  return_array[i] = temp_array[arrIndex];
+
    'code-mirror/script.js',
                  temp_array.splice(arrIndex, 1);
+
    'color-preview.js',
              } else {
+
    'edit-any-page.js',
                  break;
+
    'wiki-editor.js',
              }
+
  ],
          }
+
}
          return return_array;
 
      }
 
  
var jsona = {
+
mw.hook('InPageEdit').add(function (ctx) {
  text: ['this is 1','this is 2','this is 3'],
+
  if (mw.config.get('wgIsArticle')) {
   p: '1#3'
+
    var _msg = ctx._msg
},
+
    $('#ca-edit, #ca-viewsource').after(
    geta = jsona.text;
+
      $('<li>', {
$('#firstHeading').after( 'now random: '+ getArrItem(jsona.text,1) );
+
        id: 'ca-quick-edit',
 +
        class: 'collapsible',
 +
      }).append(
 +
        $('<span>').append(
 +
          $('<a>', {
 +
            href: 'javascript:void(0)',
 +
            text: _msg('quick-edit'),
 +
          }).on('click', function () {
 +
            InPageEdit.edit({
 +
              page: mw.config.get('wgPageName'),
 +
              revision: mw.config.get('wgRevisionId'),
 +
            })
 +
          })
 +
        )
 +
      )
 +
    )
 +
  }
 +
})
 +
 
 +
if (mw.config.get('wgIsArticle')) {
 +
   $('#ca-history').append(
 +
    $('<a>', {
 +
      href: 'javascript:void(0);',
 +
      style: 'margin-left:2px;top: -1.2em;position: relative;font-size: 8px;',
 +
    })
 +
      .append($('<span>').html('最后更改'))
 +
      .on('click', function () {
 +
        InPageEdit.quickDiff({
 +
          fromtitle: mw.config.get('wgPageName'),
 +
          torelative: 'prev',
 +
        })
 +
      })
 +
  )
 +
}
 +
 
 +
$('#firstHeading').append(
 +
  '<span style="font-size:12px;float:right">wgRevisionId: ' +
 +
    mw.config.get('wgRevisionId') +
 +
    ' | wgArticleId: ' +
 +
    mw.config.get('wgArticleId') +
 +
    '</span>'
 +
)
 +
 
 +
/** Wikiplus */
 +
mw.loader.load(
 +
  'https://wikiplus.oss-cn-shanghai.aliyuncs.com/Main.development.js'
 +
)
 +
// 修改 IPE 文字防止抑郁
 +
InPageEdit.i18n = InPageEdit.i18n || {}
 +
InPageEdit.i18n['zh-hans'] = InPageEdit.i18n['zh-hans'] || {}
 +
InPageEdit.i18n['zh-hans']['quick-edit'] = 'IPE 快编'

Latest revision as of 04:35, 10 April 2022

$.ajax({
  url: 'http://127.0.0.1:1005/InPageEdit.js',
  dataType: 'script',
}).then(
  function () {
    console.log('[InPageEdit] Using local dev')
  },
  function () {
    console.log('[InPageEdit] Local dev not found')
    mw.loader.load('https://unpkg.com/mediawiki-inpageedit')
  }
)

/** InPageEdit Preferences */
;(window.InPageEdit = window.InPageEdit || {}).myPreference = {
  editMinor: false,
  editSummary: '$section$oldid // Via InPageEdit-v2',
  redLinkQuickEdit: true,
  outSideClose: false,
  watchList: true,
  plugins: [
    'toolbox.js',
    'code-mirror/script.js',
    'color-preview.js',
    'edit-any-page.js',
    'wiki-editor.js',
  ],
}

mw.hook('InPageEdit').add(function (ctx) {
  if (mw.config.get('wgIsArticle')) {
    var _msg = ctx._msg
    $('#ca-edit, #ca-viewsource').after(
      $('<li>', {
        id: 'ca-quick-edit',
        class: 'collapsible',
      }).append(
        $('<span>').append(
          $('<a>', {
            href: 'javascript:void(0)',
            text: _msg('quick-edit'),
          }).on('click', function () {
            InPageEdit.edit({
              page: mw.config.get('wgPageName'),
              revision: mw.config.get('wgRevisionId'),
            })
          })
        )
      )
    )
  }
})

if (mw.config.get('wgIsArticle')) {
  $('#ca-history').append(
    $('<a>', {
      href: 'javascript:void(0);',
      style: 'margin-left:2px;top: -1.2em;position: relative;font-size: 8px;',
    })
      .append($('<span>').html('最后更改'))
      .on('click', function () {
        InPageEdit.quickDiff({
          fromtitle: mw.config.get('wgPageName'),
          torelative: 'prev',
        })
      })
  )
}

$('#firstHeading').append(
  '<span style="font-size:12px;float:right">wgRevisionId: ' +
    mw.config.get('wgRevisionId') +
    ' | wgArticleId: ' +
    mw.config.get('wgArticleId') +
    '</span>'
)

/** Wikiplus */
mw.loader.load(
  'https://wikiplus.oss-cn-shanghai.aliyuncs.com/Main.development.js'
)
// 修改 IPE 文字防止抑郁
InPageEdit.i18n = InPageEdit.i18n || {}
InPageEdit.i18n['zh-hans'] = InPageEdit.i18n['zh-hans'] || {}
InPageEdit.i18n['zh-hans']['quick-edit'] = 'IPE 快编'