사용자:Itsurea/common.js

< 사용자:Itsurea
Itsurea (토론 | 기여)님의 2015년 6월 13일 (토) 23:18 판

참고: 설정을 저장한 후에 바뀐 점을 확인하기 위해서는 브라우저의 캐시를 새로 고쳐야 합니다.

  • 파이어폭스 / 사파리: Shift 키를 누르면서 새로 고침을 클릭하거나, Ctrl-F5 또는 Ctrl-R을 입력 (Mac에서는 ⌘-R)
  • 구글 크롬: Ctrl-Shift-R키를 입력 (Mac에서는 ⌘-Shift-R)
  • 인터넷 익스플로러 / 엣지: Ctrl 키를 누르면서 새로 고침을 클릭하거나, Ctrl-F5를 입력.
  • 오페라: Ctrl-F5를 입력.
$(document).ready(function()
{	
	var temp = function(){
		var param = 
		{
			"action":"query",
			"meta":"notifications",
			"notlimit":10,
			"format":"json"
		};
		$.ajax("/api.php",
		{
			data:param,
			dataType:"json"
		})
		.done(function(res)
		{
			var list_o = res.query.notifications.list;
			var list = [];
			for(var key in list_o)
			{
				list.push(list_o[key]);
			}
			var unread_message = [];
			for(var i = 0 ; i < list.length ; i++)
			{
				if(list[i].read == null)
				{
					unread_message.push(list[i]);
				}
			}
			var w = $(".notice-wrap")[0];
			if(unread_message.length != 0)
			{
				var html_list = document.createElement("ul");
				$(html_list).css("margin","0px");
				$(html_list).css("padding","5px");
				$(html_list).css("list-style","None");
				$(html_list).css("border","3px solid #6688FF");
				var html_list_inner = "";
 
				for(var i = 0 ; i < unread_message.length ; i++)
				{
					html_list_inner = "<li><a href = '/wiki/" + encodeURIComponent(unread_message[i].title.full) + "'>" + unread_message[i].title.full + "</a></li>" + html_list_inner;
				}
 
				$(html_list).html(html_list_inner);
				$(w).html(html_list);
 
			}
			else
			{
				$(w).html("");
			}
		});
	};
	temp();
	setInterval(temp,1000 * 20);
}
);