Difference between revisions of "MediaWiki:Gadget-pdooui.js"
Jump to navigation
Jump to search
m |
m |
||
Line 56: | Line 56: | ||
console.log( "this is happening " + orig + ' ' + extrafield); | console.log( "this is happening " + orig + ' ' + extrafield); | ||
idxb.EnqueuePDIO('update record', orig, extrafield, 'holdplace') | idxb.EnqueuePDIO('update record', orig, extrafield, 'holdplace') | ||
− | }; | + | }); |
− | + | ||
$( '#mw-content-text' ).prepend( textInput[ extrafield ].$element ); | $( '#mw-content-text' ).prepend( textInput[ extrafield ].$element ); | ||
$( '#mw-content-text' ).prepend( '<br>' ); | $( '#mw-content-text' ).prepend( '<br>' ); | ||
Line 76: | Line 76: | ||
button_save[data].on( 'click', function () { | button_save[data].on( 'click', function () { | ||
idxb.EnqueuePDIO('update record', orig, data, 'holdplace') | idxb.EnqueuePDIO('update record', orig, data, 'holdplace') | ||
− | } | + | }); |
$( '#mw-content-text' ).prepend( textInput[data].$element ); | $( '#mw-content-text' ).prepend( textInput[data].$element ); | ||
$( '#mw-content-text' ).prepend( '<br>' ); | $( '#mw-content-text' ).prepend( '<br>' ); |
Revision as of 05:36, 20 May 2019
// License: GPL
// User Interface Rendering
console.log('Interface handler loading');
function interfaceMediaContainer ( wbp, idxb ) {
this.renderInterface = function( sqitch ) {
switch( sqitch ) {
case 'controller_id':
controller_render();
break;
case 'personal_data_id':
pd_site_render();
break;
case 'interface_button_id':
pd_edit_render();
break;
}
}
async function controller_render(){
console.log("this function is done by the current page controller for now");
}
async function pd_site_render(){
};
async function pd_edit_render(){
var orig = wbproc.checkentity( { this_concerns: [ wbEStructure['concernsRelation'], wbEStructure['IDPropLoc'], wbEStructure['IDName'] ] } )['this_concerns'][0];
var plch = wbproc.checkentity( { default_value: [ wbEStructure['defaultValRelation'], wbEStructure['IDPropLoc'] ] } )['default_value'][0]; //defal
var q = idxb.EnqueuePDIO('update record');
q.then( function(result) {
console.log("required data from idxb");
console.log( orig );
console.log( plch );
console.log( q );
mw.loader.using( 'oojs-ui-core' ).done( function () {
console.log("loaded uicore")
var button_save = [],
button_delete = [],
textInput = [];
var extrafield = ( result[orig] != undefined ) ? Object.keys(result[orig]).length : 0;
button_save[ extrafield ] = new OO.ui.ButtonWidget( { label: "Save", classes: [ 'pddh' ] } );
textInput[ extrafield ] = new OO.ui.TextInputWidget( {
placeholder: plch,
classes: [ 'pddh' ]
} );
button_save[ extrafield ].on( 'click', function () {
console.log( "this is happening " + orig + ' ' + extrafield);
idxb.EnqueuePDIO('update record', orig, extrafield, 'holdplace')
});
$( '#mw-content-text' ).prepend( textInput[ extrafield ].$element );
$( '#mw-content-text' ).prepend( '<br>' );
$( '#mw-content-text' ).prepend( button_save[ extrafield ].$element );
$( '#mw-content-text' ).prepend( '<br>' );
$( '#mw-content-text' ).prepend( '<br>' );
if ( extrafield > 0) {
Object.keys( result[orig] ).forEach( function(data) {
button_save[data] = new OO.ui.ButtonWidget( { label: "Save", classes: [ 'pddh' ] } );
button_delete[data] = new OO.ui.ButtonWidget( { label: "Delete", classes: [ 'pddh' ] } );
textInput[data] = new OO.ui.TextInputWidget( {
value: q[orig][data], ///
placeholder: plch,
classes: [ 'pddh' ]
} );
button_save[data].on( 'click', function () {
idxb.EnqueuePDIO('update record', orig, data, 'holdplace')
});
$( '#mw-content-text' ).prepend( textInput[data].$element );
$( '#mw-content-text' ).prepend( '<br>' );
$( '#mw-content-text' ).prepend( button_delete[data].$element );
$( '#mw-content-text' ).prepend( button_save[data].$element );
$( '#mw-content-text' ).prepend( '<br>' );
$( '#mw-content-text' ).prepend( '<br>' );
});
}
});
});
};
}