<samp id="e4iaa"><tbody id="e4iaa"></tbody></samp>
<ul id="e4iaa"></ul>
<blockquote id="e4iaa"><tfoot id="e4iaa"></tfoot></blockquote>
    • <samp id="e4iaa"><tbody id="e4iaa"></tbody></samp>
      <ul id="e4iaa"></ul>
      <samp id="e4iaa"><tbody id="e4iaa"></tbody></samp><ul id="e4iaa"></ul>
      <ul id="e4iaa"></ul>
      <th id="e4iaa"><menu id="e4iaa"></menu></th>

      COMP 315代做、代寫Java/c++編程語言

      時間:2024-05-02  來源:  作者: 我要糾錯



      Assignment 2: Typescript and React
      COMP 315: Cloud Computing for E-Commerce
      April 27, 2024
      1 Introduction
      A reactive website will scale and reorder elements to suit the screen size of the device being used to access it. A
      dynamic website will update the elements of the page without the need for a full reload. In this assignment you
      will expand upon a skeleton program in order to build a dynamic and reactive e-commerce front end website.
      2 Learning outcomes
      By the end of this assignment, you will:
      • Be able to implement functions using Typescript.
      • Be familiar with how to use React components and hooks.
      • Have a template website that you could expand upon for a portfolio piece.
      3 Problem description
      For this task, you have been provided with a skeleton website, as well as the assets to populate it with. At
      the moment the site displays the: name, picture, rating, and price of a collection of items for sale. If you type
      into the search bar, it will only display items that have your search term within their name. You must add the
      following functionality:
      • An indicator showing the number of search results or products available.
      • Sorting the items by: name, price, or rating.
      • The ability to show only in stock items in the search results.
      • Adding or removing items from the shopping basket.
      • A total cost of products in the shopping basket.
      4 Initial setup
      The skeleton code has been provided for you, which is a basic e-commerce website similar to the one shown in
      lectures. Ensure that you have Node.js installed on your computer, this should come with V ite. Download
      the zip file of this code and extract it to a suitable place on your computer. Navigate to that folder in your
      terminal, and type npm install. Once this installation has completed, type in npm run dev, which should host
      the website locally for you. Take the localhost address shown in the output and type it into your browser to
      see the website. There are 4 JSON files included in the ’Assets’ folder, which are random products 1, 100, 150,
      and 175. Each of these JSON files contains a list of products to be shown on the website. Each product has
      the attributes outlined in Table 1, with the images being generated using Adobe Firefly.
      1
      Attribute name Note
      ID This is a unique identifier for each product, and is an integer
      name The name for each product.
      price The price of the product in pounds.
      category This is the general category of the product.
      quantity The number of this product that is currently available in stock. This is a non-negative
      integer.
      rating This is a real number rating of the product between 0 and 5.
      image link The file location of the promotional image.
      Table 1: The attributes that are stored for each product
      5 Developing the website
      5.1 The results indicator
      When searching for products, it is often useful to know exactly how many products the current search has
      returned. This can help make the website feel more reactive. In the results − indicator paragraph tag, add
      a notification about how many results or products the current search query has returned. If the search bar
      is empty, then the the output should be nP roducts where n is the number of products. If there is only a
      single product then the output should be 1P roduct. If the search bar is not empty, then the output should be
      nResults where n is the number of products returned by the search query. If there is only a single product
      returned by the query, then it should say 1Result. If there are no results returned by a query then the output
      should be Nosearchresultsfound.
      5.2 Enhance search functionality
      When looking at a list of products, a useful feature is being able to sort them by some attribute such as price
      or rating. Add functionality to the select tag inside of the search − bar, so changing the selected option will
      result in that form of sorting being applied to the results. Once this task has been completed, add the following
      functionality to the inStock checkbox input. When this checkbox is ticked, the results should only include
      products that have a quantity larger than 0. Hint: this can be accomplished by using a combination of a state
      and a hook.
      5.3 Adding to the shopping basket
      Each product currently has a button underneath that says ’Add to basket’. Update this code so that if the
      quantity available of the product is 0, the button instead says ’Out of stock’ and is disabled. Add a function
      to the ’Add to basket’ button that passes the information to a shopping basket variable in App.tsx. This
      variable should be a list of type BasketItem. Adding multiple instances of the same product should increase
      the quantity property of the relevant basket instance. Do not worry about disabling the product’s button if
      the quantity added to the basket is more than the quantity available. Hint: The parent/child example given in
      Tutorial 4 - question 7 can give you a good starting point.
      5.4 Visualising the basket
      Now that the data about the basket is being collected, we should visualise it for the user. If there are no items
      in the basket then the shopping − area div should contain a paragraph text saying ’Your basket is empty’. If
      the shopping basket variable contains a product, then the shopping −area div should contain that information.
      Each item in the basket should be surrounded by a div with the class ’shopping-row’, and a suitable key such as
      the name of the item. Inside of that div there should be another div with the class ’shopping-information’, and
      a button with ’Remove’ text. The ’shopping-information’ div should contain a paragraph tag which shows the
      information about the product in the format [P roductname]([P roductprice]) − [P roductquantity]. When the
      ’Remove’ button is pressed, then the quantity of that product in the basket should be reduced by 1. If pressing
      that button reduces the quantity of the product to 0, then that item should be removed from the shopping
      basket. At the bottom of the shopping −area div should be a paragraph tag with the total cost of the shopping
      basket. This should be in the form of T otal : [T otalbasketcost]. This value should be shown to 2 decimal places.
      2
      6 Marking
      Your completed assignment will be submitted through the Canvas submission system. This will account for
      10% of your overall module score. You may use any library that comes with a default installation of Node.js.
      Each variable should have the appropriate type, if the ’any’ type is required than a comment must be included
      that justifies it’s use. This rule is in place to encourage the use of Typescript type checking instead of just
      Javascript. Your work will be submitted to an automatic plagiarism/collusion detection system, and those exceeding a threshold will be reported to the Academic Integrity Officer for investigation regarding adhesion to the
      university’s policy https://www.liverpool.ac.uk/media/livacuk/tqsd/code-of-practice-on-assessment/appendix
      L cop assess.pdf.
      7 Deadline
      The deadline is 23:59 GMT Sunday the 12th of May 2024. Late submissions will have the typical
      5% penalty applied for each day late, up to 5 days. Submissions after this time will not be marked. https:
      //www.liverpool.ac.uk/aqsd/academic-codes-of-practice/code-of-practice-on-assessment/
      8 Expansions for a portfolio piece
      If you decided to expand upon this short example in order to create a portfolio piece, which I stress is not
      something you have to do for the assignment, then you will need to make several changes. My suggestion for
      these changes would be:
      • Redesign the site to be more visually appealing, focus on the reactivity and showing off that it works on
      all form factors of device.
      • Use Next.js to add individual pages for each product. This will also mean that you’ll have to look into
      how to allow the user to return to the search results.
      • Connect to a database, such as Neo4j, as this is crucial in showing you understand role of the front end

      .請加QQ:99515681  郵箱:99515681@qq.com   WX:codinghelp


















       

      標簽:

      掃一掃在手機打開當前頁
    • 上一篇:代寫COM6511、代做Python設計程序
    • 下一篇:代寫program、代做c/c++,Python語言編程
    • 無相關信息
      昆明生活資訊

      昆明圖文信息
      蝴蝶泉(4A)-大理旅游
      蝴蝶泉(4A)-大理旅游
      油炸竹蟲
      油炸竹蟲
      酸筍煮魚(雞)
      酸筍煮魚(雞)
      竹筒飯
      竹筒飯
      香茅草烤魚
      香茅草烤魚
      檸檬烤魚
      檸檬烤魚
      昆明西山國家級風景名勝區
      昆明西山國家級風景名勝區
      昆明旅游索道攻略
      昆明旅游索道攻略
    • NBA直播 短信驗證碼平臺 幣安官網下載 歐冠直播 WPS下載

      關于我們 | 打賞支持 | 廣告服務 | 聯系我們 | 網站地圖 | 免責聲明 | 幫助中心 | 友情鏈接 |

      Copyright © 2025 kmw.cc Inc. All Rights Reserved. 昆明網 版權所有
      ICP備06013414號-3 公安備 42010502001045

      主站蜘蛛池模板: 亚洲精品无码Av人在线观看国产| 中文无码AV一区二区三区| 无码137片内射在线影院| 人妻丰满熟妇AV无码区HD| 台湾无码AV一区二区三区| 无码视频在线观看| 免费无码AV片在线观看软件| 一本一道中文字幕无码东京热 | 久久国产精品无码HDAV| 亚洲av中文无码乱人伦在线观看| 久久精品日韩av无码| 中文字幕无码免费久久9一区9| 亚洲av无码不卡一区二区三区| 无码丰满少妇2在线观看| 亚洲精品av无码喷奶水糖心| 中文字幕精品无码亚洲字| 亚洲av无码日韩av无码网站冲| 中文字幕久无码免费久久| 日韩毛片免费无码无毒视频观看 | 午夜麻豆国产精品无码| 精品无码久久久久久久久久| 无码人妻丰满熟妇啪啪网站| 丰满少妇人妻无码| 精品无码国产AV一区二区三区| 无码无套少妇毛多18p| 熟妇人妻中文a∨无码| 亚洲爆乳少妇无码激情| 精品无码成人片一区二区98| 丰满日韩放荡少妇无码视频| 亚洲Av无码乱码在线znlu| 久久亚洲精品无码av| 高清无码v视频日本www| 无码人妻精品一区二区三区99仓本| 伊人久久大香线蕉无码麻豆| 无码一区二区三区免费视频| 亚洲AV无码一区二区三区牛牛| 无码人妻少妇久久中文字幕蜜桃 | 无码精品人妻一区二区三区人妻斩 | 亚洲A∨无码一区二区三区| 国产激情无码一区二区三区| 国产午夜无码视频免费网站|