Skip to content

[core/primitive][composeEventHandlers] Replace checkForDefaultPrevented api #905

Open
@andy-hook

Description

@andy-hook

Internally, the checkForDefaultPrevented api makes event composition difficult to follow. The suggested path is to split this out into two utils:

composeEvent
composePreventableEvent
(naming tbd)

In rare occurrences where we have a mixture of preventable and non-preventable handlers, multiple composition is preferred to better communicate the intent:

onBlur={composePreventableEvent(
  composeEvent(props.onBlur, context.onNotPreventableEvent), 
  context.onPreventableEvent
)}

Metadata

Metadata

Assignees

No one assigned

    Labels

    Type

    No type

    Projects

    No projects

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions