مدیاویکی:Gadget-friendlytalkback-2022.js
نکته: برای دیدن تغییرات، ممکن است نیاز باشد که حافظهٔ نهانی مرورگر خود را پس از انتشار پاکسازی کنید. گوگل کروم، فایرفاکس، مایکروسافت اج و سافاری: کلید ⇧ Shift را نگه دارید و روی دکمهٔ Reload در نوار ابزار مرورگر کلیک کنید. برای آگاهی از جزئیات و نحوهٔ پاکسازی حافظهٔ نهانی سایر مرورگرها، صفحهٔ ویکیپدیا:میانگیر مرورگرتان را خالی کنید را ببینید.
// <nowiki>
(function($) {
/*
****************************************
*** friendlytalkback.js: Talkback module
****************************************
* Mode of invocation: Tab ("TB")
* Active on: Any page with relevant user name (userspace, contribs, etc.) except IP ranges
* Config directives in: FriendlyConfig
*/
Twinkle.talkback = function() {
if (!mw.config.exists('wgRelevantUserName') || Morebits.ip.isRange(mw.config.get('wgRelevantUserName'))) {
return;
}
Twinkle.addPortletLink(Twinkle.talkback.callback, 'بازبحث', 'friendly-talkback', 'بازبحث آسان');
};
Twinkle.talkback.callback = function() {
if (mw.config.get('wgRelevantUserName') === mw.config.get('wgUserName') && !confirm("اوضاع این قدر بد است که میخواهید با خودتان گفتگو کنید؟")) {
return;
}
var Window = new Morebits.simpleWindow(600, 350);
Window.setTitle('بازبحث');
Window.setScriptName('توینکل');
Window.addFooterLink('ترجیحات بازبحث', 'وپ:توینکل/ترجیحات#talkback');
Window.addFooterLink('راهنمای توینکل', 'وپ:توینکل/توضیحات#بازبحث');
Window.addFooterLink('ارائهٔ بازخورد', 'بوپ:توینکل');
var form = new Morebits.quickForm(Twinkle.talkback.evaluate);
form.append({ type: 'radio', name: 'tbtarget',
list: [
{
label: 'بازبحث',
value: 'talkback',
checked: 'true'
},
{
label: 'لطفاً ببینید',
value: 'see'
},
{
label: 'آگاهسازی تابلوی اعلانات',
value: 'notice'
},
{
label: "ایمیل دارید",
value: 'mail'
}
],
event: Twinkle.talkback.changeTarget
});
form.append({
type: 'field',
label: 'محیط کار',
name: 'work_area'
});
var previewlink = document.createElement('a');
$(previewlink).click(function() {
Twinkle.talkback.callbacks.preview(result); // |result| is defined below
});
previewlink.style.cursor = 'pointer';
previewlink.textContent = 'پیشنمایش';
form.append({ type: 'div', id: 'talkbackpreview', label: [ previewlink ] });
form.append({ type: 'div', id: 'friendlytalkback-previewbox', style: 'display: none' });
form.append({ type: 'submit' });
var result = form.render();
Window.setContent(result);
Window.display();
result.previewer = new Morebits.wiki.preview($(result).find('div#friendlytalkback-previewbox').last()[0]);
// We must init the
var evt = document.createEvent('Event');
evt.initEvent('change', true, true);
result.tbtarget[0].dispatchEvent(evt);
// Check whether the user has opted out from talkback
var query = {
action: 'query',
prop: 'extlinks',
titles: 'بحث کاربر:' + mw.config.get('wgRelevantUserName'),
elquery: 'userjs.invalid/noTalkback',
ellimit: '1',
format: 'json'
};
var wpapi = new Morebits.wiki.api('در حال واکشی وضعیت غیرفعالسازی بازبحث', query, Twinkle.talkback.callback.optoutStatus);
wpapi.post();
};
Twinkle.talkback.optout = '';
Twinkle.talkback.callback.optoutStatus = function(apiobj) {
var el = apiobj.getResponse().query.pages[0].extlinks;
if (el && el.length) {
Twinkle.talkback.optout = 'ترجیح ' + mw.config.get('wgRelevantUserName') + ' بر عدم دریافت بازبحث است';
var url = el[0].url;
var reason = mw.util.getParamValue('reason', url);
Twinkle.talkback.optout += reason ? ': ' + reason : '.';
}
$('#twinkle-talkback-optout-message').text(Twinkle.talkback.optout);
};
var prev_page = '';
var prev_section = '';
var prev_message = '';
Twinkle.talkback.changeTarget = function(e) {
var value = e.target.values;
var root = e.target.form;
var old_area = Morebits.quickForm.getElements(root, 'work_area')[0];
if (root.section) {
prev_section = root.section.value;
}
if (root.message) {
prev_message = root.message.value;
}
if (root.page) {
prev_page = root.page.value;
}
var work_area = new Morebits.quickForm.element({
type: 'field',
label: 'اطلاعات بازبحث',
name: 'work_area'
});
root.previewer.closePreview();
switch (value) {
case 'talkback':
/* falls through */
default:
work_area.append({
type: 'div',
label: '',
style: 'color: red',
id: 'twinkle-talkback-optout-message'
});
work_area.append({
type: 'input',
name: 'page',
label: 'نام صفحهای که بحث در آن جریان دارد',
tooltip: "نام صفحهای که بحث در آن جریان دارد. برای مثال: «بحث کاربر:جیمبو ویلز» یا «بحث ویکیپدیا:توینکل». محدود به تمام صفحههای بحث، فضای نام ویکیپدیا و فضای نام الگو.",
value: prev_page || 'بحث کاربر:' + mw.config.get('wgUserName')
});
work_area.append({
type: 'input',
name: 'section',
label: 'عنوان بخش (اختیاری)',
tooltip: "عنوان بخشی از صفحهٔ بحث شما که در آن برای کاربر پیام گذاشتهاید. برای مثال: «پیشنهاد ادغام».",
value: prev_section
});
break;
case 'notice':
var noticeboard = work_area.append({
type: 'select',
name: 'noticeboard',
label: 'تابلوی اعلانات:',
event: function(e) {
if (e.target.value === 'afchd') {
Morebits.quickForm.overrideElementLabel(root.section, 'عنوان پیشنویس (بدون پیشوند «پیشنویس:»): ');
Morebits.quickForm.setElementTooltipVisibility(root.section, false);
} else if (e.target.value === 'supcom') {
Morebits.quickForm.setElementVisibility("#div_node_22", false); // Hide "section" input
} else {
Morebits.quickForm.setElementVisibility("#div_node_22", true);
Morebits.quickForm.resetElementLabel(root.section);
Morebits.quickForm.setElementTooltipVisibility(root.section, true);
}
}
});
$.each(Twinkle.talkback.noticeboards, function(value, data) {
noticeboard.append({
type: 'option',
label: data.label,
value: value,
selected: !!data.defaultSelected
});
});
work_area.append({
type: 'input',
name: 'section',
label: 'ریسه برای پیونددهی',
tooltip: 'عنوان ریسهٔ مرتبط در تابلوی اعلانات.',
value: prev_section
});
break;
case 'mail':
work_area.append({
type: 'input',
name: 'section',
label: 'موضوع ایمیل (اختیاری)',
tooltip: 'موضوع ایمیلی که برای کاربر ارسال کردهاید.'
});
break;
}
if (value !== 'notice') {
work_area.append({ type: 'textarea', label: 'پیام اضافی (اختیاری):', name: 'message', tooltip: 'پیام اضافهای که میخواهید زیر الگوی بازبحث نوشته شود. امضای شما به طور خودکار به انتهای پیام اضافه خواهد شد.' });
}
work_area = work_area.render();
root.replaceChild(work_area, old_area);
if (root.message) {
root.message.value = prev_message;
}
$('#twinkle-talkback-optout-message').text(Twinkle.talkback.optout);
};
Twinkle.talkback.noticeboards = {
an: {
label: "وپ:تام (تابلوی اعلانات مدیران)",
text: '{{جا:آگاهسازی تام|ریسه=$SECTION}} ~~~~',
editSummary: 'آگاهسازی برای گفتگو در [[ویکیپدیا:تابلوی اعلانات مدیران]]'
},
an3: {
label: "وپ:تام۳ (تابلوی اعلانات مدیران/نقض ۳ برگردانی)",
text: '{{جا:آگاهسازی تام۳|$SECTION}} ~~~~',
editSummary: "آگاهسازی برای گفتگو در [[ویکیپدیا:تابلوی اعلانات مدیران/نقض ۳ برگردان]]"
},
supcom: {
label: "وپ:تاهن (تابلوی اعلانات هیئت نظارت)",
text: "== آگاهسازی از پروندهٔ هیئت نظارت ==\n" + "{{جا:آگاهسازی تاهن}} ~~~~",
editSummary: "آگاهسازی گشوده شدن پرونده در [[ویکیپدیا:تابلوی اعلانات هیئت نظارت]]"
},
/* ani: {
label: "WP:ANI (Administrators' noticeboard/Incidents)",
text: "== Notice of Administrators' noticeboard/Incidents discussion ==\n" +
'{{subst:ANI-notice|thread=$SECTION}} ~~~~',
editSummary: 'Notice of discussion at [[Wikipedia:Administrators\' noticeboard/Incidents]]',
defaultSelected: true
}, */
// let's keep AN and its cousins at the top
'afchd': {
label: 'وپ:مکمبا (مقالهها برای ایجاد/میز کمک)',
text: '{{جا:مکمبا/ک|$SECTION}} ~~~~',
editSummary: 'پاسخی برای درخواست کمک شما در [[ویکیپدیا:مکمبا|میز کمک مقالهها برای ایجاد]] ارسال شدهاست'
},
/* blpn: {
label: 'WP:BLPN (Biographies of living persons noticeboard)',
text: '{{subst:BLPN-notice|thread=$SECTION}} ~~~~',
editSummary: 'Notice of discussion at [[Wikipedia:Biographies of living persons/Noticeboard]]'
},
coin: {
label: 'WP:COIN (Conflict of interest noticeboard)',
text: '{{subst:Coin-notice|thread=$SECTION}} ~~~~',
editSummary: 'Notice of discussion at [[Wikipedia:Conflict of interest/Noticeboard]]'
}, */
drn: {
label: 'وپ:تاحا (تابلوی اعلانات حل اختلاف)',
text: '{{جا:آگاهسازی تاحا|ریسه=$SECTION}} ~~~~',
editSummary: 'آگاهسازی برای گفتگو در [[ویکیپدیا:تابلوی اعلانات حل اختلاف]]'
},
/* effp: {
label: 'WP:EFFP/R (Edit filter false positive report)',
text: '{{EFFPReply|1=$SECTION|2=~~~~}}',
editSummary: 'You have replies to your [[Wikipedia:Edit filter/False positives/Reports|edit filter false positive report]]'
},
eln: {
label: 'WP:ELN (External links noticeboard)',
text: '{{subst:ELN-notice|thread=$SECTION}} ~~~~',
editSummary: 'Notice of discussion at [[Wikipedia:External links/Noticeboard]]'
},
ftn: {
label: 'WP:FTN (Fringe theories noticeboard)',
text: '{{subst:Ftn-notice|thread=$SECTION}} ~~~~',
editSummary: 'Notice of discussion at [[Wikipedia:Fringe theories/Noticeboard]]'
}, */
hd: {
label: 'وپ:کمک (درخواست راهنمایی)',
text: '== پرسش شما در صفحهٔ درخواست راهنمایی ==\n' + '{{پاسخ درخواست راهنمایی|1=$SECTION|بز={{جا:زمانیونیکسی}}}}',
editSummary: 'پاسخی برای شما در [[ویکیپدیا:درخواست راهنمایی|صفحهٔ درخواست راهنمایی ویکیپدیا]] ارسال شده است'
},
/* norn: {
label: 'WP:NORN (No original research noticeboard)',
text: '{{subst:Norn-notice|thread=$SECTION}} ~~~~',
editSummary: 'Notice of discussion at [[Wikipedia:No original research/Noticeboard]]'
},
npovn: {
label: 'WP:NPOVN (Neutral point of view noticeboard)',
text: '{{subst:NPOVN-notice|thread=$SECTION}} ~~~~',
editSummary: 'Notice of discussion at [[Wikipedia:Neutral point of view/Noticeboard]]'
}, */
rsn: {
label: 'وپ:تامم (تابلوی اعلانات منابع معتبر)',
text: '{{جا:آگاهسازی تامم|ریسه=$SECTION}} ~~~~',
editSummary: 'آگاهسازی برای گفتگو در [[ویکیپدیا:تابلوی اعلانات منابع معتبر]]'
},
goonagoon: { // local misc village pump
label: 'وپ:گوناگون (قهوهخانهٔ گوناگون)',
text: "== بازبحث قهوهخانه: پیامهای جدیدی دارید! ==\n{{بازبحث قهوهخانه گوناگون|وپ:گوناگون|$SECTION|بز={{جا:زمانیونیکسی}}}}}}",
editSummary: 'پاسخی برای پیام شما در [[ویکیپدیا:قهوهخانه/گوناگون|ثهوهخانهٔ گوناگون]] ارسال شده است'
},
fanni: { // local technical village pump
label: 'وپ:فنی (قهوهخانهٔ فنی)',
text: "== بازبحث قهوهخانه: پیامهای جدیدی دارید! ==\n{{بازبحث قهوهخانه فنی|وپ:فنی|$SECTION|بز={{جا:زمانیونیکسی}}}}}}",
editSummary: 'پاسخی برای پیام شما در [[ویکیپدیا:قهوهخانه/فنی|قهوهخانهٔ فنی]] ارسال شده است'
},
/* th: {
label: 'WP:THQ (Teahouse question forum)',
text: "== Teahouse talkback: you've got messages! ==\n{{WP:Teahouse/Teahouse talkback|WP:Teahouse/Questions|$SECTION|ts=~~~~}}",
editSummary: 'You have replies at the [[Wikipedia:Teahouse/Questions|Teahouse question board]]'
},
vrt: {
label: 'WP:VRTN (VRT noticeboard)',
text: '{{subst:VRTreply|1=$SECTION}}\n~~~~',
editSummary: 'You have replies at the [[Wikipedia:VRT noticeboard|VRT noticeboard]]'
} */
};
Twinkle.talkback.evaluate = function(e) {
var input = Morebits.quickForm.getInputData(e.target);
var fullUserTalkPageName = new mw.Title(mw.config.get('wgRelevantUserName'), 3).toText();
var talkpage = new Morebits.wiki.page(fullUserTalkPageName, 'در حال افزودن بازبحث');
Morebits.simpleWindow.setButtonsEnabled(false);
Morebits.status.init(e.target);
Morebits.wiki.actionCompleted.redirect = fullUserTalkPageName;
Morebits.wiki.actionCompleted.notice = 'افزودن بازبحث انجام شد؛ در حال بارگیری مجدد صفحهٔ بحث تا چند ثانیهٔ دیگر';
switch (input.tbtarget) {
case 'notice':
talkpage.setEditSummary(Twinkle.talkback.noticeboards[input.noticeboard].editSummary);
break;
case 'mail':
talkpage.setEditSummary("آگاهسازی: ایمل دارید");
break;
case 'see':
input.page = Twinkle.talkback.callbacks.normalizeTalkbackPage(input.page);
talkpage.setEditSummary('لطفاً به بحثی که در [[:' + input.page +
(input.section ? '#' + input.section : '') + ']] جریان دارد، سری بزنید');
break;
default: // talkback
input.page = Twinkle.talkback.callbacks.normalizeTalkbackPage(input.page);
talkpage.setEditSummary('بازبحث ([[:' + input.page +
(input.section ? '#' + input.section : '') + ']])');
break;
}
talkpage.setAppendText('\n\n' + Twinkle.talkback.callbacks.getNoticeWikitext(input));
talkpage.setChangeTags(Twinkle.changeTags);
talkpage.setCreateOption('recreate');
talkpage.setMinorEdit(Twinkle.getPref('markTalkbackAsMinor'));
talkpage.setFollowRedirect(true);
talkpage.append();
};
Twinkle.talkback.callbacks = {
// Not used for notice or mail, default to user page
normalizeTalkbackPage: function(page) {
page = page || mw.config.get('wgUserName');
// Assume no prefix is a username, convert to user talk space
var normal = mw.Title.newFromText(page, 3);
// Normalize erroneous or likely mis-entered items
if (normal) {
// Only allow talks and WPspace, as well as Template-space for DYK
if (normal.namespace !== 4 && normal.namespace !== 10) {
normal = normal.getTalkPage();
}
page = normal.getPrefixedText();
}
return page;
},
preview: function(form) {
var input = Morebits.quickForm.getInputData(form);
if (input.tbtarget === 'talkback' || input.tbtarget === 'see') {
input.page = Twinkle.talkback.callbacks.normalizeTalkbackPage(input.page);
}
var noticetext = Twinkle.talkback.callbacks.getNoticeWikitext(input);
form.previewer.beginRender(noticetext, 'بحث کاربر:' + mw.config.get('wgRelevantUserName')); // Force wikitext/correct username
},
getNoticeWikitext: function(input) {
var text;
switch (input.tbtarget) {
case 'notice':
text = Morebits.string.safeReplace(Twinkle.talkback.noticeboards[input.noticeboard].text, '$SECTION', input.section);
break;
case 'mail':
text = '==' + Twinkle.getPref('mailHeading') + '==\n' +
"{{رایانامه|موضوع=" + input.section + '|بز={{جا:زمانیونیکسی}}}}';
if (input.message) {
text += '\n' + input.message + ' ~~~~';
} else if (Twinkle.getPref('insertTalkbackSignature')) {
text += '\n~~~~';
}
break;
case 'see':
var heading = Twinkle.getPref('talkbackHeading');
text = '{{جا:دعوت|مکان=' + input.page + (input.section ? '#' + input.section : '') +
'|بیشتر=' + input.message + '|سرآیند=' + heading + '}}';
break;
default: // talkback
text = '==' + Twinkle.getPref('talkbackHeading') + '==\n' +
'{{بازبحث|' + input.page + (input.section ? '|' + input.section : '') + '|بز={{جا:زمانیونیکسی}}}}';
if (input.message) {
text += '\n' + input.message + ' ~~~~';
} else if (Twinkle.getPref('insertTalkbackSignature')) {
text += '\n~~~~';
}
}
return text;
}
};
Twinkle.addInitCallback(Twinkle.talkback, 'talkback');
})(jQuery);
// </nowiki>