-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #8 from hmrc/ADR-744
ADR-744 Alcohol by volume page
- Loading branch information
Showing
18 changed files
with
760 additions
and
52 deletions.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,75 @@ | ||
/* | ||
* Copyright 2023 HM Revenue & Customs | ||
* | ||
* Licensed under the Apache License, Version 2.0 (the "License"); | ||
* you may not use this file except in compliance with the License. | ||
* You may obtain a copy of the License at | ||
* | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, software | ||
* distributed under the License is distributed on an "AS IS" BASIS, | ||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
* See the License for the specific language governing permissions and | ||
* limitations under the License. | ||
*/ | ||
|
||
package controllers | ||
|
||
import connectors.CacheConnector | ||
import controllers.actions._ | ||
import forms.AlcoholByVolumeQuestionFormProvider | ||
|
||
import javax.inject.Inject | ||
import models.Mode | ||
import navigation.Navigator | ||
import pages.AlcoholByVolumeQuestionPage | ||
import play.api.i18n.{I18nSupport, MessagesApi} | ||
import play.api.mvc.{Action, AnyContent, MessagesControllerComponents} | ||
import uk.gov.hmrc.play.bootstrap.frontend.controller.FrontendBaseController | ||
import views.html.AlcoholByVolumeQuestionView | ||
|
||
import scala.concurrent.{ExecutionContext, Future} | ||
|
||
class AlcoholByVolumeQuestionController @Inject() ( | ||
override val messagesApi: MessagesApi, | ||
cacheConnector: CacheConnector, | ||
navigator: Navigator, | ||
identify: IdentifierAction, | ||
getData: DataRetrievalAction, | ||
requireData: DataRequiredAction, | ||
formProvider: AlcoholByVolumeQuestionFormProvider, | ||
val controllerComponents: MessagesControllerComponents, | ||
view: AlcoholByVolumeQuestionView | ||
)(implicit ec: ExecutionContext) | ||
extends FrontendBaseController | ||
with I18nSupport { | ||
|
||
val form = formProvider() | ||
|
||
def onPageLoad(mode: Mode): Action[AnyContent] = (identify andThen getData andThen requireData) { implicit request => | ||
val preparedForm = request.userAnswers.get(AlcoholByVolumeQuestionPage) match { | ||
case None => form | ||
case Some(value) => form.fill(value) | ||
} | ||
|
||
Ok(view(preparedForm, mode)) | ||
} | ||
|
||
def onSubmit(mode: Mode): Action[AnyContent] = (identify andThen getData andThen requireData).async { | ||
implicit request => | ||
form | ||
.bindFromRequest() | ||
.fold( | ||
formWithErrors => Future.successful(BadRequest(view(formWithErrors, mode))), | ||
value => | ||
for { | ||
updatedAnswers <- | ||
Future.fromTry( | ||
request.userAnswers.set(AlcoholByVolumeQuestionPage, value) | ||
) | ||
_ <- cacheConnector.set(updatedAnswers) | ||
} yield Redirect(navigator.nextPage(AlcoholByVolumeQuestionPage, mode, updatedAnswers)) | ||
) | ||
} | ||
} |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,36 @@ | ||
/* | ||
* Copyright 2023 HM Revenue & Customs | ||
* | ||
* Licensed under the Apache License, Version 2.0 (the "License"); | ||
* you may not use this file except in compliance with the License. | ||
* You may obtain a copy of the License at | ||
* | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, software | ||
* distributed under the License is distributed on an "AS IS" BASIS, | ||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
* See the License for the specific language governing permissions and | ||
* limitations under the License. | ||
*/ | ||
|
||
package forms | ||
|
||
import forms.mappings.Mappings | ||
import javax.inject.Inject | ||
import play.api.data.Form | ||
|
||
class AlcoholByVolumeQuestionFormProvider @Inject() extends Mappings { | ||
|
||
def apply(): Form[BigDecimal] = | ||
Form( | ||
"value" -> bigDecimal( | ||
"alcoholByVolumeQuestion.error.required", | ||
"alcoholByVolumeQuestion.error.nonNumeric", | ||
"alcoholByVolumeQuestion.error.twoDecimalPlaces" | ||
) | ||
.verifying(minimumValue(BigDecimal(0.01), "alcoholByVolumeQuestion.error.minimumRequired")) | ||
.verifying(maximumValue(BigDecimal(100), "alcoholByVolumeQuestion.error.maximumRequired")) | ||
) | ||
|
||
} |
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
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,26 @@ | ||
/* | ||
* Copyright 2023 HM Revenue & Customs | ||
* | ||
* Licensed under the Apache License, Version 2.0 (the "License"); | ||
* you may not use this file except in compliance with the License. | ||
* You may obtain a copy of the License at | ||
* | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, software | ||
* distributed under the License is distributed on an "AS IS" BASIS, | ||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
* See the License for the specific language governing permissions and | ||
* limitations under the License. | ||
*/ | ||
|
||
package pages | ||
|
||
import play.api.libs.json.JsPath | ||
|
||
case object AlcoholByVolumeQuestionPage extends QuestionPage[BigDecimal] { | ||
|
||
override def path: JsPath = JsPath \ toString | ||
|
||
override def toString: String = "alcoholByVolumeQuestion" | ||
} |
40 changes: 40 additions & 0 deletions
40
app/viewmodels/checkAnswers/AlcoholByVolumeQuestionSummary.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,40 @@ | ||
/* | ||
* Copyright 2023 HM Revenue & Customs | ||
* | ||
* Licensed under the Apache License, Version 2.0 (the "License"); | ||
* you may not use this file except in compliance with the License. | ||
* You may obtain a copy of the License at | ||
* | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, software | ||
* distributed under the License is distributed on an "AS IS" BASIS, | ||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
* See the License for the specific language governing permissions and | ||
* limitations under the License. | ||
*/ | ||
|
||
package viewmodels.checkAnswers | ||
|
||
import controllers.routes | ||
import models.{CheckMode, UserAnswers} | ||
import pages.AlcoholByVolumeQuestionPage | ||
import play.api.i18n.Messages | ||
import uk.gov.hmrc.govukfrontend.views.viewmodels.summarylist.SummaryListRow | ||
import viewmodels.govuk.summarylist._ | ||
import viewmodels.implicits._ | ||
|
||
object AlcoholByVolumeQuestionSummary { | ||
|
||
def row(answers: UserAnswers)(implicit messages: Messages): Option[SummaryListRow] = | ||
answers.get(AlcoholByVolumeQuestionPage).map { answer => | ||
SummaryListRowViewModel( | ||
key = "alcoholByVolumeQuestion.checkYourAnswersLabel", | ||
value = ValueViewModel(answer.toString), | ||
actions = Seq( | ||
ActionItemViewModel("site.change", routes.AlcoholByVolumeQuestionController.onPageLoad(CheckMode).url) | ||
.withVisuallyHiddenText(messages("alcoholByVolumeQuestion.change.hidden")) | ||
) | ||
) | ||
} | ||
} |
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,60 @@ | ||
@* | ||
* Copyright 2023 HM Revenue & Customs | ||
* | ||
* Licensed under the Apache License, Version 2.0 (the "License"); | ||
* you may not use this file except in compliance with the License. | ||
* You may obtain a copy of the License at | ||
* | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, software | ||
* distributed under the License is distributed on an "AS IS" BASIS, | ||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
* See the License for the specific language governing permissions and | ||
* limitations under the License. | ||
*@ | ||
|
||
@import viewmodels.InputWidth._ | ||
@import components.{Link, SectionHeading, PageHeading} | ||
@import uk.gov.hmrc.govukfrontend.views.viewmodels.content.Empty | ||
|
||
|
||
@this( | ||
layout: templates.Layout, | ||
formHelper: FormWithCSRF, | ||
govukErrorSummary: GovukErrorSummary, | ||
govukInput: GovukInput, | ||
govukButton: GovukButton, | ||
sectionHeading: SectionHeading, | ||
pageHeading: PageHeading | ||
) | ||
|
||
@(form: Form[_], mode: Mode)(implicit request: Request[_], messages: Messages) | ||
|
||
@layout(pageTitle = title(form, messages("alcoholByVolumeQuestion.title"))) { | ||
|
||
@formHelper(action = routes.AlcoholByVolumeQuestionController.onSubmit(mode), Symbol("autoComplete") -> "off") { | ||
|
||
@if(form.errors.nonEmpty) { | ||
@govukErrorSummary(ErrorSummaryViewModel(form)) | ||
} | ||
@sectionHeading( | ||
id = "draught-relief-question-section", | ||
text = messages("section.alcoholDutyReturn"), | ||
) | ||
|
||
@govukInput( | ||
InputViewModel( | ||
field = form("value"), | ||
label = LabelViewModel(messages("alcoholByVolumeQuestion.heading")).asPageHeading() | ||
) | ||
.withSuffix(PrefixOrSuffix(content = "%")) | ||
.asNumeric() | ||
.withWidth(Fixed10) | ||
) | ||
|
||
@govukButton( | ||
ButtonViewModel("saveAndContinueButton",messages("site.saveAndContinue")) | ||
) | ||
} | ||
} |
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
Oops, something went wrong.