Open
Description
Description:
The View Helper design pattern aims to separate the business logic from the presentation layer by using helper components to handle processing and formatting. This enhances the maintainability and modularity of the code by promoting a clear separation of concerns.
Main Elements of the Pattern:
- View Helper: A component that performs complex formatting or data processing tasks.
- Controller: Directs the request to the appropriate View Helper and subsequently to the view.
- View: Renders the final output using data prepared by the View Helper.
References:
Acceptance Criteria:
- Create a View Helper class that handles data formatting or processing tasks.
- Ensure the Controller directs requests to the appropriate View Helper.
- Implement a view that utilizes the data provided by the View Helper to render the final output.
Metadata
Metadata
Assignees
Projects
Status
In Progress
Activity
Linly1080 commentedon Apr 23, 2022
Hi, I'd like to work on this issue. Could it be assigned to me if still available?
iluwatar commentedon Sep 10, 2022
Ok @Linly1080
Linly1080 commentedon Sep 17, 2022
@iluwatar sorry, I have no time to do the work now.
24 remaining items
iluwatar#1263 - creating new module for view-helper
iluwatar#1263 - creating Product and ProductViewModel
iluwatar#1263 - creating interfaces for View and ViewHelper
iluwatar#1263 - creating ProductViewHelper and its test
iluwatar#1263 - creating Console View for Product
iluwatar#1263 - creating ProductController
iluwatar#1263 - creating main App and its test
iluwatar#1263 - adding license header
iluwatar#1263 - keeping module in alphabetical order
iluwatar#1263 - creating README and diagrams
iluwatar#1263 apply spotless