Answered step by step
Verified Expert Solution
Question
1 Approved Answer
Work on this assignment individually (This is NOT a group assignment). You must submit your source code as one ZIP archive containing both parts of
Work on this assignment individually (This is NOT a group assignment). You must submit your source code as one ZIP archive containing both parts of the assignment to the Assignment 1 submission link on the unit site. If the file size is too large to upload to the submission link, please send the ZIP file via email or a method specified by your tutor. Note that marks will be deducted for poorly structured or uncommented code. All source code files submitted must include title comments that at least identify the author and the assignment part. The separate parts of the assignment are to be submitted in separate subdirectories (e.g., Part 1, Part 2, etc.) submissions that ignore this instruction and leave all assignment files in one directory will be penalised. Please note that this assignment will be due after the weekly modules have covered the last of the required materials. Do not leave this assignment to the last minute you can start on it while concepts are fresh in your mind. You may start Part 1 before you have studied all of the required materials. If you require an extension, you must apply to your tutor before the due date to be considered. Unless an extension is approved, there is a late submission penalty. This assignment requires you to develop an application using TypeScript for Part 1 and Angular for Part 2 to demonstrate your knowledge of the TypeScript language and Angular framework. Your apps should be standalone apps without server contact for data. The app will not save data after the browser window is closed, but you will need to maintain a JavaScript structure (e.g., JavaScript object, Class, Interface) so that changes made remain while the browser window is open. Part 2 can be an expansion of Part 1 though you can start again from scratch if you wish. It is recommended that you save your Part 1 before you start modifying it for Part 2. For lesser marks, you can divide your assignment into several smaller HTML pages to demonstrate the different aspects without having everything working together. This is not the preferred method. Part 1 Basic TypeScript App (18 marks) The aim is to develop a simple TypeScript app for a fitness centre to maintain a small database of gym member information while the browser window is open. You can initialise your app with hard-coded data or start with an empty data structure. Types are important in your code; however, there is no need to type everything, and the general applicability of typing is as you have seen in Module 2 of the unit. For example, there is no need to define a function type in a function definition as TypeScript, and the reader can easily deduce the type from the function definition. You will have to type parameters and return values, though. Marks may be deducted for too few type definitions, i.e., writing JavaScript instead of TypeScript. The member data has the following fields:
Other Encouraged Attribution Required Not acceptable Ask your tutor Be aware that if you do get help from one of the red sources, you will be reported for academic misconduct, which may have serious penalties. Please visit the following link for the guidelines: https://bit.ly/scuAcadMisconduct
- Member ID *
- Full name *
- Date of birth *
- Gender (Female, Male, Unspecified) *
- Membership type (Basic, Premium, Corporate, Student, Day pass) *
- Membership start day *
- Contact number *
- Email *
- Residential address *
- Emergency contact number *
- Medical condition
- Having all options implemented for adding, deleting, displaying (including favourites), searching and editing members (4 mark).
- The app should meet all data requirements stated in Part 1 (1 mark).
- Having a working Angular app with appropriate Angular coding (3 marks). Minimally, the app will have one component and one module, but you will need more components to implement the following requirements.
- Using Angular forms (3 marks). This is separate from the multipage facility. If you just add Angular code to the one-page TypeScript app from Part 1, you have not used Angular forms. There will be no marks for only HTML form elements.
- The multipage facility using the Angular router (3 marks). This includes the navigation between pages, error indicators, and no broken links. Your app should have at least four (4) pages.
- Add at least one help button on each page that shows appropriate help messages. You should make interaction with the help facility as easy as possible. Also, add helpful information, including error messages, when data entry is incorrect (3 marks).
Lecturer | Tutors | Online Forums | Relatives |
Students outside unit | Hired coders | Classmates | Private Tutors |
Step by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started