-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmajorProject.html
1021 lines (966 loc) · 36.8 KB
/
majorProject.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<!-- =====STYLES===== -->
<link rel="stylesheet" href="assets/css/styles.css" />
<link rel="stylesheet" href="./assets/css/slideshow.css" />
<link rel="stylesheet" href="./assets/css/modal.css" />
<!-- =====BOX ICONS===== -->
<link
href="https://cdn.jsdelivr.net/npm/boxicons@2.0.5/css/boxicons.min.css"
rel="stylesheet"
/>
<!-- =====MEDIA RESPONSIVE===== -->
<link
rel="stylesheet"
media="screen and (max-width: 767px)"
href="assets/css/ipad.css"
/>
<link
rel="stylesheet"
media="screen and (max-width: 600px)"
href="assets/css/mobile.css"
/>
<!-- =====ICON===== -->
<script
src="https://kit.fontawesome.com/52f9932284.js"
crossorigin="anonymous"
></script>
<title>Portfolio website complete</title>
<!-- =====Fav Icon===== -->
<link rel="icon" href="favicon.ico" />
</head>
<body>
<!--===== HEADER =====-->
<header class="P-header">
<nav class="nav bd-grid">
<div class="logo">
<img src="./assets/img/220614_logo_01.png" alt="" />
</div>
<div class="nav__menu" id="nav-menu">
<ul class="nav__list">
<li class="nav__item">
<a href="index.html" class="nav__link">Home</a>
</li>
<li class="nav__item">
<a href="work.html" class="nav__link active">UX Cases</a>
</li>
<li class="nav__item">
<a href="extras.html" class="nav__link">Extras</a>
</li>
<li class="nav__item">
<a
href="https://drive.google.com/file/d/1a83aieLvWZ04fha9RaJZRF35mjIQBeXi/preview"
class="nav__link"
>Resume</a
>
</li>
</ul>
</div>
<div class="nav__toggle" id="nav-toggle">
<i class="bx bx-menu"></i>
</div>
</nav>
</header>
<!--===== WORK =====-->
<!-- Section Project 1 : Info -->
<section id="" class="">
<div class="container1">
<h1 class="p-Header">MEDIA EQUIP</h1>
<hr class="bottom-line" />
<p class="style-light">
MSc in Creative Digital Media & UX Final Project Development
</p>
<div class="">
<img
src="./assets/majorProject/221212_MainImage_00.png"
alt=""
class=""
/>
</div>
<div class="container1">
<h1 class="p-Header">MEDIA EQUIP</h1>
<hr class="bottom-line" />
<p class="style-light">
UX CASE | UX/UI DESIGN | USERS RESEARCH | USABILITY TESTING |
DEVELOPMENT
</p>
<div class="table1">
<div class="">
<h2>Project Overview</h2>
<p class="text">
This project was created for the inventory room of Technological
University Dublin that students borrow and lend some media
equipment. The aim of the app is to facilate this operation
between administrator and students.
</p>
</div>
<div class="table1-2">
<div class="role">
<div class="">
<h2>My Role</h2>
</div>
<div class="text">
<p>Sole UX/UI and Development</p>
</div>
</div>
<div class="role">
<div class="">
<h2>Tools</h2>
</div>
<div class="text">
<p>
Figma, Visual Studio Code,
<br />
Ionic Framework, Angular, MYSQL
</p>
</div>
</div>
<div class="role">
<div class="">
<h2>Duration</h2>
</div>
<div class="text">
<p>6 months</p>
</div>
</div>
</div>
</div>
</div>
<!-- DESIGN PROCESS-->
<div class="container1">
<h1 class="large-Header">Design Process</h1>
<hr class="bottom-line" />
<div class="table2 icons">
<div>
<div>
<h3 class="colorHeader">Discovery</h3>
</div>
<div class="text">
<p>Qualitative & Quantitative Research</p>
<p>Interview</p>
<p>Benchmark</p>
<p>User Persona</p>
<p>Affinity Diagram</p>
</div>
</div>
<div>
<div>
<h3 class="colorHeader">Ideation</h3>
</div>
<div class="text">
<p>Concepts</p>
<p>User Story Map</p>
<p>User Flow</p>
</div>
</div>
<div>
<div>
<h3 class="colorHeader">Design</h3>
</div>
<div class="text">
<p>UX Concept & Wireframing</p>
<p>UI Concept</p>
<p>Prototype Testing</p>
</div>
</div>
<div>
<div>
<h3 class="colorHeader">Delivery</h3>
</div>
<div class="text">
<p>Building Database</p>
<p>Development</p>
<p>Minimum Viable Product</p>
<p>Usability Testing</p>
</div>
</div>
</div>
</div>
<!-- DESIGN PROCESS-->
<div class="container1">
<h1 class="large-Header">Discovery</h1>
<hr class="bottom-line" />
<div>
<h2 class="m-Header">Interviews</h2>
<div>
<h3>Interview the Administrator</h3>
<p class="text">
This interview was made with the administrator who was
responsible for the inventory room. The interview took 35
minutes nearly. Almost 10 questions were asked. The questions
were separated into three sections. Due to this interview, some
valuable data was acquired in order to implement these
objectives on the application.
</p>
</div>
</div>
<div class="text pad-right">
<div>
<p>
<span>Time management</span>, return products on the right time.
</p>
<p><span>Control the process</span></p>
<p>
<span>Setting some priorities</span> , depending of the level of
the students, and their modules.
</p>
<p>
<span>Organize media equipment</span>, combine more than one
product (items), creating kits.
</p>
<p>
<span>Presenting information</span>, providing more information
to manage some restrictions.
</p>
</div>
</div>
<div class="text">
<div>
<h3>Interview Students</h3>
<p>
Due to this interview, some data regarding the students'
expectations and struggle while borrowing some equipment were
valuable data to indicate what feature should be part of the
App.
</p>
</div>
</div>
<div class="text pad-right">
<p>
<span>Accessible</span>, browsing equipment before going there.
</p>
<p><span>Control the process</span></p>
<p>
<span>Organization</span> of profuct, type of camera, and combined
kit.
</p>
<p>
<span>Availablity of products</span> seeing whether what equipment
is available or not.
</p>
</div>
<div class="">
<h1 class="m-Header">User Persona</h1>
<div class="text">
<div>
<p>
User personas are based on the initial user survey, and are
separated into two sections, which are general users who study
photography and filming generally, and another section
studying other fields.
</p>
</div>
</div>
<!-- <div class="personaImg">
<div class="text border-left pad-right">
<h3>Other Users</h3>
</div>
<img
src="/melisPortfolio/assets/majorProject/221212_Persona_00-2.png"
alt=""
/>
</div> -->
<!-- Slideshow container -->
<div class="slideshow-container">
<!-- Full-width images with number and caption text -->
<div class="mySlides fade">
<h3>General Users</h3>
<img
src="./assets/majorProject/221212_Persona_00-1.png"
style="width: 100%"
/>
<div class="captionText">User Persona 1</div>
<!-- <div class="numbertext">1 / 2</div> -->
</div>
<div class="mySlides fade">
<!-- <div class="numbertext">2 / 2</div> -->
<h3>Other Users</h3>
<img
src="./assets/majorProject/221212_Persona_00-2.png"
style="width: 100%"
/>
<div class="captionText">User Persona 2</div>
</div>
<!-- Next and previous buttons -->
<a class="prev" onclick="plusSlides(-1)">❮</a>
<a class="next" onclick="plusSlides(1)">❯</a>
</div>
<br />
<!-- The dots/circles -->
<div style="text-align: center">
<span class="dot" onclick="currentSlide(1)"></span>
<span class="dot" onclick="currentSlide(2)"></span>
</div>
</div>
<div class="">
<h1 class="m-Header">Affinity Diagram</h1>
<div class="table6">
<div class="column">
<p class="text">
This affinity diagram was gained due to the interview with the
administrator.
</p>
<p class="text">
After I examined to comprehend how these products were
connected to each other, and how they could be combined, I
constructed some affinity diagrams in terms of information
architecture. The aim of this current affinity diagram is to
provide accurate information to the users, and make the
navigation of the application easy, not complex for them.
</p>
</div>
<div class="column borderLine">
<img
id="myImg"
class="affinityDiagram"
src="./assets/majorProject/221212_affinityDiagram_01.jpg"
alt=""
/>
</div>
<!-- The Modal -->
<div id="myModal" class="modal">
<!-- The Close Button -->
<span class="close">×</span>
<!-- Modal Content (The Image) -->
<img class="modal-content" id="img01" />
<!-- Modal Caption (Image Text) -->
<div id="caption"></div>
</div>
</div>
<!-- <div class="text brackets">
<div class="padding-top-bottom">
<h3>Test 1</h3>
<p>This is the first affinity diagram to assist the organization of media equipment.
After this diagram was applied to the wireframe of the app and tested with some students.
According to the test, this applied diagram was found a little bit complicated
and did not provide a short path for browsing the equipment on the prototype.</p>
</div>
</div> -->
</div>
</div>
<div class="container1">
<h1 class="large-Header">Ideation</h1>
<hr class="bottom-line" />
<div class="text">
<div>
<h3 class="m-Header">Concept</h3>
<div class="text">
<div>
<p>
I analysed what kind of actions the users would deploy while
borrowing some products via this application. In regard to
these actions, the important sections of the application
were indicated in the concept.
</p>
</div>
<div class="text border-left pad-right">
<ul class="boldText">
<li>Home Page ( Equipment + Kits)</li>
<li>Detail Page</li>
<li>Search</li>
<li>Cart</li>
<li>Calendar</li>
<li>Checkout (Submit)</li>
<li>Submission</li>
<li>Current booked products</li>
<li>Booked products</li>
</ul>
</div>
</div>
</div>
</div>
</div>
<div class="container1">
<h1 class="m-Header">User Story Map</h1>
<div class="text">
<div>
<p>
The major factor is to borrow the equipment from the inventory
room. The minor actions under each major function were evaluated
to implement on the application.
<br />
For being considered the product as a kit, choosing multiple
items are likely to behave as a kit (pack). So for that reason,
that calendar demonstrates available dates for the kit (pack)
regardless of each item.
</p>
</div>
</div>
<div class="table3">
<div class="text">
<div class="border-left pad-right">
<div>
<p><span>Categorization</span></p>
<p>How to organize products?</p>
<p>How to arrange combined product (Kit)?</p>
</div>
<div>
<p><span>Status of Products</span></p>
<p>How to display products status</p>
<p>
When to give information about the availability of products?
</p>
</div>
</div>
</div>
<div class="StoryMap">
<img
id="myImg1"
src="./assets/majorProject/UserStoryMap_00.png"
alt=""
/>
<!-- The Modal -->
<div id="myModal1" class="modal">
<!-- The Close Button -->
<span class="close1">×</span>
<!-- Modal Content (The Image) -->
<img class="modal-content" id="img02" />
<!-- Modal Caption (Image Text) -->
<div id="caption"></div>
</div>
</div>
</div>
</div>
<div class="container1">
<h1 class="m-Header">User Flow</h1>
<div class="margintop">
<img
id="myImg2"
src="./assets/majorProject/221013_userflow_01.jpg"
alt=""
/>
<!-- The Modal -->
<div id="myModal2" class="modal">
<!-- The Close Button -->
<span class="close2">×</span>
<!-- Modal Content (The Image) -->
<img class="modal-content" id="img03" />
<!-- Modal Caption (Image Text) -->
<div id="caption"></div>
</div>
</div>
<div class="container2">
<div class="text"></div>
</div>
</div>
<div class="container1">
<div>
<h1 class="large-Header">Design</h1>
<hr class="bottom-line" />
</div>
<h1 class="m-Header">UX Concept and Wireframing</h1>
<div>
<h3>Mid-Fidelity Wireframe</h3>
<p class="text">
By making low-fi wireframes and reconsidering how effectively the
affinity diagram could be utilized on the application, the mid-fi
wireframe was created according to user flow. One of the important
factors is presenting categories and kits. The way of implementing
the segment component was considered on the home frame. The aim is
to make the navigation easy and interface that works for the
user's expects.
</p>
</div>
<div class="">
<div class="boxImage">
<img
class="midFi"
src="./assets/majorProject/221205_Mid_fi_00.png"
alt=""
/>
</div>
</div>
<div>
<h3 class="colorHeader">Testing Session 1</h3>
<div>
<p class="text">
These answers were based on the mid-fidelity prototype as
feedback. I did a survey to gather some feedback in order to
measure their experience while using the mid-fidelity prototype.
<br />
The users found the application easy to use. They generally did
not have any difficulties navigating one frame to another. In
particular, I asked them to use the calendar to interpretion
between selected products and the calendar. According to the
result, it was observed that the approach of using it was
familiar with other applications.
</p>
<p></p>
<br />
<p>Total 6 partipicant</p>
</div>
<div class="gridTesting">
<div class="itemTesting">
<img
src="./assets/majorProject/testing session 1/221206_A1.JPG"
alt=""
/>
</div>
<div class="itemTesting">
<img
src="./assets/majorProject/testing session 1/221206_A2.JPG"
alt=""
/>
</div>
<div class="itemTesting">
<img
src="./assets/majorProject/testing session 1/221206_A3.JPG"
alt=""
/>
</div>
<div class="itemTesting">
<img
src="./assets/majorProject/testing session 1/221206_A4.JPG"
alt=""
/>
</div>
<div class="itemTesting">
<img
src="./assets/majorProject/testing session 1/221206_A5.JPG"
alt=""
/>
</div>
<div class="itemTesting">
<img
src="./assets/majorProject/testing session 1/221206_A6.JPG"
alt=""
/>
</div>
</div>
</div>
<div>
<h1 class="m-Header">UI Concept</h1>
<p class="text">
After researching TUD website and other applications such as TUD
Sport, I revised the logo of TUD in order to use it on the Icon of
the application. The aim is to make the application associated
with TUD. Therefore, carrying the same corporate identity for the
application is significant. For that reason, choosing colour
schema for the application should have a similar concept approach
as same as TUD.
</p>
<div>
<img
class="UIConcept"
src="./assets/majorProject/221205_UI_Color_LOGO_00.jpg"
alt=""
/>
</div>
</div>
<div>
<h3 class="colorHeader">Testing Session 2</h3>
<div>
<p class="text">
This part is separated into two sections. One of which is the
observation of the users while using the app, and another is the
meeting with my supervisor to make the application more cohesive
with the UI design of frames, using proper jargon for the words
and presenting a more user-friendly approach.
</p>
</div>
<div>
<div>
<h4>Observation Method</h4>
<p class="text">
According to the observation method, I was able to understand
their expectation when they took action in particular what
feedback the application make the user assured about their
tasks. These findings were considered to apply to Minimum
Viable Product (MPV) in the Development.
</p>
</div>
<div>
<h4>Meeting with My Supervisor</h4>
<p class="text">
During the meeting with my supervisor, the proper way of
choosing the words was discussed since e-commerce applications
were examined to be used for some sections at the beginning of
the design for the application. I present the last updated
high-fidelity prototype after all the valuable feedback from
this session that improved the applications.
<br />
<br />
Equipment word was used instead of categories for the
segments.
<br />
Using the Bag word was found more accurate for borrowing
camera equipment instead of the cart word.
</p>
</div>
</div>
</div>
<div>
<h1 class="m-Header">High Fidelity Wireframe</h1>
<div class="">
<div class="boxImage">
<img
class="midFi"
src="./assets/majorProject/221205_High_fi_00.png"
alt=""
/>
</div>
</div>
</div>
</div>
<!-- Development -->
<div>
<div>
<h1 class="large-Header">Development</h1>
<hr class="bottom-line" />
</div>
<div class="container2">
<img
class="imgDev"
src="./assets/majorProject/221211_development_00.jpg"
alt=""
/>
</div>
<div class="text container1">
<ul>
<li>
Android platform was chosen to implement the application. The
main reason is that the code was written on my laptop having a
windows system.
</li>
<li>
Ionic framework with Node.js environment was used since the
application can be developed as a hybrid application as opposed
to a native application, which means that it leads to the use of
HTML, CSS, and typescript.
</li>
<li>
MYSQL tables were used for the architecture of the database.
</li>
<li>
For creating rest API (Application Programming Interface), PHP
scripts that receive, extract and insert data into Array were
written to communicate with the database.
</li>
<li>
Angular platform was utilised for directives to iterate objects
from API.
</li>
<li>
Heroku was utilised to host the MYSQL tables and PHP scripts in
order to publish them out of the local server.
</li>
</ul>
</div>
<div class="container1">
<h3 class="m-Header">Architecture of Database</h3>
<div class="table4">
<div class="paddingRight text">
<p>
<span>
The connection of Products with Equipment and Kit
</span>
</p>
<p>
These tables are shown partially to explain the logic behind
the application in order to create relations every each table.
</p>
<br />
<p>
There are two main headers of products based on the affinity
diagram. Those tables ' names are categories and
subcategories. There is another table having data for each
product, which name is the items table.
</p>
<br />
<p>
For a demonstration of logic on the table, colour
categorisation was used below images. Every product has
categoryid and subcategory_id number, which defines what item
connects what categories and subcategories. For instance, 3 of
categoryid of item on table is related to the lenses of the
categories table, similarly to 2 is connected to cameras on
the categories table. The same method is applied to the
connection between items and the subcategories table.
</p>
<br />
<p>
As for creating a kit that means combined items (products),the
kitid column is assigned to define what items can be combined
on the items table. The method of it is that if each item has
the same kitid number, they can be combined with each other.
For example, the items that have 17 number in the kitid column
mean that they are a kit, and the user can borrow them as a
kit instead of choosing separately while using Media Equip.
</p>
</div>
<div class="imgColour imgDev2">
<img src="./assets/majorProject/221211_table_0.png" alt="" />
</div>
</div>
<div class="table4">
<div class="paddingRight text">
<p>
<span>
Borrowing Table with the Application of the Calendar
</span>
</p>
<p>
When the user submits what items (products) were borrowed, the
data of the users, itemId, and start and end date are posted
on the borrowing table.
</p>
<br />
<p>
One of the important parts of this table is that it works
based on ItemId of the borrowed items, which means that the
data of the user iterates according to how many items were
borrowed on the borrowing table.
</p>
<br />
<p>
The startDate and endDate have a significant role in the
connection with the calendar on the application.
</p>
<br />
<div>
<img src="./assets/majorProject/Calendar_00.png" alt="" />
</div>
<br />
<p>
The calendar allows the users to choose a date range on which
items (products) that the user wanted to borrow were available
together, which means that the date range of items that had
been borrowed before is blocked on the calendar. That is to
say, those days overlap on the calendar, and this case leads
the user to choose when all selected items were available
together on the calendar.
</p>
</div>
<div class="imgColour imgDev2">
<img src="./assets/majorProject/221211_table_1.png" alt="" />
</div>
</div>
</div>
<!--the First MVP -->
<div>
<h1 class="m-Header">The Minimum Viable Product</h1>
<div class="table5">
<div class="item1 flex-item">
<img
class="backgroundMVP"
src="./assets/majorProject/FirstMVP_00.gif"
alt=""
/>
</div>
<div class="item2 flex-item">
<h4>Prominent Parts of the MVP</h4>
<div class="text border-left pad-right">
<ul>
<li>
<p>
Provided one prompt feedback converting the outline bag
icon into a filled bag icon as visual feedback.
</p>
</li>
<br />
<li>
<p>
Presented toast text to display at the bottom of the
screen at the same time.
</p>
</li>
<br />
<li>
<p>Deployed Ionic Calendar</p>
</li>
</ul>
</div>
</div>
<div class="item3 flex-item">
<img
class="backgroundMVP"
src="./assets/majorProject/Calendar_00.jpg"
alt=""
/>
</div>
<div class="item4">
<h4 class="colorHeader">Testing Session 3</h4>
<p>
The APK was sent to users to test the application, and it was
observed while they were using the application. The valuable
findings of the testing session
</p>
<br />
<p>
Half of the users struggled to operate the calendar.
Unfortunately, Ionic Framework's calendar was used, and there
was no date range picker calendar template on Ionic. That was
the only calendar framework that led the users to choose
multiple days, which was the component constraint I came
across.
</p>
<br />
<p>
By reconsidering how to make the calendar more understandable
for the users, some changes were taken into account for
revision on the calendar.
</p>
<br />
<ul>
<li>changing the UI of it</li>
<li>using proper words for "reset" and "all set"</li>
</ul>
</div>
</div>
</div>
<!--Testing Session 3 Survey -->
<div>
<h3 class="colorHeader">Users Feedback for Testing Session 3</h3>
<div>
<p class="text"></p>
<p></p>
<br />
</div>
<div class="gridTesting">
<div class="itemTesting">
<p>Total 10 partipicant</p>
<br />
<p>
Lorem ipsum dolor sit amet consectetur adipisicing elit.
Maxime esse quasi quisquam odit, fuga reprehenderit quidem
eius. Nemo qui quia earum at? Nihil, reiciendis at nostrum
consequatur quae nam consequuntur, id eligendi ducimus
exercitationem odit sed quos quibusdam repellat, quo nulla
voluptatum deleniti similique pariatur odio dolore qui eum
autem?
</p>
</div>
<div class="itemTesting">
<img
src="./assets/majorProject/Testing Session 3/221212_Q1.JPG"
alt=""
/>
</div>
<div class="itemTesting">
<img
src="./assets/majorProject/Testing Session 3/221212_Q2.JPG"
alt=""
/>
</div>
<div class="itemTesting">
<img
src="./assets/majorProject/Testing Session 3/221212_Q4.JPG"
alt=""
/>
</div>
<div class="itemTesting">
<img
src="./assets/majorProject/Testing Session 3/221212_Q3.JPG"
alt=""
/>
</div>
<div class="itemTesting">
<img
src="./assets/majorProject/Testing Session 3/221212_Q5.JPG"
alt=""
/>
</div>
</div>
</div>
<!--the Second MVP -->
<div class="container2">
<h1 class="large-Header">The Revised Minimum Viable Product</h1>
<hr class="bottom-line" />
<div class="table7">
<div class="item1">
<img
class="backgroundMVP2"
src="./assets/majorProject/SecondMVP_00.gif"
alt=""
/>
<div class="button20">
<a
class="underLineButton"
href="https://github.com/audralix/Media-Equip"
target="_blank"
style="color: #333333"
>GitHub Link
</a>
</div>
</div>
<div class="item2">
<h4>Prominent Parts of the MVP</h4>
<div class="text border-left pad-right">
<ul>
<li>
<p>Added toast feedback with toggling of the bag icon.</p>
</li>
<br />
<li>
<p>
Repeated the same feedback on the detail frame of the
products and kits.
</p>
</li>
<br />
<li>
<p>
Hid the calendar to guide the users more accurately.
Utilized information text about the calendar.
</p>
</li>
<br />
<li>
<p>
Changed some words to set the calendar. Those are
"Confirm Dates" and "Clear" instead of "All Set" and
"Reset".
</p>
</li>
<br />
<li>
<p>
Applied the side menu to display what kinds of products
were borrowed before and current borrowing products.
</p>
</li>
</ul>
</div>
</div>
</div>
</div>
<!--Poster -->
<div class="container2">
<h1 class="large-Header">Poster</h1>
<hr class="bottom-line" />
<img
class="posterImage"
src="./assets/majorProject/Media Equip_Major_Project_Poster_01.jpg"
alt=""
/>
</div>
<!--Video -->
<div class="container2">
<h1 class="large-Header">Promo Video</h1>
<hr class="bottom-line" />
<video class="video1" controls>
<source
src="./assets/majorProject/Media Equip_Major_Project_PromoVideo.mp4"
type="video/mp4"
/>