HEX
Server: Apache/2.4.52 (Ubuntu)
System: Linux spn-python 5.15.0-89-generic #99-Ubuntu SMP Mon Oct 30 20:42:41 UTC 2023 x86_64
User: arjun (1000)
PHP: 8.1.2-1ubuntu2.20
Disabled: NONE
Upload Files
File: //home/arjun/projects/buyercall/node_modules/react-interactive/src/constants.js
import detectIt from 'detect-it';

export const deviceType = detectIt.deviceType;
export const deviceHasTouch = detectIt.hasTouch;
export const deviceHasMouse = detectIt.hasMouse;
export const passiveEventSupport = detectIt.passiveEvents;

export const mouseEvents = {
  mouseenter: 'onMouseEnter',
  mouseleave: 'onMouseLeave',
  mousemove: 'onMouseMove',
  mousedown: 'onMouseDown',
  mouseup: 'onMouseUp',
};

export const touchEvents = {
  touchstart: 'onTouchStart',
  touchend: 'onTouchEnd',
  touchcancel: 'onTouchCancel',
};

export const otherEvents = {
  focus: 'onFocus',
  blur: 'onBlur',
  keydown: 'onKeyDown',
  keyup: 'onKeyUp',
  dragstart: 'onDragStart',
  dragend: 'onDragEnd',
};

export const iStates = {
  normal: true,
  hover: true,
  hoverActive: true,
  touchActive: true,
  keyActive: true,
};

export const stateProps = {
  ...iStates,
  active: true,
  focus: true,
  focusFromTab: true,
  focusFromMouse: true,
  focusFromTouch: true,
};

export const statePropOptionKeys = ['style', 'className'];

// don't toggle focus on these tags
export const nonBlurrableTags = {
  input: true,
  textarea: true,
  select: true,
};

// tags with known roles, and that the browser may have a click handler for
export const knownRoleTags = {
  ...nonBlurrableTags,
  button: true,
  a: true,
  area: true,
};

// elements triggered by the enter key
export function enterKeyTrigger(tag, type) {
  return (
    tag !== 'select' &&
    (tag !== 'input' || (type !== 'checkbox' && type !== 'radio'))
  );
}

// elements triggered by the space bar
export function spaceKeyTrigger(tag, type) {
  return (
    tag === 'button' ||
    tag === 'select' ||
    (tag === 'input' &&
      (type === 'checkbox' || type === 'radio' || type === 'submit'))
  );
}

// known props to not pass through, every prop not on this list is passed through
export const knownProps = {
  ...stateProps,
  children: true,
  as: true,
  style: true,
  className: true,
  wrapperStyle: true,
  wrapperClassName: true,
  onStateChange: true,
  setStateCallback: true,
  onClick: true,
  onTapTwo: true,
  onTapThree: true,
  onTapFour: true,
  onLongPress: true,
  tapTimeCutoff: true,
  onMouseEnter: true,
  onMouseLeave: true,
  onMouseMove: true,
  onMouseDown: true,
  onMouseUp: true,
  onTouchStart: true,
  onTouchMove: true,
  onTouchEnd: true,
  onTouchCancel: true,
  onFocus: true,
  onBlur: true,
  onKeyDown: true,
  onKeyUp: true,
  forceState: true,
  initialState: true,
  refDOMNode: true,
  mutableProps: true,
  useBrowserOutlineFocus: true,
  useBrowserCursor: true,
  touchActiveTapOnly: true,
  extraTouchNoTap: true,
  focusToggleOff: true,
  stylePriority: true,
  nonContainedChild: true,
  interactiveChild: true,
};

// ms to allow for the browser to add subsequent event to the queue in setTimeouts
export const queueTime = 600;

export const defaultTapTimeCutoff = 500;

export function dummyEvent(type) {
  return {
    type,
    persist: () => {},
    preventDefault: () => {},
    stopPropagation: () => {},
  };
}

export const childInteractiveProps = {
  showOnParent: true,
  onParentNormal: true,
  onParentHover: true,
  onParentActive: true,
  onParentHoverActive: true,
  onParentTouchActive: true,
  onParentKeyActive: true,
  onParentFocus: true,
  onParentFocusFromTab: true,
  onParentFocusFromMouse: true,
  onParentFocusFromTouch: true,
};