Source: node_modules/@egjs/component/src/ActualComponentEvent.ts

  1. import { DefaultProps } from "./types";
  2. // This class name is not matched to file name intentionally
  3. /**
  4. * Event class to provide additional properties
  5. * @ko Component에서 추가적인 프로퍼티를 제공하는 이벤트 클래스
  6. */
  7. class ComponentEvent<PROPS extends Record<string, any>, TYPE extends string = string, THIS = any> implements DefaultProps<TYPE, THIS> {
  8. /**
  9. * A Component instance that triggered event.
  10. * @type Component
  11. * @ko 이벤트를 트리거한 Component 인스턴스.
  12. * @example
  13. * ```ts
  14. * class ExtendedClass extends Component<{
  15. * someEvent: ComponentEvent<{ foo: number; bar: string }>
  16. * }> {}
  17. *
  18. * new ExtendedClass().on("someEvent", e => {
  19. * e.currentTarget; // ExtendedClass
  20. * });
  21. * ```
  22. */
  23. public currentTarget: THIS;
  24. /**
  25. * The name of the event.
  26. * @type string
  27. * @ko 이벤트 이름.
  28. * @example
  29. * ```ts
  30. * class ExtendedClass extends Component<{
  31. * someEvent: ComponentEvent
  32. * }> {}
  33. *
  34. * new ExtendedClass().on("someEvent", e => {
  35. * e.eventType; // "someEvent"
  36. * });
  37. * ```
  38. */
  39. public eventType: TYPE;
  40. private _canceled: boolean;
  41. /**
  42. * Create a new instance of ComponentEvent.
  43. * @ko ComponentEvent의 새로운 인스턴스를 생성한다.
  44. * @param eventType The name of the event.<ko>이벤트 이름.</ko>
  45. * @param props An object that contains additional event properties.<ko>추가적인 이벤트 프로퍼티 오브젝트.</ko>
  46. */
  47. public constructor(
  48. eventType: TYPE,
  49. props: PROPS
  50. ) {
  51. this.eventType = eventType;
  52. this._canceled = false;
  53. if (!props) return;
  54. for (const key of Object.keys(props as Record<string, any>)) {
  55. // eslint-disable-next-line @typescript-eslint/no-unsafe-assignment
  56. this[key] = props[key];
  57. }
  58. }
  59. /**
  60. * Stop the event. {@link ComponentEvent#isCanceled} will return `true` after.
  61. * @ko 이벤트를 중단한다. 이후 {@link ComponentEvent#isCanceled}가 `true`를 반환한다.
  62. */
  63. public stop() {
  64. this._canceled = true;
  65. }
  66. /**
  67. * Returns a boolean value that indicates whether {@link ComponentEvent#stop} is called before.
  68. * @ko {@link ComponentEvent#stop}이 호출되었는지 여부를 반환한다.
  69. * @return {boolean} A boolean value that indicates whether {@link ComponentEvent#stop} is called before.<ko>이전에 {@link ComponentEvent#stop}이 불려졌는지 여부를 반환한다.</ko>
  70. */
  71. public isCanceled() {
  72. return this._canceled;
  73. }
  74. }
  75. export default ComponentEvent;
comments powered by Disqus