User:Abel/experimental.js
Jump to navigation
Jump to search
Note: After saving, you may have to bypass your browser's cache to see the changes.
- Firefox / Safari: Hold Shift while clicking Reload, or press either Ctrl-F5 or Ctrl-R (⌘-R on a Mac)
- Google Chrome: Press Ctrl-Shift-R (⌘-Shift-R on a Mac)
- Internet Explorer / Edge: Hold Ctrl while clicking Refresh, or press Ctrl-F5
- Opera: Go to Menu → Settings (Opera → Preferences on a Mac) and then to Privacy & security → Clear browsing data → Cached images and files.
// License: GPL
// Experimental Main
console.log("'⌣'");
var mwEStruct = {
wbXntity: 'config.values.wbEntity'
},
language = "en",
wbEStructure = {
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: [ wbEStructure['instanceOfRelations'], wbEStructure['IDPropLoc'], wbEStructure['IDName'], 96 ],
personal_data_id: [ wbEStructure['subclassOfRelations'], wbEStructure['IDPropLoc'], wbEStructure['IDName'], 421 ],
interface_button_id: [ wbEStructure ['instanceOfRelations'], wbEStructure['IDPropLoc'], wbEStructure['IDName'], 487 ]
},
wbproc,
current_entity,
pdxdb;
$.when(
$.getScript( "//wiki.personaldata.io/w/index.php?title=User:Abel/WbProcessor.js&action=raw&ctype=text/javascript" ),
$.getScript( "//wiki.personaldata.io/w/index.php?title=MediaWiki:Gadget-personaldata.js&action=raw&ctype=text/javascript" ),
$.getScript( "//wiki.personaldata.io/w/index.php?title=MediaWiki:Gadget-pdooui.js&action=raw&ctype=text/javascript" ),
$.Deferred( function( deferred ){
$( deferred.resolve );
})
).done( function(){
console.log('Reporting in');
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 );
// This should return an object of relations and ids
pdxb = new idxdbContainer( mw );
// pdxdb.EnqueuePDIO('update record', Date.now(), window.location.href); // simple timestamp tracking
pdui = new interfaceMediaContainer( mw, pdxb );
if ( current_entity != undefined ) {
Object.keys(current_entity).forEach( function ( entity_checked ){
if ( current_entity[entity_checked] != undefined ){
if ( Object.keys( current_entity[entity_checked] ).length > 0 ) {
pdui.renderInterface( entity_checked );
}
}
});
}
console.log("test: ")
console.log(current_entity);
});