Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
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 ourterms of service andprivacy statement. We’ll occasionally send you account related emails.

Already on GitHub?Sign in to your account

docs: consider ctrl clicking an anchor#12290

Merged
benmccann merged 4 commits intosveltejs:mainfromhyunbinseo:patch-1
Jun 19, 2024

Conversation

hyunbinseo
Copy link
Contributor

On Windows,Ctrl clicking an anchor opens it in a new tab.

Checking fore.metaKey only checks for the Windows key.

// bail if opening a new tab, or we're on too small a screenif(e.metaKey||innerWidth<640)return;// Added ctrlKey checkif(e.metaKey||e.ctrlKey||innerWidth<640)return;

Originally suggested inHuntabyte's video starting at 6:00.


Please don't delete this checklist! Before submitting the PR, please make sure you do the following:

  • It's really useful if your PR references an issue where it is discussed ahead of time. In many cases, features are absent for a reason. For large changes, please create an RFC:https://github.com/sveltejs/rfcs
  • This message body should clearly illustrate what problems it solves.
  • Ideally, include a test that fails without this PR but passes with it.

Tests

  • Run the tests withpnpm test and lint the project withpnpm lint andpnpm check

Changesets

  • If your PR makes a change that should be noted in one or more packages' changelogs, generate a changeset by runningpnpm changeset and following the prompts. Changesets that add features should beminor and those that fix bugs should bepatch. Please prefix changeset messages withfeat:,fix:, orchore:.

Edits

  • Please ensure that 'Allow edits from maintainers' is checked. PRs without this option may be closed.

@changeset-botchangeset-bot
Copy link

changeset-botbot commentedJun 2, 2024
edited
Loading

⚠️ No Changeset found

Latest commit:7eb7a91

Merging this PR will not cause a version bump for any packages. If these changes should not result in a new version, you're good to go.If these changes should result in a version bump, you need to add a changeset.

This PR includes no changesets

When changesets are added to this PR, you'll see the packages that this PR includes changesets for and the associated semver types

Click here to learn what changesets are, and how to add one.

Click here if you're a maintainer who wants to add a changeset to this PR

@eltigerchinoeltigerchino added the documentationImprovements or additions to documentation labelJun 2, 2024
@@ -59,7 +59,7 @@ For this to work, you need to load the data that the `+page.svelte` expects. A c
href="/photos/{thumbnail.id}"
on:click={async (e) => {
// bail if opening a new tab, or we're on too small a screen
Copy link
Member

Choose a reason for hiding this comment

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

It might be nice to expand this with some details about ctrl/meta on various OS to explain why we need to check both

Copy link
ContributorAuthor

Choose a reason for hiding this comment

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

DoesWindows + clicking a link open it in a new tab?

Cannot reproduce it in Windows 11 + Chrome | Firefox.

Copy link
Member

Choose a reason for hiding this comment

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

It’s ctrl + click to open in a new tab on windows iirc

Copy link
Member

Choose a reason for hiding this comment

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

Windows+click (for me, on Firefox) on a regular link does nothing - it doesn't follow it at all. It looks like itdoes trigger aclick event, though, so to match that behavior, we should also make sure that we bail here and let the browser use the default handler, which is to do nothing.

However, there are also a number of other cases we should be handling here besides meta-click. Shift-click opens in a new window, and so we want to use the default handling there. Alt-clicking (for me) does nothing, so we also want the default handling there. I'm uncertain whether we need to check that this was a left-button click.

Copy link
ContributorAuthor

Choose a reason for hiding this comment

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

I believe a scroll-wheel clicking on an anchor also opens it in a new tab as well. Should this be handled as well?

Copy link
Member

Choose a reason for hiding this comment

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

adding support for scroll-wheel clicking would be a nice touch

Copy link
ContributorAuthor

Choose a reason for hiding this comment

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

Scroll-wheel click seems to be checkable usinge.button === 1.

Updated theREPL to log the mouse button used to click the anchor.

Referencehttps://developer.mozilla.org/en-US/docs/Web/API/MouseEvent/button

@hyunbinseo
Copy link
ContributorAuthor

Create a SvelteREPL just to make sure. To open an anchor in a new tab:

  • Windows:e.ctrlKey
  • macOS:e.metaKey

@benmccann
Copy link
Member

Windows: e.ctrlKey
macOS: e.metaKey

Thanks! Linux is alsoctrlKey

@hyunbinseo
Copy link
ContributorAuthor

Maybee.preventDefault() should be called regardless of user input or viewport width?

This is what Instagram is doing.

In a Instagram profile,command clicking on a post still opens it as a modal.example

There is always on option to open a IG post in a new tab by using the context menu.

@benmccann
Copy link
Member

I'd be fine with that. This is just sample code, so I don't really want to over-complicate it by handling all the various cases (#12290 (comment))

@Conduitry
Copy link
Member

On the other hand, I think people likelyare going to take inspiration from this code, and will likely lift parts of it directly - I don't think we want to assume that everyone is going to do their own research into which click events should be left to the browser. There are a number of obscure cases, as demonstrated in this discussion.

@benmccann
Copy link
Member

yeah, that's true. I suppose even if they're not building an Instagram clone, they'll still copy/paste parts of this

@@ -59,7 +59,7 @@ For this to work, you need to load the data that the `+page.svelte` expects. A c
href="/photos/{thumbnail.id}"
on:click={async (e) => {
// bail if opening a new tab, or we're on too small a screen
Copy link
Member

@benmccannbenmccannJun 18, 2024
edited
Loading

Choose a reason for hiding this comment

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

Suggested change
// bail if opening a new tab, or we're on too small a screen
// bail if opening a new tab, or we're on too small a screen
// to modify a link click to open in a new tab, macOS uses metaKey and windows/linux use ctrlKey

Copy link
ContributorAuthor

Choose a reason for hiding this comment

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

Since Chrome uses the 'open link in new tab' context menu text, how about the following?

- for clicking to open a new tab,+ for opening a link in a new tab,+ to open the clicked link in a new tab,``

Copy link
Member

Choose a reason for hiding this comment

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

I tweaked the suggestion a bit. what do you think about it now?

hyunbinseo reacted with thumbs up emoji
Copy link
ContributorAuthor

Choose a reason for hiding this comment

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

That is intuitive. Can I add 'the' in-front of the key names?

macOS uses the metaKey while windows and linux use the ctrlKey

Following citation is from Wikipedia.

Similarly to theShift key, the Control key rarely performs any function when pressed by itself. The Control key is located on or near the bottom left side of most keyboards (in accordance with the international standardISO/IEC 9995-2), with many featuring an additional one at the bottom right.

Copy link
Member

Choose a reason for hiding this comment

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

Can I add 'the' in-front of the key names?

It does read nicely with 'the', but I was kind of trying to keep it on one line. We might have to break it into two lines if it gets too long, so I don't know if it'd be worth it or not

Copy link
ContributorAuthor

Choose a reason for hiding this comment

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

I personally think splitting each checks is more readable.

// bail if the user wants to open the link in a new tab// macOS uses the metaKey, windows/linux use the ctrlKeyif(e.metaKey||e.ctrlKey)return;// bail if the user wants to open the link in a new windowif(e.shiftKey)return;// bail if the screen is too narrow/smallif(innerWidth<640)return;

It might not be the most concise code, but there are more checks to add.

Will be adding this commit for now (also sincee.metaKey has to be reverted)

Co-authored-by: Ben McCann <322311+benmccann@users.noreply.github.com>
@benmccann
Copy link
Member

thanks! this was surprisingly more complicated than i'd have imagined, but glad we figured something out

hyunbinseo reacted with thumbs up emoji

@benmccannbenmccann merged commit50a6dc1 intosveltejs:mainJun 19, 2024
11 of 12 checks passed
@hyunbinseohyunbinseo deleted the patch-1 branchJune 19, 2024 00:52
Sign up for freeto join this conversation on GitHub. Already have an account?Sign in to comment
Reviewers

@benmccannbenmccannbenmccann left review comments

@ConduitryConduitryConduitry left review comments

@eltigerchinoeltigerchinoeltigerchino left review comments

Assignees
No one assigned
Labels
documentationImprovements or additions to documentation
Projects
None yet
Milestone
No milestone
Development

Successfully merging this pull request may close these issues.

4 participants
@hyunbinseo@benmccann@Conduitry@eltigerchino

[8]ページ先頭

©2009-2025 Movatter.jp