* Copyright 2006-2008, Cake Software Foundation, Inc. * 1785 E. Sahara Avenue, Suite 490-204 * Las Vegas, Nevada 89104 * * Licensed under The MIT License * Redistributions of files must retain the above copyright notice. * * @filesource * @copyright Copyright 2006-2008, Cake Software Foundation, Inc. * @link http://www.cakefoundation.org/projects/info/cakephp CakePHP Project * @package cake * @subpackage cake. * @version * @modifiedby * @lastmodified * @license http://www.opensource.org/licenses/mit-license.php The MIT License */ App::import('Helper', 'Js'); class JqueryEngineHelper extends JsBaseEngineHelper { /** * Option mappings for jQuery * * @var array **/ var $_optionMap = array( 'request' => array( 'type' => 'dataType', 'before' => 'beforeSend', ), 'sortable' => array( 'complete' => 'stop', ), 'drag' => array( 'snapGrid' => 'grid', 'container' => 'containment', ), 'drop' => array( 'leave' => 'out', 'hover' => 'over' ), 'slider' => array( 'complete' => 'stop', 'direction' => 'orientation' ) ); /** * Helper function to wrap repetitive simple method templating. * * @param string $method The method name being generated. * @param string $template The method template * @param string $selection the selection to apply * @param string $options Array of options for method * @param string $callbacks Array of callback / special options. * @access public * @return string **/ function _methodTemplate($method, $template, $options, $callbacks) { $options = $this->_mapOptions($method, $options); $options = $this->_parseOptions($options, $callbacks); return sprintf($template, $this->selection, $options); } /** * Create javascript selector for a CSS rule * * @param string $selector The selector that is targeted * @return object instance of $this. Allows chained methods. **/ function get($selector) { if ($selector == 'window' || $selector == 'document') { $this->selection = '$(' . $selector .')'; } else { $this->selection = '$("' . $selector . '")'; } return $this; } /** * Add an event to the script cache. Operates on the currently selected elements. * * ### Options * * - 'wrap' - Whether you want the callback wrapped in an anonymous function. (defaults true) * - 'stop' - Whether you want the event to stopped. (defaults true) * * @param string $type Type of event to bind to the current dom id * @param string $callback The Javascript function you wish to trigger or the function literal * @param array $options Options for the event. * @return string completed event handler **/ function event($type, $callback, $options = array()) { $defaults = array('wrap' => true, 'stop' => true); $options = array_merge($defaults, $options); $function = 'function (event) {%s}'; if ($options['wrap'] && $options['stop']) { $callback .= "\nreturn false;"; } if ($options['wrap']) { $callback = sprintf($function, $callback); } return sprintf('%s.bind("%s", %s);', $this->selection, $type, $callback); } /** * Create a domReady event. This is a special event in many libraries * * @param string $functionBody The code to run on domReady * @return string completed domReady method **/ function domReady($functionBody) { return $this->get('document')->event('ready', $functionBody, array('stop' => false)); } /** * Create an iteration over the current selection result. * * @param string $method The method you want to apply to the selection * @param string $callback The function body you wish to apply during the iteration. * @return string completed iteration **/ function each($callback) { return $this->selection . '.each(function () {' . $callback . '});'; } /** * Trigger an Effect. * * @param string $name The name of the effect to trigger. * @param array $options Array of options for the effect. * @return string completed string with effect. * @see JsBaseEngineHelper::effect() **/ function effect($name, $options = array()) { $speed = null; if (isset($options['speed']) && in_array($options['speed'], array('fast', 'slow'))) { $speed = $this->value($options['speed']); } $effect = ''; switch ($name) { case 'slideIn': case 'slideOut': $name = ($name == 'slideIn') ? 'slideDown' : 'slideUp'; case 'hide': case 'show': case 'fadeIn': case 'fadeOut': $effect = ".$name($speed);"; break; } return $this->selection . $effect; } /** * Create an $.ajax() call. * * If the 'update' key is set, success callback will be overridden. * * @param mixed $url * @param array $options * @return string The completed ajax call. **/ function request($url, $options = array()) { $url = $this->url($url); $options = $this->_mapOptions('request', $options); if (isset($options['data']) && is_array($options['data'])) { $options['data'] = $this->_toQuerystring($options['data']); } $options['url'] = $url; if (isset($options['update'])) { $options['success'] = 'function (msg, status) {$("' . $options['update'] . '").html(msg);}'; unset($options['update']); } $callbacks = array('success', 'error', 'beforeSend', 'complete'); $options = $this->_parseOptions($options, $callbacks); return '$.ajax({' . $options .'});'; } /** * Create a sortable element. * * Requires both Ui.Core and Ui.Sortables to be loaded. * * @param array $options Array of options for the sortable. * @return string Completed sortable script. * @see JsHelper::sortable() for options list. **/ function sortable($options = array()) { $callbacks = array('start', 'sort', 'change', 'beforeStop', 'stop', 'update', 'receive', 'remove', 'over', 'out', 'activate', 'deactivate'); $template = '%s.sortable({%s});'; return $this->_methodTemplate('sortable', $template, $options, $callbacks); } /** * Create a Draggable element * * Requires both Ui.Core and Ui.Draggable to be loaded. * * @param array $options Array of options for the draggable element. * @return string Completed Draggable script. * @see JsHelper::drag() for options list. **/ function drag($options = array()) { $callbacks = array('start', 'drag', 'stop'); $template = '%s.draggable({%s});'; return $this->_methodTemplate('drag', $template, $options, $callbacks); } /** * Create a Droppable element * * Requires both Ui.Core and Ui.Droppable to be loaded. * * @param array $options Array of options for the droppable element. * @return string Completed Droppable script. * @see JsHelper::drop() for options list. **/ function drop($options = array()) { $callbacks = array('activate', 'deactivate', 'over', 'out', 'drop'); $template = '%s.droppable({%s});'; return $this->_methodTemplate('drop', $template, $options, $callbacks); } /** * Create a Slider element * * Requires both Ui.Core and Ui.Slider to be loaded. * * @param array $options Array of options for the droppable element. * @return string Completed Slider script. * @see JsHelper::slider() for options list. **/ function slider($options = array()) { $callbacks = array('start', 'change', 'slide', 'stop'); $template = '%s.slider({%s});'; return $this->_methodTemplate('slider', $template, $options, $callbacks); } } ?>