-
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 #6 from hmrc/ADR-743
ADR-743 Add product name page
- Loading branch information
Showing
16 changed files
with
470 additions
and
6 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,71 @@ | ||
/* | ||
* 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.ProductNameFormProvider | ||
|
||
import javax.inject.Inject | ||
import models.{Mode, UserAnswers} | ||
import navigation.Navigator | ||
import pages.ProductNamePage | ||
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.ProductNameView | ||
|
||
import scala.concurrent.{ExecutionContext, Future} | ||
|
||
class ProductNameController @Inject() ( | ||
override val messagesApi: MessagesApi, | ||
cacheConnector: CacheConnector, | ||
navigator: Navigator, | ||
identify: IdentifierAction, | ||
getData: DataRetrievalAction, | ||
formProvider: ProductNameFormProvider, | ||
val controllerComponents: MessagesControllerComponents, | ||
view: ProductNameView | ||
)(implicit ec: ExecutionContext) | ||
extends FrontendBaseController | ||
with I18nSupport { | ||
|
||
val form = formProvider() | ||
|
||
def onPageLoad(mode: Mode): Action[AnyContent] = (identify andThen getData) { implicit request => | ||
val preparedForm = request.userAnswers.flatMap(_.get(ProductNamePage)) match { | ||
case None => form | ||
case Some(value) => form.fill(value) | ||
} | ||
|
||
Ok(view(preparedForm, mode)) | ||
} | ||
|
||
def onSubmit(mode: Mode): Action[AnyContent] = (identify andThen getData).async { implicit request => | ||
form | ||
.bindFromRequest() | ||
.fold( | ||
formWithErrors => Future.successful(BadRequest(view(formWithErrors, mode))), | ||
value => | ||
for { | ||
updatedAnswers <- | ||
Future.fromTry(request.userAnswers.getOrElse(UserAnswers(request.userId)).set(ProductNamePage, value)) | ||
_ <- cacheConnector.set(updatedAnswers) | ||
} yield Redirect(navigator.nextPage(ProductNamePage, 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
/* | ||
* 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 javax.inject.Inject | ||
|
||
import forms.mappings.Mappings | ||
import play.api.data.Form | ||
|
||
class ProductNameFormProvider @Inject() extends Mappings { | ||
|
||
def apply(): Form[String] = | ||
Form( | ||
"value" -> text("productName.error.required") | ||
.verifying(maxLength(50, "productName.error.length")) | ||
) | ||
} |
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 ProductNamePage extends QuestionPage[String] { | ||
|
||
override def path: JsPath = JsPath \ toString | ||
|
||
override def toString: String = "productName" | ||
} |
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,41 @@ | ||
/* | ||
* 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.ProductNamePage | ||
import play.api.i18n.Messages | ||
import play.twirl.api.HtmlFormat | ||
import uk.gov.hmrc.govukfrontend.views.viewmodels.summarylist.SummaryListRow | ||
import viewmodels.govuk.summarylist._ | ||
import viewmodels.implicits._ | ||
|
||
object ProductNameSummary { | ||
|
||
def row(answers: UserAnswers)(implicit messages: Messages): Option[SummaryListRow] = | ||
answers.get(ProductNamePage).map { answer => | ||
SummaryListRowViewModel( | ||
key = "productName.checkYourAnswersLabel", | ||
value = ValueViewModel(HtmlFormat.escape(answer).toString), | ||
actions = Seq( | ||
ActionItemViewModel("site.change", routes.ProductNameController.onPageLoad(CheckMode).url) | ||
.withVisuallyHiddenText(messages("productName.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
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
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,63 @@ | ||
@* | ||
* 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.{SectionHeading, PageHeading} | ||
|
||
@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("productName.title"))) { | ||
|
||
@if(form.errors.nonEmpty) { | ||
@govukErrorSummary(ErrorSummaryViewModel(form)) | ||
} | ||
|
||
@sectionHeading( | ||
id = "product-name-section", | ||
text = messages("section.alcoholDutyReturn"), | ||
) | ||
|
||
@pageHeading(messages("productName.heading")) | ||
|
||
<p class="govuk-body">@messages("productName.p1")</p> | ||
|
||
<p class="govuk-body">@messages("productName.p2")</p> | ||
|
||
@formHelper(action = routes.ProductNameController.onSubmit(mode)) { | ||
|
||
@govukInput( | ||
InputViewModel( | ||
field = form("value"), | ||
label = LabelViewModel(messages("productName.heading")).asVisuallyHidden() | ||
) | ||
.withWidth(Fixed30) | ||
) | ||
|
||
@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
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
Oops, something went wrong.