1. Homepage
  2. Programming
  3. PROG2005 PROGRAMMING MOBILE SYSTEMS - Assessment 3: Programming project - Ionic

PROG2005 PROGRAMMING MOBILE SYSTEMS - Assessment 3: Programming project - Ionic

Engage in a Conversation
SCUPROG2005PROGRAMMING MOBILE SYSTEMSIonicJavascript

PROG2005 PROGRAMMING MOBILE SYSTEMS CourseNana.COM

Summary CourseNana.COM

Submission
CourseNana.COM

Via Blackboard. You will need to submit your code for tasks by writing your code in Ionic. You also need to submit a recorded video and a short report. For more details, please read the submission instructions below. CourseNana.COM

Unit Learning Outcomes CourseNana.COM

This assessment task maps to the following ULOs: CourseNana.COM

  • ULO1: contrast mobile device architectures, interfaces, operating systems, and common middleware technology CourseNana.COM

  • ULO2: apply user-centred techniques to create application interfaces CourseNana.COM

  • ULO3: apply modern development frameworks to create standalone and web-based mobile applications in a team CourseNana.COM

  • ULO4: analyse and explain privacy and security requirements specific to mobile applications CourseNana.COM

Assessment 3 Programming project - Ionic Group submission (max of 3 members) Monday 15 April 11:59 pm AEST (Week 7) Refer to the assessment details below CourseNana.COM

40% (30% group, 10% Individual) CourseNana.COM

Rationale CourseNana.COM

In this assessment, you will dive deep into the world of mobile application development. Through this project, you'll get hands-on experience with the Ionic framework, crucial for building modern, responsive mobile apps. This practical approach allows you to apply theoretical knowledge to real- world scenarios, enhancing your skills in developing user-centred, functional mobile applications. CourseNana.COM

Task Description CourseNana.COM

In this assessment, you will develop a cross-platform application, utilising the Ionic framework. This Ionic application would be an extension of the multipage Angular application from Assessment 2, enhancing its functionalities further with Ionic. CourseNana.COM

The application must be strictly implemented using the Tabs Ionic template. To ensure they function correctly across all features, especially those that are not supported by web browsers, you should conduct thorough testing on actual hardware devices or emulators. CourseNana.COM

PROG2005 Assessment 3 CourseNana.COM

This is a group assessment, and you should work in a team of max of THREE (3) students (your team and members must be approved by your tutor). This assignment is worth 40% of your overall mark, from which 30% is allocated to your group work and 10% to your individual work in the group. Your marker will adjust the 10% mark according to your contribution in developing the project, reflected in the Microsoft word document. Although the assignment is completed in a team, all team members must submit the final and identical version of the assignment projects individually. CourseNana.COM

Along with the application files, you are also required to submit a Microsoft Word document, a time log, for all time spent on this assignment. It should clearly demonstrate the following: CourseNana.COM

  • How long was each of the team members working on this assignment, and when (date/time) were they working on the assignment. If you were working on the tasks together in the same location, indicate this clearly. CourseNana.COM

  • For each such interval recorded in the log, what particular task of the application were you working on. CourseNana.COM

  • If your group members are not doing their share of the work, and this cannot be resolved, please contact your tutor or the UA. The marker will adjust marks accordingly for those not doing their share of the work. CourseNana.COM

    Task Instructions CourseNana.COM

    Ionic app to manage an art gallery database CourseNana.COM

  • Objective: Develop an Ionic multipage app that uses Ionic UI components for an art gallery to maintain a remote database of artist information while the app is running on a mobile device or in a browser window. The app will access a remote website using RESTful operations (see below) to create, edit and delete records on the website (To implement the RESTful operations, you will need to incorporate concepts learned in the HTTP, AJAX and Rest topic in Module 4 and 6). You can initialise your app with hard-coded data, or you can start with an empty data structure. CourseNana.COM

  • Initialization: Begin with either hardcoded data or an empty structure. Your code must use types effectively, particularly for parameters and return values. CourseNana.COM

  • Data Fields: Include artist ID, name, DOB, gender (“Female”, “Male”, “Unspecified”), artwork type (“painting”, “sculpture”, “photograph”, “video art”, “digital art”, “printmaking”), contact info, exhibition date, special notes, and featured artist. All fields, except 'Special notes,' require values. The ‘Gender’ and ‘Artwork type’ field values must be one of the options shown. An artist ID is unique for each artist. An artist can be a featured artist or a regular artist, so find a way to specify an artist as a featured artist. The app must use “featured artist” field just to distinguish between featured and regular artists. CourseNana.COM

    The database attributes corresponding to these data fields and their types specified in the remote database are below, you may need to consider it while adding and updating artist records. CourseNana.COM

    artist_id: int, auto incrementing; name: varchar; dob: date; gender: enum, containing the values “Female”, “Male”, “Unspecified”; artwork_type: enum, containing values “painting”, “sculpture”, “photograph”, “video art”, “digital art”, “printmaking”; contact_info: varchar; CourseNana.COM

PROG2005 Assessment 3 CourseNana.COM

exhibition_date: date; is_featured_artist: int CourseNana.COM

To summarise, the types of data your app will send to the REST API will be number and string. The data fields associated with a “date” type must follow a "YYYY-MM-DD" format. CourseNana.COM

Features:
o Home page with greetings and your names as app authors
o A page for listing all artists
o A page for adding new artists
o A page for searching existing artists (reading a single record) with name
o A page for listing the featured artists
o Apageforediting/updatingexistingartistrecords.Thiswillalsoallowthedeletionof CourseNana.COM

an artist from the database using name
o A page that presents text explaining these privacy and security requirements. CourseNana.COM

Requirements: Your app will have help information that appears over the current page when requested (each page requires a help widget), and the delete operation will require a prompt to confirm the delete. This prompt should be an Ionic dialogue (not a JavaScript alert!). CourseNana.COM

You must have at about seven pages on your app, and since you will use the tabs template, you must change the icons to be appropriate. Your app should function properly, look professional, and be user-friendly. Note that some pages in your app may not be accessed through the tabs. CourseNana.COM

Use appropriate Ionic user interface components to implement the app. Several things are missing here from the usual app. For example, no splash screen is requested and no media or other native interfaces (e.g. pictures of artists). You can add them if you wish, but these have not been added as requirements to simplify the app. and the RESTful operations are as follows: CourseNana.COM

GET - get all the artist data as a JSON response (an array) endpoint/ CourseNana.COM

GET - get data for an artist named “name” endpoint/name CourseNana.COM

PUT - updates an existing record of the artist named “name” on the endpoint/name database with the PUT body, which is a JSON format artist CourseNana.COM

record. CourseNana.COM

POST - creates a new artist in the database using JSON formatted artist endpoint/ record. CourseNana.COM

DELETE - removes the record with the given name. Note that removal of endpoint/name the artist named “Terry” is forbidden (error will be returned) so that students will find at least one record on the server. CourseNana.COM

PROG2005 Assessment 3 CourseNana.COM

Successful deletion of other records must return a proper message. CourseNana.COM

Code Structure: Maintain clean and commented code. CourseNana.COM

This assignment will be due after the weekly modules have covered the last of the required materials and the relevant tutorial and workshop sessions. Do not leave this assignment to the last minute complete the relevant tasks of the assignment while concepts are fresh in your mind. CourseNana.COM

If you are experiencing personal or/and difficult situations, you must apply for a Special Consideration (see the link below) and inform your tutor before the due date to be considered. Unless an extension is approved, there is a late submission penalty. CourseNana.COM

Resources CourseNana.COM

Use the following resources to support you when working on this assessment. CourseNana.COM

Get in Touch with Our Experts

WeChat WeChat
Whatsapp WhatsApp
SCU代写,PROG2005代写,PROGRAMMING MOBILE SYSTEMS代写,Ionic代写,Javascript代写,SCU代编,PROG2005代编,PROGRAMMING MOBILE SYSTEMS代编,Ionic代编,Javascript代编,SCU代考,PROG2005代考,PROGRAMMING MOBILE SYSTEMS代考,Ionic代考,Javascript代考,SCUhelp,PROG2005help,PROGRAMMING MOBILE SYSTEMShelp,Ionichelp,Javascripthelp,SCU作业代写,PROG2005作业代写,PROGRAMMING MOBILE SYSTEMS作业代写,Ionic作业代写,Javascript作业代写,SCU编程代写,PROG2005编程代写,PROGRAMMING MOBILE SYSTEMS编程代写,Ionic编程代写,Javascript编程代写,SCUprogramming help,PROG2005programming help,PROGRAMMING MOBILE SYSTEMSprogramming help,Ionicprogramming help,Javascriptprogramming help,SCUassignment help,PROG2005assignment help,PROGRAMMING MOBILE SYSTEMSassignment help,Ionicassignment help,Javascriptassignment help,SCUsolution,PROG2005solution,PROGRAMMING MOBILE SYSTEMSsolution,Ionicsolution,Javascriptsolution,