-
Notifications
You must be signed in to change notification settings - Fork 4
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
Add ProposalAttachmentType dynamic enum. #389
Merged
Merged
Changes from all commits
Commits
Show all changes
2 commits
Select commit
Hold shift + click to select a range
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
47 changes: 47 additions & 0 deletions
47
model/src/main/scala/lucuma/schemas/enums/ProposalAttachmentType.scala
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,47 @@ | ||
// Copyright (c) 2016-2023 Association of Universities for Research in Astronomy, Inc. (AURA) | ||
// For license information see LICENSE or https://opensource.org/licenses/BSD-3-Clause | ||
|
||
package lucuma.schemas.enums | ||
|
||
import cats.Eq | ||
import cats.derived.* | ||
import io.circe.* | ||
import io.circe.generic.semiauto | ||
import lucuma.core.util.Display | ||
import lucuma.core.util.Enumerated | ||
import monocle.Focus | ||
import monocle.Lens | ||
|
||
case class ProposalAttachmentType( | ||
tag: String, | ||
shortName: String, | ||
longName: String | ||
) derives Eq | ||
|
||
object ProposalAttachmentType: | ||
val accept: String = ".pdf" // only PDF files are currently allowed | ||
|
||
given Display[ProposalAttachmentType] = Display.by(_.shortName, _.longName) | ||
|
||
val tag: Lens[ProposalAttachmentType, String] = Focus[ProposalAttachmentType](_.tag) | ||
val shortName: Lens[ProposalAttachmentType, String] = Focus[ProposalAttachmentType](_.shortName) | ||
val longName: Lens[ProposalAttachmentType, String] = Focus[ProposalAttachmentType](_.longName) | ||
|
||
val values: List[ProposalAttachmentType] = | ||
// This is a meta decoder, not a decoder for enum instances (which comes from the `Enumerated` instance) | ||
given Decoder[ProposalAttachmentType] = semiauto.deriveDecoder | ||
|
||
DynamicEnums.parsedEnums | ||
.downField("proposalAttachmentTypeMeta") | ||
.as[List[ProposalAttachmentType]] match | ||
case Left(err) => err.printStackTrace; throw err | ||
case Right(json) => json | ||
|
||
// The givens are apparently (probably) constructed lazily. | ||
// See https://alexn.org/blog/2022/05/11/implicit-vs-scala-3-given/ | ||
// We want to fail immediately if there is a problem, so we'll reference | ||
// the enumerated givens here. | ||
Enumerated[ProposalAttachmentType] | ||
|
||
given Enumerated[ProposalAttachmentType] = | ||
Enumerated.from(values.head, values.tail: _*).withTag(_.tag) |
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I wonder if we can abstract away the common logic of all dynamic enums.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
We might be able to. 🤔 I'll probably have to add
Partner
at some point soon. I'll look at it then.