MediaWiki:Gadget-LanguageUtils.js

Ji Wîkîpediya, ensîklopediya azad.

Zanibe: Piştî weşandinê, ji bo dîtina guhartinan dibe ku hewce be "cache"ya geroka xwe paqij bikî.

  • Firefox / Safari: Pê li Shift û Reload bike an jî Ctrl-F5 an Ctrl-R bike (ji bo Mac: ⌘-R)
  • Google Chrome: Pê li Ctrl-Shift-R (ji bo Mac: ⌘-Shift-R) bike
  • Internet Explorer / Edge: Pê li Ctrl û Refresh bike, an jî Ctrl-F5 bike
  • Opera: Pê li Ctrl-F5 bike.
// {{documentation}}
// implicit dependencies : ext.gadget.StorageUtils
/* jshint maxerr:1048576, strict:true, undef:true, latedef:true, es5:true, sub:true */

/* global mw, $ */

// <nowiki>

// usage:
// var lutils = new LanguageUtilsAsync();
// lutils.GetWiktionaryCodeByCanonicalName("Georgian").then(langcode => console.log(langcode));
// lutils.GetCanonicalNameByWiktionaryCode("ka").then(langname => console.log(langname));

window.LanguageUtilsAsync = function(){
	this.langNameToLangCode = new mw.Api().get({
		"action": "expandtemplates",
		"format": "json",
		"text": "{{#invoke:languages/javascript-interface|AllCanonicalToCode}}",
		"prop": "wikitext"
	}).then(function (response) {
		return JSON.parse(response.expandtemplates.wikitext);
	});

	this.langCodeToLangName = this.langNameToLangCode.then(function(name2code){
		var code2name = {};
		for (var name in name2code) 
		{
			code2name[name2code[name]] = name;
		}
		return code2name;
	});
	
	
	this.GetWiktionaryCodeByCanonicalName = function(canonicalName){
		return this.langNameToLangCode.then(function(r){ return r[canonicalName];});
	};
	this.GetCanonicalNameByWiktionaryCode = function(langcode) {
		return this.langCodeToLangName.then(function(r){ return r[langcode];});
	};
};


window.LanguageUtils = function(){
	this.automaticTranslitLanguages = function(){
		return new mw.Api().get({
			"action": "expandtemplates",
			"format": "json",
			"text": "{{#invoke:languages/javascript-interface|GetLanguagesWithAutomaticTransliteration}}",
			"prop": "wikitext"
		}).then(function (response) {
			return JSON.parse(response.expandtemplates.wikitext);
		});
	};
	this.wiktionaryCodeToWikimediaCode = function(){
		return new mw.Api().get({
			"action": "expandtemplates",
			"format": "json",
			"text": "{{#invoke:languages/javascript-interface|AllWiktionaryCodeToWikimediaCode}}",
			"prop": "wikitext"
		}).then(function (response) {
			return JSON.parse(response.expandtemplates.wikitext);
		});
	};
	
	this.automaticTranslitCacheableStorage = new CacheableStorage("LanguageUtils-AutomaticTransliteration", this.automaticTranslitLanguages, 7, 1);
	this.wikimediaCodesCacheableStorage = new CacheableStorage("LanguageUtils-WikimediaCodes", this.wiktionaryCodeToWikimediaCode, 7, 1);
	
	this.HasAutomaticTransliteration = function(langcode) {
		var langs = this.automaticTranslitCacheableStorage.GetItem();
		if (langs){
			return langs[langcode] || false;
		}
		return false;
	};
	this.GetWikimediaCodeByWiktionaryCode = function(langcode) {
		var wikimediaCodes = this.wikimediaCodesCacheableStorage.GetItem();
		if (wikimediaCodes && wikimediaCodes[langcode]){
			return wikimediaCodes[langcode][0];
		}
		return null;
	};
};


window.ScriptUtils = function(){	
	this.getAllDataPromise = function(){
		return new mw.Api().get({
			"action": "expandtemplates",
			"format": "json",
			"text": "{{#invoke:languages/javascript-interface|AllLangcodeToScripts}}",
			"prop": "wikitext"
		}).then(function(r){return JSON.parse(r.expandtemplates.wikitext);});
	};
	
	this.cacheableStorage = new CacheableStorage("ScriptUtils", this.getAllDataPromise, 7, 1);
	this.GetScriptsByLangCode = function(langcode){
		var allData = this.cacheableStorage.GetItem();
		if (allData){
			return allData[langcode];
		}
		return [];
	};
};

// </nowiki>