Difference between revisions of "User:Abel/experimental.js"

From Wikibase Personal data
Jump to navigation Jump to search
m
m
Line 3: Line 3:
 
console.log("'⌣'");
 
console.log("'⌣'");
  
var relational_id_list = {  
+
var mwEStruct = {
  controller_id: ['instanceOfRelations', 96],
+
      wbXntity: 'config.values.wbEntity'
  personal_data_id: ['subclassOfRelations', 421],
+
    },
  interface_button_id: ['instanceOfRelations', 487]
 
},
 
  
 
     language = "en",
 
     language = "en",
  
    wbEStruct = {
+
wbEStruct = {
 
         subclassOfRelations: 'claims.P4', // location of P4 relations in wbEntity
 
         subclassOfRelations: 'claims.P4', // location of P4 relations in wbEntity
 
         defaultValRelation: 'claims.P108',
 
         defaultValRelation: 'claims.P108',
Line 22: Line 20:
 
     },
 
     },
  
    mwEStruct = {
+
relational_id_list = {  
      wbXntity: 'config.values.wbEntity'
+
  controller_id: [ wbEStruct['instanceOfRelations'], 96 ],
    };
+
  personal_data_id: [ wbEStruct['subclassOfRelations'], 421 ],
 +
  interface_button_id: [ wbEStruct ['instanceOfRelations'], 487 ]
 +
};
  
 
mw.loader.using( ['ext.gadget.WbProcessor', 'ext.gadget.PersonalDataBase', 'ext.gadget.PDOOUI'] ).then( function () {
 
mw.loader.using( ['ext.gadget.WbProcessor', 'ext.gadget.PersonalDataBase', 'ext.gadget.PDOOUI'] ).then( function () {

Revision as of 07:13, 14 May 2019

// License: GPL
// Experimental Main
console.log("'⌣'");

var mwEStruct = {
      wbXntity: 'config.values.wbEntity'
    },

    language = "en",

	wbEStruct = {
        subclassOfRelations: 'claims.P4', // location of P4 relations in wbEntity
        defaultValRelation: 'claims.P108',
        concernsRelation: 'claims.P110',
        instanceOfRelations: 'claims.P3',
        IDPropLoc:  'mainsnak.datavalue.value', // location of ID properties in related entity
        IDName:   'numeric-id', // ID property name which checked 
        qIDPropName: 'id',
        standardValue: 'labels' + '.' + language + '.' + 'value'
    },

	relational_id_list = { 
						   controller_id: [ wbEStruct['instanceOfRelations'], 96 ],
						   personal_data_id: [ wbEStruct['subclassOfRelations'], 421 ],
						   interface_button_id: [ wbEStruct ['instanceOfRelations'], 487 ]
						};

mw.loader.using( ['ext.gadget.WbProcessor', 'ext.gadget.PersonalDataBase', 'ext.gadget.PDOOUI'] ).then( function () {
	console.log('Wbprocessor active');
	console.log('Personaldatabase active');
	console.log('User Interface active');

	var wbproc = new wbContainer(mw, mwEStruct['wbXntity']);

	// Check whether the current page is in a relation of interest to an id of interest
	current_entity = wbproc.checkentity( relational_id_list, wbEStruct['IDPropLoc'], wbEStruct['IDName'] );
	// This should return an object of relations and ids

	console.log(current_entity);

	// for each match, render the corresponding ui elements
	// current_entity.forEach(pdooui.render);

});