@ -154,7 +154,7 @@ class Component extends StyleAndScriptStoringComponent {
registerAsContextMenu ( ) {
this . subscribeOnGenerate ( CommonCompelGroups . IS_CONTEXT_MENU ) ;
this . _ isContextMenu = true ;
return this . addStyleClass ( 'contextmenu' )
. hidden ( ) ;
}
@ -304,161 +304,83 @@ class Component extends StyleAndScriptStoringComponent {
}
/ * *
*
* @ param { ExtStorage } extStore
* @ returns { Array < SStoreDefinition > }
* /
_ processStyles ( extStore = null ) {
if ( ! extStore ) {
extStore = this . _ stylesExtStore . setupForGeneralStyling ( ) ;
} else {
extStore . setupForGeneralStyling ( ) ;
}
/ * *
* @ todo very likely code dupplication - but kept for the time being
* for error tracking .
* /
if ( extStore === ExtStoreType . INTERNALIZED_WITHIN ) {
let sizings = Object . keys ( this . _ modifier . _ modifications )
. filter ( e => e . includes ( "width" ) || e . includes ( "height" ) )
. filter ( e => this . _ modifier . _ modifications [ e ] . includes ( "calc" ) )
. reduce ( ( a , c ) => a . add (
c ,
this . _ modifier
. _ modifications [ c ]
. split ( '(' ) [ 1 ]
. split ( ' - ' ) [ 0 ]
) , new ObjectAccessObject ( ) ) ;
fillAttrsInContainerByCb (
this . _ modifier . _ modifications ,
this . _ element ,
( key , val , el ) => { el . style [ key ] = val ; }
) ;
let hasElSizing = sizings . keys . some ( k => Object . keys ( this . _ element . style ) . includes ( k ) ) ;
if ( sizings . keys . length > 0 && ! hasElSizing ) {
console . log ( "Fixing sizing - because not supported 'calc'" , sizings ) ;
fillAttrsInContainerByCb (
sizings ,
this . _ element ,
( key , val , el ) => { el . style [ key ] = val ; }
) ;
}
} else {
/* ADDS ELEMENT MODIFIER TO this._styles list for styles processing */
let modifierSSD = new SStoreDefinition ( ) ;
modifierSSD . _ identifier = "." + this . _ compName ;
modifierSSD . _ definition = this . _ modifier . _ modifications ;
modifierSSD . _ extStore = extStore ;
this . _ styles . unshift ( modifierSSD ) ;
}
extStore = ( extStore
? extStore
: this . _ stylesExtStore
)
. setupForGeneralStyling ( ) ;
let forCollection = [ ] ;
let counter = 0 ;
for ( let i = 0 ; i < this . _ styles . length ; i ++ ) {
const ssd = this . _ styles [ i ] ;
for ( const ssd of this . _ styles ) {
/* Make sure that the type is unified for later processing */
if ( ssd . _ definition instanceof Modifier ) {
ssd . _ definition = ssd . _ definition . _ modifications ;
}
/* Check/Ensure proper ExtStorageType for following comparison */
let refESType = (
ssd . _ extStore && ssd . _ extStore . _ type
? ssd . _ extStore . setupForGeneralStyling ( ) . _ type
: extStore . _ type
) ;
/ * *
* @ type { ExtStorage }
* /
let curExtStore = extStore ;
switch ( refESType ) {
case ExtStoreType . INTERNALIZED_WITHIN :
fillAttrsInContainerByCb (
ssd . _ definition ,
this . _ element ,
( key , val , el ) => { el . style [ key ] = val ; }
)
break ;
case ExtStoreType . INDIVIDUALLY_DOC_HEAD :
let container = generateAndFillStyleTag ( [ ssd ] ) ;
container . setAttribute ( "data-compel-individually-nr" , counter ++ ) ;
Page . addElementToPage ( container , refESType ) ;
break ;
case ExtStoreType . COLLECTED_DOC_HEAD :
forCollection . push ( ssd ) ;
break ;
case ExtStoreType . CENTRALIZED_DOC_HEAD :
Page . registerStyling ( ssd . _ identifier , ssd . _ definition ) ;
break ;
if ( Object . hasOwn ( ssd , "_extStore" ) && ssd . _ extStore ) {
curExtStore = ssd . _ extStore . setupForGeneralStyling ( ) ;
}
if ( curExtStore . getStylingDistribution ( ) ( ssd , this . _ element , counter ) ) {
forCollection . push ( ssd ) ;
}
}
return forCollection ;
}
/ * *
*
* @ param { ExtStorage } extStore
* @ returns { Array < SStoreDefinition > }
* /
_ processFunctions ( extStore = null ) {
if ( ! extStore ) {
extStore = this . _ functionsExtStore . setupForFunctions ( ) ;
} else {
extStore . setupForFunctions ( ) ;
}
extStore = ( extStore
? extStore
: this . _ functionsExtStore
)
. setupForFunctions ( ) ;
const forCollection = new Map ( ) ;
const collectForBefore = [ ] ;
let counter = 0 ;
for ( let i = 0 ; i < this . _ functions . length ; i ++ ) {
const ssd = this . _ functions [ i ] ;
for ( const ssd of this . _ functions ) {
/* Make sure that the type is unified for later processing */
let refESType = (
ssd . _ extStore && ssd . _ extStore . _ type
? ssd . _ extStore . setupForFunctions ( ) . _ type
: extStore . _ type
) ;
let curExtStore = extStore ;
if ( Object . hasOwn ( ssd , "_extStore" ) && ssd . _ extStore ) {
curExtStore = ssd . _ extStore . setupForFunctions ( ) ;
}
switch ( refESType ) {
case ExtStoreType . CENTRALIZED_DOC_HEAD :
case ExtStoreType . CENTRALIZED_SEGMENT_BEGIN :
case ExtStoreType . CENTRALIZED_DOC_FOOTER :
Page . registerPageFunction ( ssd . _ identifier , ssd . _ definition ) ;
break ;
case ExtStoreType . INDIVIDUALLY_WITHIN :
case ExtStoreType . INDIVIDUALLY_BEFORE :
case ExtStoreType . INDIVIDUALLY_SEGMENT_BEGIN :
case ExtStoreType . INDIVIDUALLY_DOC_FOOTER :
case ExtStoreType . INDIVIDUALLY_DOC_HEAD :
let container = document . createElement ( "script" ) ;
container . setAttribute ( "data-compel-individually-nr" , counter ++ ) ;
container . innerText += getScriptTagInjectionText (
clearFunctionDeclarationText ( ssd . _ definition ) ,
ssd . _ identifier
) ;
Page . addElementToPage ( container , refESType , this . _ element ) ;
break ;
case ExtStoreType . COLLECTED_BEFORE :
if ( curExtStore . getFunctionDistribution ( ) ( ssd , counter ) ) {
if ( curExtStore . _ position . BEFORE ) {
collectForBefore . push ( ssd ) ;
break ;
case ExtStoreType . COLLECTED_SEGMENT_BEGIN :
case ExtStoreType . COLLECTED_DOC_FOOTER :
case ExtStoreType . COLLECTED_DOC_HEAD :
if ( ! forCollection . has ( refESType ) ) {
forCollection . set ( refESType , [ ] ) ;
} else {
if ( ! forCollection . has ( curExtStore ) ) {
forCollection . set ( curExtStore , [ ] ) ;
}
forCollection . get ( refESTyp e) . push ( ssd ) ;
break ;
forCollection . get ( curExtStore ) . push ( ssd ) ;
}
}
}
return forCollection ;
}
@ -476,8 +398,18 @@ class Component extends StyleAndScriptStoringComponent {
generate ( styleStore = null , functionStore = null ) {
this . _ wenity = new WebTrinity ( ) ;
if ( ! styleStore ) {
styleStore = this . _ stylesExtStore ;
}
/* DEAL WITH COMPONENT MODIFICATION FIRST */
this . _ styles . push ( new SStoreDefinition ( this . _ compName , this . _ modifier , this . _ stylesExtStore ) ) ;
// @todo pay attention to the "overwrite" behaviour - the local modifier styles are the "closest"
// it might be appropriate to use this._styles.unshift(...) instead.
this . _ styles . push ( new SStoreDefinition (
( styleStore . _ aggregation !== ESAggregation . INTERNALIZED ? "." : "" ) + this . _ compName ,
this . _ modifier ,
this . _ stylesExtStore
) ) ;
/* DEAL WITH CHILDREN */
let collectedWenities = [ ] ;