|
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187 |
- // Templates for discussion clerk script by [[User:The Earwig]]
-
- // Development and bug reports: https://github.com/earwig/tfdclerk
-
- // To install, add:
- // importScript("User:The Earwig/tfdclerk.js"); // [[User:The Earwig/tfdclerk.js]]
- // to [[Special:MyPage/common.js]] or [[Special:MyPage/skin.js]]
-
- /*
- Copyright (C) 2015 Ben Kurtovic <ben.kurtovic@gmail.com>
-
- Permission is hereby granted, free of charge, to any person obtaining a copy
- of this software and associated documentation files (the "Software"), to deal
- in the Software without restriction, including without limitation the rights to
- use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies
- of the Software, and to permit persons to whom the Software is furnished to do
- so, subject to the following conditions:
-
- The above copyright notice and this permission notice shall be included in all
- copies or substantial portions of the Software.
-
- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
- IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
- FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
- AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
- LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
- OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
- SOFTWARE.
- */
-
- mw.loader.using(["mediawiki.ui", "jquery.ui.core"], function() {
- if (mw.config.get("wgNamespaceNumber") != 4 || (
- mw.config.get("wgTitle") != "Templates for discussion" &&
- mw.config.get("wgTitle").indexOf("Templates for discussion/Log/2") != 0))
- return;
-
- TFDClerk = {
- sysop: $.inArray("sysop", mw.config.get("wgUserGroups")) >= 0
- };
-
- TFDClerk._get_today = function() {
- return new Date().toISOString().slice(0, 10);
- };
-
- TFDClerk._guard = function(head) {
- if (head.data("guard"))
- return false;
- head.data("guard", true);
- return true;
- };
-
- TFDClerk._unguard = function(head) {
- head.removeData("guard");
- };
-
- TFDClerk._remove_option_box = function(box) {
- var head = box.prev("h4");
- box.remove();
- TFDClerk._unguard(head);
- };
-
- TFDClerk._add_option_box = function(head, verb, title, callback, options) {
- var box = $("<div/>", {
- id: "tfdclerk-" + verb + "-box-" + head.uniqueId().prop("id"),
- addClass: "tfdclerk-" + verb + "-box"
- })
- .css("border", "1px solid #AAA")
- .css("background-color", "#F9F9F9")
- .css("margin", "0.5em 0")
- .css("padding", "1em")
- .append($("<h5/>", {text: title, style: "padding-top: 0;"}));
- options(box);
- box.append($("<button/>", {
- text: verb.charAt(0).toUpperCase() + verb.slice(1),
- addClass: "mw-ui-button mw-ui-progressive",
- click: function() {
- callback(head, box);
- }
- }))
- .append($("<button/>", {
- text: "Cancel",
- addClass: "mw-ui-button",
- click: function() {
- TFDClerk._remove_option_box(box);
- }
- }))
- .insertAfter(head);
- };
-
- TFDClerk._add_option_table = function(box, options) {
- var table = $("<table/>");
- $.each(options, function(i, opt) {
- opt.attrs.id = box.prop("id") + "-" + opt.id;
- table.append(
- $("<tr/>").append(
- $("<td/>").append(
- $("<label/>", {
- for: opt.attrs.id,
- text: opt.label + ":"
- })))
- .append($("<td/>").append($(opt.tag, opt.attrs)))
- );
- });
- box.append(table);
- };
-
- TFDClerk._do_close = function(head, box) {
- // TODO
- TFDClerk._remove_option_box(box);
- };
-
- TFDClerk._do_relist = function(head, box) {
- // TODO
- TFDClerk._remove_option_box(box);
- };
-
- TFDClerk.close = function(head) {
- if (!TFDClerk._guard(head))
- return;
-
- TFDClerk._add_option_box(
- head, "close", "Closing discussion", TFDClerk._do_close,
- function(box) {
- // TODO
- });
- };
-
- TFDClerk.relist = function(head) {
- if (!TFDClerk._guard(head))
- return;
-
- TFDClerk._add_option_box(
- head, "relist", "Relisting discussion", TFDClerk._do_relist,
- function(box) {
- TFDClerk._add_option_table(box, [
- {
- id: "date",
- label: "New date",
- tag: "<input/>",
- attrs: {
- type: "date",
- value: TFDClerk._get_today()
- }
- },
- {
- id: "comments",
- label: "Comments",
- tag: "<textarea/>",
- attrs: {
- rows: 2,
- cols: 60,
- placeholder: "Optional. Do not sign."
- }
- }
- ]);
- });
- };
-
- TFDClerk._build_hook = function(head, verb, callback) {
- return $("<span/>", {style: "margin-left: 1em;"})
- .append($("<span/>", {addClass: "mw-editsection-bracket", text: "["}))
- .append($("<a/>", {
- href: "#",
- text: verb,
- title: "tfdclerk: " + verb + " discussion",
- click: function() {
- callback($(head));
- return false;
- }
- }))
- .append($("<span/>", {addClass: "mw-editsection-bracket", text: "]"}));
- };
-
- TFDClerk.install = function() {
- $("h4").each(function(i, head) {
- if ($(head).next().hasClass("tfd-closed"))
- return;
-
- $("<span/>", {addClass: "tfdclerk-hooks"})
- .append(TFDClerk._build_hook(head, "close", TFDClerk.close))
- .append(TFDClerk._build_hook(head, "relist", TFDClerk.relist))
- .appendTo($(head).find(".mw-editsection"));
- });
- };
-
- $(TFDClerk.install);
- });
|