2018-05-18 06:28:27 +00:00
/ * *
* @ package Joomla . Component . Builder
*
* @ created 30 th April , 2015
* @ author Llewellyn van der Merwe < http : //www.joomlacomponentbuilder.com>
* @ github Joomla Component Builder < https : //github.com/vdm-io/Joomla-Component-Builder>
2019-02-23 13:28:54 +00:00
* @ copyright Copyright ( C ) 2015 - 2019 Vast Development Method . All rights reserved .
2018-05-18 06:28:27 +00:00
* @ license GNU General Public License version 2 or later ; see LICENSE . txt
* /
2017-02-01 13:17:04 +00:00
2017-02-09 16:11:10 +00:00
// Some Global Values
2019-12-03 02:17:35 +00:00
jform _vvvvwcbvxh _required = false ;
jform _vvvvwccvxi _required = false ;
jform _vvvvwccvxj _required = false ;
jform _vvvvwccvxk _required = false ;
2017-02-09 16:11:10 +00:00
2017-02-01 13:17:04 +00:00
// Initial Script
jQuery ( document ) . ready ( function ( )
{
2019-12-03 02:17:35 +00:00
var target _vvvvwcb = jQuery ( "#jform_target input[type='radio']:checked" ) . val ( ) ;
vvvvwcb ( target _vvvvwcb ) ;
2019-07-15 20:00:46 +00:00
2019-12-03 02:17:35 +00:00
var target _vvvvwcc = jQuery ( "#jform_target input[type='radio']:checked" ) . val ( ) ;
vvvvwcc ( target _vvvvwcc ) ;
2019-07-15 20:00:46 +00:00
2019-12-03 02:17:35 +00:00
var target _vvvvwcd = jQuery ( "#jform_target input[type='radio']:checked" ) . val ( ) ;
var type _vvvvwcd = jQuery ( "#jform_type input[type='radio']:checked" ) . val ( ) ;
vvvvwcd ( target _vvvvwcd , type _vvvvwcd ) ;
2019-08-08 15:35:58 +00:00
2019-12-03 02:17:35 +00:00
var type _vvvvwce = jQuery ( "#jform_type input[type='radio']:checked" ) . val ( ) ;
var target _vvvvwce = jQuery ( "#jform_target input[type='radio']:checked" ) . val ( ) ;
vvvvwce ( type _vvvvwce , target _vvvvwce ) ;
2017-02-01 13:17:04 +00:00
} ) ;
2019-12-03 02:17:35 +00:00
// the vvvvwcb function
function vvvvwcb ( target _vvvvwcb )
2017-02-09 16:11:10 +00:00
{
// set the function logic
2019-12-03 02:17:35 +00:00
if ( target _vvvvwcb == 2 )
2017-02-09 16:11:10 +00:00
{
2017-02-13 23:24:38 +00:00
jQuery ( '#jform_function_name' ) . closest ( '.control-group' ) . show ( ) ;
2018-09-10 11:04:52 +00:00
// add required attribute to function_name field
2019-12-03 02:17:35 +00:00
if ( jform _vvvvwcbvxh _required )
2017-02-13 23:24:38 +00:00
{
updateFieldRequired ( 'function_name' , 0 ) ;
jQuery ( '#jform_function_name' ) . prop ( 'required' , 'required' ) ;
jQuery ( '#jform_function_name' ) . attr ( 'aria-required' , true ) ;
jQuery ( '#jform_function_name' ) . addClass ( 'required' ) ;
2019-12-03 02:17:35 +00:00
jform _vvvvwcbvxh _required = false ;
2017-02-13 23:24:38 +00:00
}
2017-02-09 16:11:10 +00:00
jQuery ( '.note_jcb_placeholder' ) . closest ( '.control-group' ) . show ( ) ;
2017-02-11 02:24:26 +00:00
jQuery ( '#jform_system_name' ) . closest ( '.control-group' ) . show ( ) ;
2017-02-09 16:11:10 +00:00
}
else
{
2017-02-13 23:24:38 +00:00
jQuery ( '#jform_function_name' ) . closest ( '.control-group' ) . hide ( ) ;
2018-09-10 11:04:52 +00:00
// remove required attribute from function_name field
2019-12-03 02:17:35 +00:00
if ( ! jform _vvvvwcbvxh _required )
2017-02-13 23:24:38 +00:00
{
updateFieldRequired ( 'function_name' , 1 ) ;
jQuery ( '#jform_function_name' ) . removeAttr ( 'required' ) ;
jQuery ( '#jform_function_name' ) . removeAttr ( 'aria-required' ) ;
jQuery ( '#jform_function_name' ) . removeClass ( 'required' ) ;
2019-12-03 02:17:35 +00:00
jform _vvvvwcbvxh _required = true ;
2017-02-13 23:24:38 +00:00
}
2017-02-09 16:11:10 +00:00
jQuery ( '.note_jcb_placeholder' ) . closest ( '.control-group' ) . hide ( ) ;
2017-02-11 02:24:26 +00:00
jQuery ( '#jform_system_name' ) . closest ( '.control-group' ) . hide ( ) ;
2017-02-09 16:11:10 +00:00
}
}
2019-12-03 02:17:35 +00:00
// the vvvvwcc function
function vvvvwcc ( target _vvvvwcc )
2017-02-09 16:11:10 +00:00
{
// set the function logic
2019-12-03 02:17:35 +00:00
if ( target _vvvvwcc == 1 )
2017-02-09 16:11:10 +00:00
{
jQuery ( '#jform_component' ) . closest ( '.control-group' ) . show ( ) ;
2018-09-10 11:04:52 +00:00
// add required attribute to component field
2019-12-03 02:17:35 +00:00
if ( jform _vvvvwccvxi _required )
2017-02-09 16:11:10 +00:00
{
updateFieldRequired ( 'component' , 0 ) ;
jQuery ( '#jform_component' ) . prop ( 'required' , 'required' ) ;
jQuery ( '#jform_component' ) . attr ( 'aria-required' , true ) ;
jQuery ( '#jform_component' ) . addClass ( 'required' ) ;
2019-12-03 02:17:35 +00:00
jform _vvvvwccvxi _required = false ;
2017-02-09 16:11:10 +00:00
}
jQuery ( '#jform_path' ) . closest ( '.control-group' ) . show ( ) ;
2018-09-10 11:04:52 +00:00
// add required attribute to path field
2019-12-03 02:17:35 +00:00
if ( jform _vvvvwccvxj _required )
2017-02-09 16:11:10 +00:00
{
updateFieldRequired ( 'path' , 0 ) ;
jQuery ( '#jform_path' ) . prop ( 'required' , 'required' ) ;
jQuery ( '#jform_path' ) . attr ( 'aria-required' , true ) ;
jQuery ( '#jform_path' ) . addClass ( 'required' ) ;
2019-12-03 02:17:35 +00:00
jform _vvvvwccvxj _required = false ;
2017-02-09 16:11:10 +00:00
}
jQuery ( '#jform_from_line' ) . closest ( '.control-group' ) . show ( ) ;
jQuery ( '#jform_hashtarget' ) . closest ( '.control-group' ) . show ( ) ;
jQuery ( '#jform_to_line' ) . closest ( '.control-group' ) . show ( ) ;
jQuery ( '#jform_type' ) . closest ( '.control-group' ) . show ( ) ;
2018-09-10 11:04:52 +00:00
// add required attribute to type field
2019-12-03 02:17:35 +00:00
if ( jform _vvvvwccvxk _required )
2017-02-09 16:11:10 +00:00
{
updateFieldRequired ( 'type' , 0 ) ;
jQuery ( '#jform_type' ) . prop ( 'required' , 'required' ) ;
jQuery ( '#jform_type' ) . attr ( 'aria-required' , true ) ;
jQuery ( '#jform_type' ) . addClass ( 'required' ) ;
2019-12-03 02:17:35 +00:00
jform _vvvvwccvxk _required = false ;
2017-02-09 16:11:10 +00:00
}
}
else
{
jQuery ( '#jform_component' ) . closest ( '.control-group' ) . hide ( ) ;
2018-09-10 11:04:52 +00:00
// remove required attribute from component field
2019-12-03 02:17:35 +00:00
if ( ! jform _vvvvwccvxi _required )
2017-02-09 16:11:10 +00:00
{
updateFieldRequired ( 'component' , 1 ) ;
jQuery ( '#jform_component' ) . removeAttr ( 'required' ) ;
jQuery ( '#jform_component' ) . removeAttr ( 'aria-required' ) ;
jQuery ( '#jform_component' ) . removeClass ( 'required' ) ;
2019-12-03 02:17:35 +00:00
jform _vvvvwccvxi _required = true ;
2017-02-09 16:11:10 +00:00
}
jQuery ( '#jform_path' ) . closest ( '.control-group' ) . hide ( ) ;
2018-09-10 11:04:52 +00:00
// remove required attribute from path field
2019-12-03 02:17:35 +00:00
if ( ! jform _vvvvwccvxj _required )
2017-02-09 16:11:10 +00:00
{
updateFieldRequired ( 'path' , 1 ) ;
jQuery ( '#jform_path' ) . removeAttr ( 'required' ) ;
jQuery ( '#jform_path' ) . removeAttr ( 'aria-required' ) ;
jQuery ( '#jform_path' ) . removeClass ( 'required' ) ;
2019-12-03 02:17:35 +00:00
jform _vvvvwccvxj _required = true ;
2017-02-09 16:11:10 +00:00
}
jQuery ( '#jform_from_line' ) . closest ( '.control-group' ) . hide ( ) ;
jQuery ( '#jform_hashtarget' ) . closest ( '.control-group' ) . hide ( ) ;
jQuery ( '#jform_to_line' ) . closest ( '.control-group' ) . hide ( ) ;
jQuery ( '#jform_type' ) . closest ( '.control-group' ) . hide ( ) ;
2018-09-10 11:04:52 +00:00
// remove required attribute from type field
2019-12-03 02:17:35 +00:00
if ( ! jform _vvvvwccvxk _required )
2017-02-09 16:11:10 +00:00
{
updateFieldRequired ( 'type' , 1 ) ;
jQuery ( '#jform_type' ) . removeAttr ( 'required' ) ;
jQuery ( '#jform_type' ) . removeAttr ( 'aria-required' ) ;
jQuery ( '#jform_type' ) . removeClass ( 'required' ) ;
2019-12-03 02:17:35 +00:00
jform _vvvvwccvxk _required = true ;
2017-02-09 16:11:10 +00:00
}
}
}
2019-12-03 02:17:35 +00:00
// the vvvvwcd function
function vvvvwcd ( target _vvvvwcd , type _vvvvwcd )
2017-02-01 13:17:04 +00:00
{
// set the function logic
2019-12-03 02:17:35 +00:00
if ( target _vvvvwcd == 1 && type _vvvvwcd == 1 )
2017-02-01 13:17:04 +00:00
{
jQuery ( '#jform_hashendtarget' ) . closest ( '.control-group' ) . show ( ) ;
2017-02-09 16:11:10 +00:00
jQuery ( '#jform_to_line' ) . closest ( '.control-group' ) . show ( ) ;
2017-02-01 13:17:04 +00:00
}
else
{
jQuery ( '#jform_hashendtarget' ) . closest ( '.control-group' ) . hide ( ) ;
2017-02-09 16:11:10 +00:00
jQuery ( '#jform_to_line' ) . closest ( '.control-group' ) . hide ( ) ;
}
}
2019-12-03 02:17:35 +00:00
// the vvvvwce function
function vvvvwce ( type _vvvvwce , target _vvvvwce )
2017-02-09 16:11:10 +00:00
{
// set the function logic
2019-12-03 02:17:35 +00:00
if ( type _vvvvwce == 1 && target _vvvvwce == 1 )
2017-02-09 16:11:10 +00:00
{
jQuery ( '#jform_hashendtarget' ) . closest ( '.control-group' ) . show ( ) ;
jQuery ( '#jform_to_line' ) . closest ( '.control-group' ) . show ( ) ;
2017-02-01 13:17:04 +00:00
}
2017-02-09 16:11:10 +00:00
else
{
jQuery ( '#jform_hashendtarget' ) . closest ( '.control-group' ) . hide ( ) ;
jQuery ( '#jform_to_line' ) . closest ( '.control-group' ) . hide ( ) ;
}
}
// update required fields
function updateFieldRequired ( name , status )
{
var not _required = jQuery ( '#jform_not_required' ) . val ( ) ;
if ( status == 1 )
{
if ( isSet ( not _required ) && not _required != 0 )
{
not _required = not _required + ',' + name ;
}
else
{
not _required = ',' + name ;
}
}
else
{
if ( isSet ( not _required ) && not _required != 0 )
{
not _required = not _required . replace ( ',' + name , '' ) ;
}
}
jQuery ( '#jform_not_required' ) . val ( not _required ) ;
2017-02-01 13:17:04 +00:00
}
// the isSet function
function isSet ( val )
{
if ( ( val != undefined ) && ( val != null ) && 0 !== val . length ) {
return true ;
}
return false ;
2017-02-13 23:24:38 +00:00
}
2018-03-11 02:44:43 +00:00
2017-02-13 23:24:38 +00:00
jQuery ( document ) . ready ( function ( )
{
var target = jQuery ( "#jform_target input[type='radio']:checked" ) . val ( ) ;
if ( target == 2 ) {
2017-02-17 18:35:18 +00:00
jQuery ( '#usedin' ) . show ( ) ;
2017-02-13 23:24:38 +00:00
var functioName = jQuery ( '#jform_function_name' ) . val ( ) ;
// check if this function name is taken
checkFunctionName ( functioName ) ;
}
2017-02-17 18:35:18 +00:00
var type = jQuery ( "#jform_comment_type input[type='radio']:checked" ) . val ( ) ;
if ( type == 2 ) {
jQuery ( '#html-comment-info' ) . show ( ) ;
jQuery ( '#phpjs-comment-info' ) . hide ( ) ;
} else {
jQuery ( '#html-comment-info' ) . hide ( ) ;
jQuery ( '#phpjs-comment-info' ) . show ( ) ;
}
2019-01-31 21:44:21 +00:00
// check and load all the custom code edit buttons
getEditCustomCodeButtons ( ) ;
2017-02-13 23:24:38 +00:00
} ) ;
function setCustomCodePlaceholder ( ) {
var ide = jQuery ( '#jform_id' ) . val ( ) ;
var functioName = jQuery ( '#jform_function_name' ) . val ( ) ;
if ( ide > 0 && functioName . length > 2 ) {
2018-09-28 15:46:21 +00:00
jQuery ( '#jcb-placeholder' ) . html ( '<code>[CUSTO' + 'MCODE=' + functioName + ']</code>' ) ;
jQuery ( '#jcb-placeholder-arg' ) . html ( '<code>[CUSTO' + 'MCODE=' + functioName + '+value1,value2]</code>' ) ;
2017-02-13 23:24:38 +00:00
} else if ( ide > 0 ) {
2018-09-28 15:46:21 +00:00
jQuery ( '#jcb-placeholder' ) . html ( '<code>[not ready]</code>' ) ;
jQuery ( '#jcb-placeholder-arg' ) . html ( '<code>[not ready]</code>' ) ;
2017-02-13 23:24:38 +00:00
} else if ( functioName . length > 2 ) {
2018-09-29 00:57:11 +00:00
jQuery ( '#jcb-placeholder' ) . html ( '<code>[CUSTO' + 'MCODE=' + functioName + ']</code>' ) ;
2018-09-28 15:46:21 +00:00
jQuery ( '#jcb-placeholder-arg' ) . html ( '<code>[CUSTO' + 'MCODE=' + functioName + '+value1,value2]</code>' ) ;
2017-02-13 23:24:38 +00:00
} else {
jQuery ( '#jcb-placeholder' ) . html ( '<code>[save to see]</code>' ) ;
jQuery ( '#jcb-placeholder-arg' ) . html ( '<code>[save to see]</code>' ) ;
}
// update the notes
if ( ide > 0 ) {
jQuery ( '.placeholder-key-id' ) . text ( ide ) ;
}
}
2019-02-23 13:28:54 +00:00
2017-02-13 23:24:38 +00:00
function checkFunctionName ( functioName ) {
if ( functioName . length > 2 ) {
var ide = jQuery ( '#jform_id' ) . val ( ) ;
if ( ide == 0 ) {
ide = - 1 ;
}
checkFunctionName _server ( functioName , ide ) . done ( function ( result ) {
if ( result . name && result . message ) {
// show notice that functioName is okay
jQuery . UIkit . notify ( { message : result . message , timeout : 5000 , status : result . status , pos : 'top-right' } ) ;
jQuery ( '#jform_function_name' ) . val ( result . name ) ;
// now start search for where the function is used
usedin ( result . name , ide ) ;
} else if ( result . message ) {
2019-02-23 13:28:54 +00:00
// show notice that functioName is not okay
2017-02-13 23:24:38 +00:00
jQuery . UIkit . notify ( { message : result . message , timeout : 5000 , status : result . status , pos : 'top-right' } ) ;
jQuery ( '#jform_function_name' ) . val ( '' ) ;
} else {
// set an error that message was not send
2018-03-27 09:57:16 +00:00
jQuery . UIkit . notify ( { message : Joomla . JText . _ ( 'COM_COMPONENTBUILDER_FUNCTION_NAME_ALREADY_TAKEN_PLEASE_TRY_AGAIN' ) , timeout : 5000 , status : 'danger' , pos : 'top-right' } ) ;
2017-02-13 23:24:38 +00:00
jQuery ( '#jform_function_name' ) . val ( '' ) ;
}
// set custom code placeholder
setCustomCodePlaceholder ( ) ;
} ) ;
} else {
// set an error that message was not send
2018-03-27 09:57:16 +00:00
jQuery . UIkit . notify ( { message : Joomla . JText . _ ( 'COM_COMPONENTBUILDER_YOU_MUST_ADD_AN_UNIQUE_FUNCTION_NAME' ) , timeout : 5000 , status : 'danger' , pos : 'top-right' } ) ;
2017-02-13 23:24:38 +00:00
jQuery ( '#jform_function_name' ) . val ( '' ) ;
// set custom code placeholder
setCustomCodePlaceholder ( ) ;
}
}
2019-02-23 13:28:54 +00:00
// check Function name
2017-02-13 23:24:38 +00:00
function checkFunctionName _server ( functioName , ide ) {
2019-02-23 13:28:54 +00:00
var getUrl = "index.php?option=com_componentbuilder&task=ajax.checkFunctionName&raw=true&format=json" ;
2017-02-13 23:24:38 +00:00
if ( token . length > 0 ) {
var request = 'token=' + token + '&functioName=' + functioName + '&id=' + ide ;
}
return jQuery . ajax ( {
type : 'POST' ,
url : getUrl ,
2019-02-23 13:28:54 +00:00
dataType : 'json' ,
2017-02-13 23:24:38 +00:00
data : request ,
2019-02-23 13:28:54 +00:00
jsonp : false
2017-02-13 23:24:38 +00:00
} ) ;
}
2019-02-23 13:28:54 +00:00
2017-02-13 23:24:38 +00:00
// check where this Function is used
function usedin ( functioName , ide ) {
2017-02-17 18:35:18 +00:00
var found = false ;
jQuery ( '#before-usedin' ) . hide ( ) ;
jQuery ( '#note-usedin-not' ) . hide ( ) ;
jQuery ( '#note-usedin-found' ) . hide ( ) ;
jQuery ( '#loading-usedin' ) . show ( ) ;
2019-07-16 23:15:42 +00:00
var targets = [ 'a' , 'b' , 'c' , 'd' , 'e' , 'f' , 'g' , 'h' , 'i' , 'j' , 'k' , 'l' , 'm' , 'n' , 'o' , 'p' , 'q' , 'r' , 's' , 't' ] ; // if you update this, also update (below 19) & [customcode-codeUsedInHtmlNote]!
var targetNumber = 19 ;
2017-02-17 18:35:18 +00:00
var run = 0 ;
var usedinChecker = setInterval ( function ( ) {
var target = targets [ run ] ;
usedin _server ( functioName , ide , target ) . done ( function ( used ) {
if ( used . in ) {
jQuery ( '#usedin-' + used . id ) . show ( ) ;
jQuery ( '#area-' + used . id ) . html ( used . in ) ;
2017-10-14 03:37:18 +00:00
jQuery . UIkit . notify ( { message : used . in , timeout : 5000 , status : 'success' , pos : 'top-right' } ) ;
2017-02-17 18:35:18 +00:00
found = true ;
} else {
jQuery ( '#usedin-' + target ) . hide ( ) ;
}
2018-10-29 16:38:00 +00:00
if ( run == targetNumber ) {
2017-02-17 18:35:18 +00:00
jQuery ( '#loading-usedin' ) . hide ( ) ;
if ( found ) {
jQuery ( '#note-usedin-found' ) . show ( ) ;
} else {
jQuery ( '#note-usedin-not' ) . show ( ) ;
}
}
} ) ;
2018-10-29 16:38:00 +00:00
if ( run == targetNumber ) {
2017-02-17 18:35:18 +00:00
clearInterval ( usedinChecker ) ;
2017-02-13 23:24:38 +00:00
}
2017-02-17 18:35:18 +00:00
run ++ ;
} , 800 ) ;
2017-02-13 23:24:38 +00:00
}
2017-02-17 18:35:18 +00:00
function usedin _server ( functioName , ide , target ) {
2017-02-13 23:24:38 +00:00
var getUrl = "index.php?option=com_componentbuilder&task=ajax.usedin&format=json" ;
if ( token . length > 0 ) {
2019-11-08 16:07:08 +00:00
var request = token + '=1&functioName=' + functioName + '&id=' + ide + '&target=' + target + '&raw=true&return_here=' + return _here ;
2017-02-13 23:24:38 +00:00
}
return jQuery . ajax ( {
2017-02-17 18:35:18 +00:00
type : 'GET' ,
2017-02-13 23:24:38 +00:00
url : getUrl ,
2019-02-23 13:28:54 +00:00
dataType : 'json' ,
2017-02-13 23:24:38 +00:00
data : request ,
2019-02-23 13:28:54 +00:00
jsonp : false
2017-02-13 23:24:38 +00:00
} ) ;
2019-01-31 21:44:21 +00:00
}
2019-02-23 13:28:54 +00:00
2019-01-31 21:44:21 +00:00
function getEditCustomCodeButtons _server ( id ) {
2019-07-08 16:05:54 +00:00
var getUrl = JRouter ( "index.php?option=com_componentbuilder&task=ajax.getEditCustomCodeButtons&format=json&raw=true&vdm=" + vastDevMod ) ;
2019-01-31 21:44:21 +00:00
if ( token . length > 0 && id > 0 ) {
2019-07-08 16:05:54 +00:00
var request = token + '=1&id=' + id + '&return_here=' + return _here ;
2019-01-31 21:44:21 +00:00
}
return jQuery . ajax ( {
type : 'GET' ,
url : getUrl ,
dataType : 'json' ,
data : request ,
jsonp : false
} ) ;
}
function getEditCustomCodeButtons ( ) {
// get the id
id = jQuery ( "#jform_id" ) . val ( ) ;
getEditCustomCodeButtons _server ( id ) . done ( function ( result ) {
if ( isObject ( result ) ) {
jQuery . each ( result , function ( field , buttons ) {
2019-05-15 22:50:45 +00:00
jQuery ( '<div class="control-group"><div class="control-label"><label>Add/Edit Customcode</label></div><div class="controls control-customcode-buttons-' + field + '"></div></div>' ) . insertBefore ( ".control-wrapper-" + field ) ;
2019-01-31 21:44:21 +00:00
jQuery . each ( buttons , function ( name , button ) {
jQuery ( ".control-customcode-buttons-" + field ) . append ( button ) ;
} ) ;
} ) ;
}
} )
}
// check object is not empty
function isObject ( obj ) {
for ( var prop in obj ) {
if ( Object . prototype . hasOwnProperty . call ( obj , prop ) ) {
return true ;
}
}
return false ;
2017-02-01 13:17:04 +00:00
}