diff --git a/themes/bootstrap/js/lightbox.js b/themes/bootstrap/js/lightbox.js index 37ed70a217f65e18ceb69113c7471931b4c44b69..d8a39028585a17a5aa49bd3c049b23a8d8321d83 100644 --- a/themes/bootstrap/js/lightbox.js +++ b/themes/bootstrap/js/lightbox.js @@ -42,6 +42,7 @@ function changeModalContent(html) { */ function closeLightbox() { $('#modal').modal('hide'); + cartAction = false; } /** * This function is attached to the lightbox close event, @@ -170,8 +171,10 @@ function getLightboxByUrl(url, post, callback, pop) { changeModalContent(html); } }, - error:function(d,e) { + error:function(d,e, xhr, $form) { + //window.location.replace(url); console.log(url,e,d); // Error reporting + console.log(xhr); } }); // Store current "page" context for empty targets @@ -203,24 +206,16 @@ function getLightbox(controller, action, get, post, callback, pop) { /** * Call this function after a form is submitted */ -function ajaxSubmit($form, callback) { - // Default callback is to close - if(!callback) { - if(callbackStack.length > 0) { - callback = callbackStack.pop(); - //console.log("Pop:",callback); - } else { - callback = closeLightbox; - } - } +var cartAction = false; +function getDataFromForm($form) { // Gather all the data var inputs = $form.find('*[name]'); var data = {}; for(var i=0;i<inputs.length;i++) { var currentName = inputs[i].name; var array = currentName.substring(currentName.length-2) == '[]'; - if(array && !data[currentName]) { - data[currentName] = []; + if(array && !data[currentName.substring(0,currentName.length-2)]) { + data[currentName.substring(0,currentName.length-2)] = []; } // Submit buttons if(inputs[i].type == 'submit') { @@ -231,7 +226,8 @@ function ajaxSubmit($form, callback) { } else if(inputs[i].type == 'radio') { if(inputs[i].checked) { if(array) { - data[currentName][data[currentName].length] = inputs[i].value; + var n = currentName.substring(0,currentName.length-2); + data[n].push(inputs[i].value); } else { data[currentName] = inputs[i].value; } @@ -239,12 +235,27 @@ function ajaxSubmit($form, callback) { // Checkboxes } else if($(inputs[i]).attr('type') != 'checkbox' || inputs[i].checked) { if(array) { - data[currentName][data[currentName].length] = inputs[i].value; + var n = currentName.substring(0,currentName.length-2); + data[n].push(inputs[i].value); } else { data[currentName] = inputs[i].value; } } } + return data; +} +function ajaxSubmit($form, callback) { + cartAction = $form.attr('name'); + // Default callback is to close + if(!callback) { + if(callbackStack.length > 0) { + callback = callbackStack.pop(); + //console.log("Pop:",callback); + } else { + callback = closeLightbox; + } + } + var data = getDataFromForm($form); // If we have an action: parse var POST = $form.attr('method') && $form.attr('method').toUpperCase() == 'POST'; if($form.attr('action')) { @@ -271,6 +282,7 @@ function ajaxSubmit($form, callback) { */ // Logging in function ajaxLogin(form) { + console.log('ajaxLogin'); $.ajax({ url: path + '/AJAX/JSON?method=getSalt', dataType: 'json', @@ -347,19 +359,15 @@ function ajaxLogin(form) { } }); } - // and we update the modal - if(callbackStack.length > 0) { + if(!cartAction && callbackStack.length > 0) { var callback = callbackStack.pop(); //console.log("Pop:",callback); - if(callback == changeModalContent) { // We don't have good data for changeModalContent - getLightboxByUrl(lastLightboxURL, lastLightboxPOST); - } else { - callback(); - } + callback(); } else if(lastLightboxPOST && lastLightboxPOST['loggingin']) { closeLightbox(); } else { + console.log('lastLightboxPOST', lastLightboxPOST); getLightboxByUrl(lastLightboxURL, lastLightboxPOST); } } else { @@ -375,31 +383,12 @@ function ajaxLogin(form) { } // Cart submission function cartSubmit($form) { - var submit = $form.find('input[type="submit"][clicked=true]').attr('name'); + var submit = $form.find('input[type="submit"][clicked=true]').attr('name'); switch(submit) { - case 'saveCart': - case 'email': - case 'export': - ajaxSubmit($form, changeModalContent); - break; - case 'delete': - case 'empty': - ajaxSubmit($form, closeLightbox); - break; case 'print': //redirect page var checks = $form.find('input.checkbox-select-item:checked'); - if(checks.length == 0) { - $.ajax({ - url:path+'/Cart/PrintCart', - data:{}, - success:function(html) { - var newDoc = document.open("text/html", "replace"); - newDoc.write(html); - newDoc.close(); - } - }); - } else { + if(checks.length > 0) { var url = path+'/Records/Home?print=true'; for(var i=0;i<checks.length;i++) { url += '&id[]='+checks[i].value; @@ -407,6 +396,8 @@ function cartSubmit($form) { window.location.replace(url); } break; + default: + ajaxSubmit($form, changeModalContent); } } @@ -458,14 +449,40 @@ function registerModalForms(modal) { cartSubmit($(this)); return false; }); - $(modal).find('form[name="newList"]').unbind('submit').submit(function(){ - ajaxSubmit($(this), changeModalContent); + $(modal).find('form[name="bulkSave"]').unbind('submit').submit(function(){ + ajaxSubmit($(this), function() { + changeModalContent('<div class="alert alert-info">'+vufindString['bulk_save_success']+'</div><button class="btn" data-dismiss="modal" aria-hidden="true">Close</button>'); + }); + callbackStack.unshift(function() { + window.location.replace(path+'/MyResearch/MyList/'+lastLightboxPOST['list']); + }); + return false; + }); + $(modal).find('form[name="exportForm"]').unbind('submit').submit(function(){ + var form = $(this); + $.ajax({ + url: path + '/AJAX/JSON?' + $.param({method:'exportFavorites'}), + type:'POST', + dataType:'json', + data:getDataFromForm($(this)), + success:function(data) { + changeModalContent(data.data.result_additional); + }, + error:function(d,e) { + console.log(d,e); // Error reporting + } + }); + //ajaxSubmit($(this), changeModalContent); return false; }); $(modal).find('form[name="loginForm"]').unbind('submit').submit(function(){ ajaxLogin(this); return false; }); + $(modal).find('form[name="newList"]').unbind('submit').submit(function(){ + ajaxSubmit($(this), changeModalContent); + return false; + }); } /** * This is where you add click events to open the lightbox. diff --git a/themes/bootstrap/templates/ajax/export-favorites.phtml b/themes/bootstrap/templates/ajax/export-favorites.phtml index ffdc08e5178537afc247efaca3ee653bcb03b4ab..48a39a48b4e6cffc564bcc151fd0b9ecbd82c38c 100644 --- a/themes/bootstrap/templates/ajax/export-favorites.phtml +++ b/themes/bootstrap/templates/ajax/export-favorites.phtml @@ -1,7 +1,5 @@ -<p> - <a href="<?=$this->escapeHtml($this->url)?>"<?=$this->export()->needsRedirect($this->format) ? ' target="_blank"' : ''?>><?= +<a class="btn btn-primary" href="<?=$this->escapeHtml($this->url)?>"<?=$this->export()->needsRedirect($this->format) ? ' target="_blank"' : ''?>><?= $this->export()->needsRedirect($this->format) ? $this->transEsc('export_redirect', array('%%service%%' => $this->translate($this->format))) : $this->transEsc('export_download') ?></a> -</p> diff --git a/themes/bootstrap/templates/cart/email.phtml b/themes/bootstrap/templates/cart/email.phtml index 33c32c79c117b4c846303867437383e88f9b92e6..46976642fba478675fe0a61653b459da1c6fa034 100644 --- a/themes/bootstrap/templates/cart/email.phtml +++ b/themes/bootstrap/templates/cart/email.phtml @@ -10,14 +10,24 @@ <?=$this->flashmessages()?> <form class="form-horizontal" action="<?=$this->url('cart-email')?>" method="post" name="bulkEmail"> <? foreach ($this->records as $current): ?> - <div class="control-group"> - <label class="control-label"><?=$this->transEsc('Title')?></label> - <div class="controls"> - <span class="uneditable-input"><?=$this->escapeHtml($current->getBreadcrumb())?></span> - <input type="hidden" name="ids[]" value="<?=$this->escapeHtml($current->getResourceSource() . '|' . $current->getUniqueId())?>" /> + <input type="hidden" name="ids[]" value="<?=$this->escapeHtml($current->getResourceSource() . '|' . $current->getUniqueId())?>" /> + <? endforeach; ?> + <div class="control-group"> + <label class="control-label"><?=$this->transEsc('Title')?></label> + <div class="controls"> + <? if(count($this->records) > 3): ?> + <div class="item-list"> + <ul> + <? foreach ($this->records as $current): ?> + <li><?=$this->escapeHtml($current->getBreadcrumb())?></li> + <? endforeach; ?> + </ul> </div> + <? else: ?> + <span class="uneditable-input"><?=$this->records[0]->getBreadcrumb() ?></span> + <? endif; ?> </div> - <? endforeach; ?> + </div> <div class="control-group"> <label class="control-label" for="email_to"><?=$this->transEsc('To')?>:</label> <div class="controls"> @@ -44,3 +54,14 @@ </div> </div> </form> +<? + $items = $this->transEsc('items'); + $script = <<<JS + var list = $('.item-list'); + var items = list.find('li').length; + var bubble = list.html(); + list.html('<span class="btn">'+items+' {$items}</span>'); + list.find('.btn').popover({html:true,content:bubble}); +JS; +?> +<?=$this->inlineScript(\Zend\View\Helper\HeadScript::SCRIPT, $script, 'SET') ?> \ No newline at end of file diff --git a/themes/bootstrap/templates/cart/export.phtml b/themes/bootstrap/templates/cart/export.phtml index a1e01f40766b0d2eafa5a8330f46442fa86185a6..dad4066feb77022ebcce8d2758e3fbcc7782cbe9 100644 --- a/themes/bootstrap/templates/cart/export.phtml +++ b/themes/bootstrap/templates/cart/export.phtml @@ -14,17 +14,49 @@ <? if (!empty($this->exportOptions)): ?> <form class="form-inline" method="post" action="<?=$this->url('cart-export')?>" name="exportForm" title="<?=$this->transEsc('Export Items')?>"> <? foreach ($this->records as $current): ?> - <strong><?=$this->transEsc('Title')?>:</strong> <?=$this->escapeHtml($current->getBreadcrumb())?><br /> <input type="hidden" name="ids[]" value="<?=$this->escapeHtml($current->getResourceSource() . '|' . $current->getUniqueId())?>" /> <? endforeach; ?> - <br /> - <label for="format"><?=$this->transEsc('Format')?>:</label> - <select name="format" id="format"> - <? foreach ($this->exportOptions as $exportOption): ?> - <option value="<?=$this->escapeHtml($exportOption)?>"><?=$this->transEsc($exportOption)?></option> - <? endforeach; ?> - </select> - <br/><br/> - <input class="btn" type="submit" name="submit" value="<?=$this->transEsc('Export') ?>"/> + <div class="control-group"> + <label class="control-label"><?=$this->transEsc('Title')?></label> + <div class="controls"> + <? if(count($this->records) > 3): ?> + <div class="item-list"> + <ul> + <? foreach ($this->records as $current): ?> + <li><?=$this->escapeHtml($current->getBreadcrumb())?></li> + <? endforeach; ?> + </ul> + </div> + <? else: ?> + <span class="uneditable-input"><?=$this->records[0]->getBreadcrumb() ?></span> + <? endif; ?> + </div> + </div> + <div class="control-group"> + <label class="control-label" for="format"><?=$this->transEsc('Format')?>:</label> + <div class="controls"> + <select name="format" id="format"> + <? foreach ($this->exportOptions as $exportOption): ?> + <option value="<?=$this->escapeHtml($exportOption)?>"><?=$this->transEsc($exportOption)?></option> + <? endforeach; ?> + </select> + </div> + </div> + <div class="control-group"> + <div class="controls"> + <input class="btn" type="submit" name="submit" value="<?=$this->transEsc('Export')?>"/> + </div> + </div> </form> -<? endif; ?> \ No newline at end of file +<? endif; ?> +<? + $items = $this->transEsc('items'); + $script = <<<JS + var list = $('.item-list'); + var items = list.find('li').length; + var bubble = list.html(); + list.html('<span class="btn">'+items+' {$items}</span>'); + list.find('.btn').popover({html:true,content:bubble}); +JS; +?> +<?=$this->inlineScript(\Zend\View\Helper\HeadScript::SCRIPT, $script, 'SET') ?> \ No newline at end of file diff --git a/themes/bootstrap/templates/cart/save.phtml b/themes/bootstrap/templates/cart/save.phtml index 053cdae9824e2016877cf878f15857c465202b86..8748633267e18f51ba4d7182dea592342b498662 100644 --- a/themes/bootstrap/templates/cart/save.phtml +++ b/themes/bootstrap/templates/cart/save.phtml @@ -12,22 +12,23 @@ <form class="form-horizontal" method="post" action="<?=$this->url('cart-save')?>" name="bulkSave"> <? $idParams = array(); ?> + <? foreach ($this->records as $current): ?> + <? $idParams[] = urlencode('ids[]') . '=' . urlencode($current->getResourceSource() . '|' . $current->getUniqueId()) ?> + <input type="hidden" name="ids[]" value="<?=$this->escapeHtml($current->getResourceSource() . '|' . $current->getUniqueId())?>" /> + <? endforeach; ?> <div class="control-group"> <label class="control-label"><?=$this->transEsc('Title')?></label> <div class="controls"> - <? if(count($this->records) > 1): ?> + <? if(count($this->records) > 3): ?> <div class="item-list"> <ul> <? foreach ($this->records as $current): ?> - <? $idParams[] = urlencode('ids[]') . '=' . urlencode($current->getResourceSource() . '|' . $current->getUniqueId()) ?> <li><?=$this->escapeHtml($current->getBreadcrumb())?></li> - <input type="hidden" name="ids[]" value="<?=$this->escapeHtml($current->getResourceSource() . '|' . $current->getUniqueId())?>" /> <? endforeach; ?> </ul> </div> <? else: ?> <span class="uneditable-input"><?=$this->records[0]->getBreadcrumb() ?></span> - <input type="hidden" name="ids[]" value="<?=$this->escapeHtml($this->records[0]->getResourceSource() . '|' . $this->records[0]->getUniqueId())?>" /> <? endif; ?> </div> </div> @@ -60,7 +61,6 @@ </div> </div> </form> - <? $items = $this->transEsc('items'); $script = <<<JS diff --git a/themes/bootstrap/templates/layout/layout.phtml b/themes/bootstrap/templates/layout/layout.phtml index 3322060f6da09ef98e90b05a4634a937bdb61cbf..d9feae0674d943a1f93d0c7d8be0df563ad3801d 100644 --- a/themes/bootstrap/templates/layout/layout.phtml +++ b/themes/bootstrap/templates/layout/layout.phtml @@ -32,6 +32,7 @@ $this->jsTranslations()->addStrings( array( 'bulk_noitems_advice' => 'bulk_noitems_advice', + 'bulk_save_success' => 'bulk_save_success', 'confirmEmpty' => 'bookbag_confirm_empty', 'viewBookBag' => 'View Book Bag', 'addBookBag' => 'Add to Book Bag',