Newer
Older
dmpopidor / lib / assets / javascripts / utils / paginable.js
@Bodacious Bodacious on 26 Sep 2018 863 bytes Fix bug in paginable table sorting
import { isValidText } from './isValidInputType';

export const paginableSelector = '.paginable';

$(() => {
  const onAjaxSuccessHandler = (e, data) => {
    $(e.target).closest(paginableSelector).replaceWith($(data));
  };
  $('.paginable-search form[data-remote="true"]').on('ajax:before', e => isValidText($(e.target).find('input[name="search"]').val()));
  // Event listener for Ajax success event captured in response to a paginable link clicked or
  // search form submitted. Note the presence of a selector for on (e.g. a[data-remote="true"])
  // so that descendant elements from .paginable-results that are added in future are also
  // automatically handled.
  $('body').on('ajax:success',
    'form.paginable-action[data-remote="true"], a.paginable-action[data-remote="true"]',
    onAjaxSuccessHandler);
});

export { paginableSelector as default };