Skip to content
New issue

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

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

Already on GitHub? # to your account

crypto and it's deprecated package #597

Closed
japgolly opened this issue Oct 17, 2021 · 7 comments · Fixed by #598
Closed

crypto and it's deprecated package #597

japgolly opened this issue Oct 17, 2021 · 7 comments · Fixed by #598
Milestone

Comments

@japgolly
Copy link
Contributor

I'd really love to have dom.crypto be of type js.UndefOr[Crypto]. It seems the impediment is the old deprecated package with the same name.

These are my ideas:

  1. change dom.crypto to be of type js.UndefOr[Crypto with DeprecatedCryptoPackage] so that at least in userland we can use it Crypto -- actually this won't work - deprecated crypto imports wouldn't be stable, not to mention that there's a js.UndefOr there

  2. Building on @sjrd's suggestion we could keep The great migration to dom #588 as it but also add a webCrypto: js.UndefOr[Crypto] which we could deprecate in 3.x to be replaced by crypto

  3. just nuke the deprecated package, 2.0 is a new world

Any more ideas? I'm kinda happy with 3, but 2 would definitely be acceptable.

@armanbilge
Copy link
Member

armanbilge commented Oct 17, 2021

It's a bit ugly, but what if we add an implicit conversion to Crypto that brings in all the deprecated aliases? So that dom.crypto can still be used as if it is the old package. Would this work?

@japgolly
Copy link
Contributor Author

I don't think so. Cos source-compat is the concern the direct import statements would stop working. Plus maybe it wouldn't be worth it if the cost is an implicit anyway :)

@armanbilge
Copy link
Member

Right, imports 😕

Regarding your idea 2, we already have a deprecated GlobalCrypto object or similar that could be used like that I think. Otherwise I'm 👍 with it, I think I suggested something similar as well.

@japgolly
Copy link
Contributor Author

Oh another idea, we could add

object Crypto {
  def ifAvailable: js.UndefOr[Cypto]
}

It would be the same as option 2 above except instead of webCrypto it would be Crypto.ifAvailable. More of a 2b

@japgolly
Copy link
Contributor Author

GlobalCrypto has the wrong type for crypto and it's deprecated anyway.

Regarding your idea 2, we already have a deprecated GlobalCrypto object or similar that could be used like that I think. Otherwise I'm +1 with it, I think I suggested something similar as well.

Nice, so we'll go with a 2x option? Do you have a preference between webCrypto or Crypto.ifAvailable or something else?

@armanbilge
Copy link
Member

IMO dom.webCrypto is best since it's very close to our eventual target of dom.crypto.

@japgolly
Copy link
Contributor Author

ok np, I'll do PR that after #588 is in 👍

@armanbilge armanbilge added this to the v2.0.0 milestone Oct 17, 2021
japgolly added a commit that referenced this issue Oct 17, 2021
Closes #597

I orginally thought the type would be js.UndefOr[Crypto] but according
to MDN, `crypto` is always available but not all of the methods are.
japgolly added a commit that referenced this issue Oct 17, 2021
Closes #597

I orginally thought the type would be js.UndefOr[Crypto] but according
to MDN, `crypto` is always available but not all of the methods are.
@japgolly japgolly mentioned this issue Oct 17, 2021
# for free to join this conversation on GitHub. Already have an account? # to comment
Labels
None yet
Projects
None yet
Development

Successfully merging a pull request may close this issue.

2 participants