Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

refactor(client): fix TypeScript errors from MkPageHeader #9400

Merged
merged 1 commit into from
Dec 25, 2022

Conversation

saschanaz
Copy link
Member

What

MkPageHeaderの様々なTypeScriptエラーを修正 / Fixed several TypeScript errors from MkPageHeader

Why

エラーの数を減らすため / To reduce errors

Additional info (optional)

@github-actions github-actions bot added the packages/frontend Client side specific issue/PR label Dec 23, 2022
@codecov
Copy link

codecov bot commented Dec 23, 2022

Codecov Report

Merging #9400 (dd1b131) into develop (c0fc0b9) will not change coverage.
The diff coverage is n/a.

@@           Coverage Diff            @@
##           develop    #9400   +/-   ##
========================================
  Coverage    22.41%   22.41%           
========================================
  Files          702      702           
  Lines        65785    65785           
  Branches      2127     2127           
========================================
  Hits         14748    14748           
  Misses       51037    51037           

Help us with your feedback. Take ten seconds to tell us how you rate us. Have a feature suggestion? Share it here.

@tamaina tamaina merged commit ef12241 into misskey-dev:develop Dec 25, 2022
Comment on lines -103 to +104
popupMenu(menu, ev.currentTarget ?? ev.target);
popupMenu(menu, ev.currentTarget! as HTMLElement);
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

why?

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

TypeScript様がいうにはev.targetはEventTarget | null

EventTarget↓

/** EventTarget is a DOM interface implemented by objects that can receive events and may have listeners for them. */
interface EventTarget {
    /**
     * Appends an event listener for events whose type attribute value is type. The callback argument sets the callback that will be invoked when the event is dispatched.
     *
     * The options argument sets listener-specific options. For compatibility this can be a boolean, in which case the method behaves exactly as if the value was specified as options's capture.
     *
     * When set to true, options's capture prevents callback from being invoked when the event's eventPhase attribute value is BUBBLING_PHASE. When false (or not present), callback will not be invoked when event's eventPhase attribute value is CAPTURING_PHASE. Either way, callback will be invoked if event's eventPhase attribute value is AT_TARGET.
     *
     * When set to true, options's passive indicates that the callback will not cancel the event by invoking preventDefault(). This is used to enable performance optimizations described in § 2.8 Observing event listeners.
     *
     * When set to true, options's once indicates that the callback will only be invoked once after which the event listener will be removed.
     *
     * If an AbortSignal is passed for options's signal, then the event listener will be removed when signal is aborted.
     *
     * The event listener is appended to target's event listener list and is not appended if it has the same type, callback, and capture.
     */
    addEventListener(type: string, callback: EventListenerOrEventListenerObject | null, options?: AddEventListenerOptions | boolean): void;
    /** Dispatches a synthetic event event to target and returns true if either event's cancelable attribute value is false or its preventDefault() method was not invoked, and false otherwise. */
    dispatchEvent(event: Event): boolean;
    /** Removes the event listener in target's event listener list with the same type, callback, and options. */
    removeEventListener(type: string, callback: EventListenerOrEventListenerObject | null, options?: EventListenerOptions | boolean): void;
}

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

ev.currentTarget ?? ev.targetev.currentTargetにしたら挙動変わってしまわない?

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

わかる

直した

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

event listenerですからcurrentTargetは常にnullじゃなくEventTargetになるのでokです

(event listenerのそとでしたらちがう話になりますが)

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

その説明をしておくべきでした、すみません😵‍💫

tamaina added a commit that referenced this pull request Dec 25, 2022
@saschanaz saschanaz deleted the page-header branch December 25, 2022 08:13
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
packages/frontend Client side specific issue/PR
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

3 participants