forked from FusionIIIT/Fusion-client
-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy paths_management
More file actions
1563 lines (914 loc) · 49.5 KB
/
s_management
File metadata and controls
1563 lines (914 loc) · 49.5 KB
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
[33mcommit 5b5b11e29ce002c42990155d9a4626e4fd7eab31[m[33m ([m[1;36mHEAD -> [m[1;32mgad-5[m[33m)[m
Merge: 4a9613d b7e35ea
Author: Pratik <pratiksolanki2026@gmail.com>
Date: Thu Mar 6 12:10:06 2025 +0530
Merge branch 'main' of https://github.com/FusionIIIT/Fusion-client into gad-5
[33mcommit b7e35ea1e8a3343b14b8c9a66842457c6e8a3fdd[m[33m ([m[1;31mupstream/main[m[33m)[m
Author: Aditya Kumar Gupta <116958420+Adi8712@users.noreply.github.com>
Date: Tue Mar 4 17:17:38 2025 +0530
SA-2 New UI deployment (#28)
* added pages and setup template
* Caretaker pages and template fixes
* fix(ui): ui and code fixes
* fix(ui): optimization and fixes
* Added components for Update Payments for Student actor
* feat(ui): added pages for Caretaker
* Feat: Added Component for Registration and Deregistration for students
* Implemented UpdateMenu and ViewMenu for caretaker
* added messregistrations, viewstudentbills, viewregistrations
* Feature Enhancements: View Menu Pages, Student Registration/DeRegistrations , Feedback System, and Bug Fixes . (#20)
* feat[frontend]: Added two feedback and one update sem-date component.
* Removed unnecessary comments !
* added caretaker pages and set up the student template
* removed unnecessary dependencies
* fixed ViewSpecialFoodRequest
* fixed templates and added registration deregistration and view menu pages
* StudentFeedback page and fixed issue with addorrem.jsx
* feat: Added Routes and Backend Integration for Update Balance
* Add Applications and ViewBillAndPayments page For Student (#26)
Co-authored-by: bhumikamathankar <narendramathankar7@gmail.com>
* feat[ui]: Added two feedback and one update sem-date component.
* Removed unnecessary comments !
* added caretaker pages and set up the student template
* removed unnecessary dependencies
* fixed ViewSpecialFoodRequest
* fixed templates and added registration deregistration and view menu pages
* StudentFeedback page and fixed issue with addorrem.jsx
* backend integration and UI Fix
* API Integration for student and caretaker
* Done API integartion in MessFeedback,StudentFeedback,RespondRebate,ViewFeedback pages
* Done API integartion in RespondRebate,SpecialFoodStatus,ViewBill,PaymentHistory,RebateStatus
* Feature Enhancement: Integrated Update Sem Dates and View Registrations pages with Backend and Added Routes (#30)
* Feat: Added components for Update Payments for Student actor
* Added routes folder and integrated backend in update payment pages
* Added all routes in the route folder
* Minor UI fixes
* student UI updates
* Add Applications and ViewBillAndPayments page For Student
* feat: Added Routes and Backend Integration for Update Balance
* feat[ui]: Added two feedback and one update sem-date component.
* Removed unnecessary comments !
* added caretaker pages and set up the student template
* removed unnecessary dependencies
* fixed ViewSpecialFoodRequest
* fixed templates and added registration deregistration and view menu pages
* StudentFeedback page and fixed issue with addorrem.jsx
* backend integration and UI Fix
* API Integration for student and caretaker
* Done API integartion in MessFeedback,StudentFeedback,RespondRebate,ViewFeedback pages
* Done API integartion in RespondRebate,SpecialFoodStatus,ViewBill,PaymentHistory,RebateStatus
* Update the UI in Student
* Fixed the ui of student pages
* Made changes for student and add previous feedback page for student
* update student feedback
---------
Co-authored-by: bhumikamathankar <narendramathankar7@gmail.com>
Co-authored-by: Agrim2112 <agrimgupta2112@gmail.com>
Co-authored-by: Utkarsh-Purohit <129503848+Utkarsh-Purohit@users.noreply.github.com>
Co-authored-by: S-tej <132924903+S-tej@users.noreply.github.com>
* made changes for pages deregistration, MessActivities, WardenIndex (#33)
* Fix: fixed routing issues (#35)
* Changes in MessActivities,UpdateBalanceRequest,deregistration pages (#34)
* fix: merge conflicts
* Update package.json
---------
Co-authored-by: S-tej <132924903+S-tej@users.noreply.github.com>
Co-authored-by: Utkarsh-Purohit <129503848+Utkarsh-Purohit@users.noreply.github.com>
Co-authored-by: Agrim2112 <agrimgupta2112@gmail.com>
Co-authored-by: AjayPuma <142252693+AjayPuma@users.noreply.github.com>
Co-authored-by: Green Mansion <90859709+PrinceBujethia@users.noreply.github.com>
Co-authored-by: Nandini Amaravadi <128562497+Nandinics04@users.noreply.github.com>
Co-authored-by: Padarthi Karthik <133255355+karthikpadarthi@users.noreply.github.com>
Co-authored-by: bhumika066 <167196139+bhumika066@users.noreply.github.com>
Co-authored-by: bhumikamathankar <narendramathankar7@gmail.com>
Co-authored-by: Divyansh Bisht <115489768+dcoder13@users.noreply.github.com>
[33mcommit 59bd853e9b9ee6f15dbcaa342acf168838e68f81[m
Author: Ramesh Babu <srameshbabu2004@gmail.com>
Date: Tue Mar 4 16:21:53 2025 +0530
UI Layout changed (#25)
[33mcommit 9173e072b2313c56ff1513b8820d07ca11553072[m
Author: Pratik Solanki <128511266+Pratik2026@users.noreply.github.com>
Date: Mon Mar 3 18:12:46 2025 +0530
Fixed profile Page navigation error, Added notif_count on bell icon & disabled navigation of undeployed modules. (#27)
This commit fixes the profile page navigation error from the sidebar and also adds a total notifications count in the bell icon. It also disables the navigation of those modules that have not yet been deployed.
[33mcommit 4a9613d38cb5a8a7effe919400c0847cc9e8055b[m[33m ([m[1;31morigin/gad-5[m[33m)[m
Author: Pratik <pratiksolanki2026@gmail.com>
Date: Mon Mar 3 17:22:47 2025 +0530
fix: fixed prof err + noti_count & disable nav.
This commit fixes the profile page navigation error from sidebar and
also adds a total notifications count in bell icon. It also disables the
navigation of those modules which has not been deployed yet.
Note: Each time new module get deployed, we will have to update the
deployedModules variable in order to allow navigation of that module
from sidebar.
[33mcommit c0e1ce7bc01ee03704ec83a49669a4fd077f1e68[m
Merge: 05631d0 5594248
Author: Pratik <pratiksolanki2026@gmail.com>
Date: Mon Mar 3 17:21:32 2025 +0530
Merge branch 'main' of https://github.com/FusionIIIT/Fusion-client into gad-5
[33mcommit 5594248cbcd4c59bf3764ecf8493275bb55d3b66[m
Author: Pratik Solanki <128511266+Pratik2026@users.noreply.github.com>
Date: Thu Feb 20 00:13:31 2025 +0530
[Dashboard] Added profile pages for students along with various other functionalities. (#22)
[33mcommit 05631d0bb9e6d4a0efad93873e807283fcdd9157[m
Author: Pratik <pratiksolanki2026@gmail.com>
Date: Wed Feb 19 08:36:03 2025 +0530
fix: Clear token whenever token expires causing redirect to login properly now
[33mcommit b99792675897680ffe67b0340c4b415023f29da1[m
Merge: f89e9ed a579c5c
Author: Pratik <pratiksolanki2026@gmail.com>
Date: Wed Feb 19 08:17:07 2025 +0530
Merge branch 'main' of https://github.com/FusionIIIT/Fusion-client into gad-5
[33mcommit f89e9ed3cf912848199d7970ac04e10dfc5f1885[m
Author: Pratik <pratiksolanki2026@gmail.com>
Date: Wed Feb 19 08:09:34 2025 +0530
feat: Added Student Profile Page and its functionalities
[33mcommit 7016492c87becf3f71f36b8486fe522e0852ff63[m
Author: Pratik <pratiksolanki2026@gmail.com>
Date: Tue Feb 18 20:26:02 2025 +0530
fix: Fixed redirect issue on invalid token.
[33mcommit a579c5c981090fd3a4ae2d9e189bba6d85c8175b[m
Author: Anand Jaiswal <anand230703@gmail.com>
Date: Tue Feb 18 12:42:55 2025 +0530
Feat: Gad-4-Merging File tracking system (#20)
* compose componments changes
* create file tracking module added components (#2)
* outbox (#3)
* added Archive.jsx (#5)
* Added ViewFile. (#6)
* Revert "Added ViewFile. (#6)" (#7)
This reverts commit 3b62df8f057e05376b35ab8210071bcd965d74cd.
* Revert "added Archive.jsx (#5)" (#8)
This reverts commit b1ffc7c493e16e73c8734fba7e9d2584c134a676.
* Changed drafts and archive (#9)
* Pred695/gad 4 (#10)
* compose componments changes
* create file tracking module added components (#2)
* outbox (#3)
* added Archive.jsx (#5)
* Added ViewFile. (#6)
* Revert "Added ViewFile. (#6)" (#7)
This reverts commit 3b62df8f057e05376b35ab8210071bcd965d74cd.
* Revert "added Archive.jsx (#5)" (#8)
This reverts commit b1ffc7c493e16e73c8734fba7e9d2584c134a676.
* Changed drafts and archive (#9)
* add: notifications on actions
---------
Co-authored-by: alok410kr <alok410kr@gmail.com>
Co-authored-by: Fahad Sheik Abdullah <119167516+fahadsheik@users.noreply.github.com>
Co-authored-by: alok410kr <119100864+alok410kr@users.noreply.github.com>
Co-authored-by: Sadvika <128731424+sadvika05@users.noreply.github.com>
Co-authored-by: sunilroat-code <146645681+sunilroat-code@users.noreply.github.com>
Co-authored-by: Kshitizverma1234 <128520639+Kshitizverma1234@users.noreply.github.com>
Co-authored-by: Madhumita2005 <146762719+Madhumita2005@users.noreply.github.com>
* add: notifications on actions (#12)
* made changes (#13)
* Changes in ViewDraft and few other changes (#14)
* Changed drafts and archive
* Made changes in EditDraft file and few other small changes
* added forward file section in outbox.jsx to designated person (#15)
* Integrated some backend funcitonality
* fix: Added Breadcrumbs
* add: fetch params from global state in inbox page
* add: fetched params from the global state in Drafts and Archive Page
* Integrated some backend funcitonality (#17)
* fix: Fixed breadcrumbs behaviour
* fix: changes for UI consistency in Tabs
* Enhanced table layout and design in all pages
* Revert "Enhanced table layout and design in all pages"
* fix: fixed viewFile functionality
* add: added dynamic designation fetching
* minor fixes
* minor fixes
* add: fixed file upload
* Updated Inbox.jsx with new padding and font size changes
* made ui changes in inbox and outbox
* made changes in archive and drafts
* add: fixed tracking integration
* add: fixed ui consistency
* add: added separate routes file
* fix: multiple file uploads and also ajax name suggestion dropdown
* Made track page responsive
* made compose file responsive
* made compose file responsive
* Made inbox page responsive
* changes in receiver designation and forward to section
* Fix: Made UI changes in multiple pages
---------
Co-authored-by: alok410kr <alok410kr@gmail.com>
Co-authored-by: Fahad Sheik Abdullah <119167516+fahadsheik@users.noreply.github.com>
Co-authored-by: alok410kr <119100864+alok410kr@users.noreply.github.com>
Co-authored-by: Sadvika <128731424+sadvika05@users.noreply.github.com>
Co-authored-by: sunilroat-code <146645681+sunilroat-code@users.noreply.github.com>
Co-authored-by: Kshitizverma1234 <128520639+Kshitizverma1234@users.noreply.github.com>
Co-authored-by: Madhumita2005 <146762719+Madhumita2005@users.noreply.github.com>
Co-authored-by: Zaid Alam <113824146+pred695@users.noreply.github.com>
Co-authored-by: fahadsheik <fahad96644@gmail.com>
Co-authored-by: harshk-89 <133699216+harshk-89@users.noreply.github.com>
Co-authored-by: Zaid Alam <predcodes695@gmail.com>
Co-authored-by: sadvika <sadvikachitteti@gmail.com>
Co-authored-by: harshk-89 <harshkajalkhane774105@gmail.com>
[33mcommit 18051cef90b39f33dac0ce035300b22d70163df5[m
Author: Vithesh Krishna <133671028+Vithesh2215@users.noreply.github.com>
Date: Mon Feb 17 17:54:53 2025 +0530
Department Module version 1 (#19)
All changes of Department module V1.0
---------
Co-authored-by: aadityaverma2011 <112503547+aadityaverma2011@users.noreply.github.com>
Co-authored-by: owaish7 <lightningowais@gmail.com>
Co-authored-by: pant5803 <121814461+pant5803@users.noreply.github.com>
[33mcommit 4990605c339416b986b4a0ff136e9ed02852bf23[m
Author: SHRAMAN PAUL <pkpaulpostdn@gmail.com>
Date: Mon Feb 17 11:33:41 2025 +0530
Visitors Hostel (#21)
* add:Routes to Visitors Hostel main page
* add: visitors navbar and managed routes
* add: cancellation request
* add: updated cancellation request
* add: Booking Form
* add: active bookings and completed bookings (#4)
* add: bookings page and place request
* Vk (#5)
* add: active bookings and completed bookings
* resolve conflicts in App.jsx
* Revert "resolve conflicts in App.jsx"
This reverts commit 1e8a205e7ea671a7e7c76794e36fd25192db589c.
* add: room avalibility visitors details and responsiveness for medium screens
* added the pages for inventory and vhguidelines (#7)
* add: active bookings and completed bookings
* resolve conflicts in App.jsx
* Revert "resolve conflicts in App.jsx"
This reverts commit 1e8a205e7ea671a7e7c76794e36fd25192db589c.
* add: inventory and vhguidelines pages
---------
Co-authored-by: SHRAMAN PAUL <pkpaulpostdn@gmail.com>
* Added api fetch of booking requests (#8)
* bug: fixed conditional rendering of Visitor's Hostel Naavbar
* add:account statement page
* add: forwardBooking confirmBooking
* fetching api for completed, cancelled, active bookings (#9)
* Added api fetch of booking requests
* activeBooking api fetched
* changed pages for fetching data from active, completed, cancelled request api
* cancellation request action done
* reject request works
* add: room availibility
* Add items functionality (#10)
* add: table content
* Add items functionality
* fix: Inventory
* add: accountStatement (#11)
* fix: calculation in account statements
* fix: partial booking feature
* Page Refresh after updation added (#12)
* Added api fetch of booking requests
* activeBooking api fetched
* changed pages for fetching data from active, completed, cancelled request api
* cancellation request action done
* reject request works
* Forward Booking refreshing added
* Cancel update in active booking
* fix: completed bookings
* fix: UI of rooms availibilty and account statement
* feat: add export to excel functionality
* feat: add PDF generation and view functionality
* fix: bugs and BreadCrumbs
* fix: alignment and color (#14)
* Merged Vh module with Complaint Management (#15)
* Complaint management configs
* Created Feedback tab, list, item, and minor changes in index.jsx file to align all tabs
* generate report and complaint history pages
* Done changes in Complaint Form and correct module name to ComplaintManagement from Complaint Management
* Minor changes done in Form Page and romoved scroll bar in Feedback page
* generate report and complaint history
* add UnresolvedComplaints page and all associated components to the components dir
* UI and Functional Improvements
* added validation in complaint feedback form
* added resolved complaints page
* applied fontFamily to all the complaint pages from index.jsx file
* fixed all the linting errors
* fixed linting errors
* modified generate report and complaint history files
* fixed the dependencies error
* ..
* ...
* Added unresolved complaints pages
* added unresolved complaint in index.jsx file
* modified generate-report.jsx and integrated with backend
* integrated complaint form, feedback and resolved complaints pages
* minor change in lodge a complaint page
* corrected the positions of the paper element.
* added Redirected Complaints page.
* Complaint History and Unresolved Complaint page integrated with backend
* merge solve
* navbar updated
* Changes made in home page and css adjusted
* integrated unresolved complaint pages
* integrated resolved complaints
* integrated redirected complaints
* Changes for displaying errors or empty lists and minor UI changes
* added regex expression to get the user role
* generate remote page updated
* Added ComplaintDetails file for reusability and made UI consistent over Complaint History, FeedbackForm, RedirectedComplaints, Resolved Complaints and Unresolved Complaints pages
* Updated navbar
* Added Download as CSV functionality in Generate Report page and minor UI changes
* implemented lazy loading
* removed unwanted codes
* Fixed width and font sizes in complaint history page
* Fixed width and font sizes in feedback pages
* Fixed width and font sizes in complaint form
* fixed bugs and adjusted buttons in complaintHistory page
* Fixed width and font sizes in redirected complaints page
* Minor UI fixes in complaint history, redirected complaints, feedback pages
* modified resolved and unresolved page
* Resolved Problem of displaying declined complaints in unresolved complaints even after marking them as declined by caretaker
* Removed div and used mantine components grid and paper
* add a file and layout for api routes.Implemented for lodge complaint.
* Alignment changes
* created seperate api routes for student/faculty pages
* Changes in Scroll
* improved generate report UI
* fixed all the minor changes
* added api routes of unresolved , resolved complaints and generate report
* Minor UI fixes in complaint history, redirected complaints, feedback, resolved and unresolved pages
* corrected file opening(minor change)
* added api routes of feedbackForm , redirected complaints , redirected Complaints Change UnresComp_ChangeStatus and UnresComp_Reddirect
* Added lodge a complaint page and complaint history page for caretaker
* Fixed ui and date format in complaint history and generate report pages
---------
Co-authored-by: Prit Bhanushali <pritbhanushali012@gmail.com>
Co-authored-by: jyotiduhan2004 <jyotiduhan482@gmail.com>
Co-authored-by: Sujit <sujittayade2040@gmail.com>
Co-authored-by: shivamsk2004 <shivamkumbhakarna2004@gmail.com>
Co-authored-by: akeshari986 <22bcs055@iiitdmj.ac.in>
Co-authored-by: shreySaxena <shreyyerhs07@gmail.com>
Co-authored-by: Chaitanya-Musale <cmusale3@gmail.com>
* fix: responsive navabar
* fix active booking responsive
* fix: bugs
* bugs: fixed data format in calender
---------
Co-authored-by: Vishal-Github-21 <vishalmukkannavar690@gmail.com>
Co-authored-by: Vishal-Github-21 <116187488+Vishal-Github-21@users.noreply.github.com>
Co-authored-by: Hardik Vardaan <37293677+AtOM18@users.noreply.github.com>
Co-authored-by: ompandey0703 <142932201+ompandey0703@users.noreply.github.com>
Co-authored-by: K.Charan Teja Reddy <129493881+Charan2437@users.noreply.github.com>
Co-authored-by: Prit Bhanushali <pritbhanushali012@gmail.com>
Co-authored-by: jyotiduhan2004 <jyotiduhan482@gmail.com>
Co-authored-by: Sujit <sujittayade2040@gmail.com>
Co-authored-by: shivamsk2004 <shivamkumbhakarna2004@gmail.com>
Co-authored-by: akeshari986 <22bcs055@iiitdmj.ac.in>
Co-authored-by: shreySaxena <shreyyerhs07@gmail.com>
Co-authored-by: Chaitanya-Musale <cmusale3@gmail.com>
[33mcommit 1d3f7ab0e1e9f67b0b9488ae2c76180f63b5295c[m
Author: SHRAMAN PAUL <pkpaulpostdn@gmail.com>
Date: Sun Feb 16 14:47:28 2025 +0530
Visitors Hostel (#17)
* add:Routes to Visitors Hostel main page
* add: visitors navbar and managed routes
* add: cancellation request
* add: updated cancellation request
* add: Booking Form
* add: active bookings and completed bookings (#4)
* add: bookings page and place request
* Vk (#5)
* add: active bookings and completed bookings
* resolve conflicts in App.jsx
* Revert "resolve conflicts in App.jsx"
This reverts commit 1e8a205e7ea671a7e7c76794e36fd25192db589c.
* add: room avalibility visitors details and responsiveness for medium screens
* added the pages for inventory and vhguidelines (#7)
* add: active bookings and completed bookings
* resolve conflicts in App.jsx
* Revert "resolve conflicts in App.jsx"
This reverts commit 1e8a205e7ea671a7e7c76794e36fd25192db589c.
* add: inventory and vhguidelines pages
---------
Co-authored-by: SHRAMAN PAUL <pkpaulpostdn@gmail.com>
* Added api fetch of booking requests (#8)
* bug: fixed conditional rendering of Visitor's Hostel Naavbar
* add:account statement page
* add: forwardBooking confirmBooking
* fetching api for completed, cancelled, active bookings (#9)
* Added api fetch of booking requests
* activeBooking api fetched
* changed pages for fetching data from active, completed, cancelled request api
* cancellation request action done
* reject request works
* add: room availibility
* Add items functionality (#10)
* add: table content
* Add items functionality
* fix: Inventory
* add: accountStatement (#11)
* fix: calculation in account statements
* fix: partial booking feature
* Page Refresh after updation added (#12)
* Added api fetch of booking requests
* activeBooking api fetched
* changed pages for fetching data from active, completed, cancelled request api
* cancellation request action done
* reject request works
* Forward Booking refreshing added
* Cancel update in active booking
* fix: completed bookings
* fix: UI of rooms availibilty and account statement
* feat: add export to excel functionality
* feat: add PDF generation and view functionality
* fix: bugs and BreadCrumbs
* fix: alignment and color (#14)
* Merged Vh module with Complaint Management (#15)
* Complaint management configs
* Created Feedback tab, list, item, and minor changes in index.jsx file to align all tabs
* generate report and complaint history pages
* Done changes in Complaint Form and correct module name to ComplaintManagement from Complaint Management
* Minor changes done in Form Page and romoved scroll bar in Feedback page
* generate report and complaint history
* add UnresolvedComplaints page and all associated components to the components dir
* UI and Functional Improvements
* added validation in complaint feedback form
* added resolved complaints page
* applied fontFamily to all the complaint pages from index.jsx file
* fixed all the linting errors
* fixed linting errors
* modified generate report and complaint history files
* fixed the dependencies error
* ..
* ...
* Added unresolved complaints pages
* added unresolved complaint in index.jsx file
* modified generate-report.jsx and integrated with backend
* integrated complaint form, feedback and resolved complaints pages
* minor change in lodge a complaint page
* corrected the positions of the paper element.
* added Redirected Complaints page.
* Complaint History and Unresolved Complaint page integrated with backend
* merge solve
* navbar updated
* Changes made in home page and css adjusted
* integrated unresolved complaint pages
* integrated resolved complaints
* integrated redirected complaints
* Changes for displaying errors or empty lists and minor UI changes
* added regex expression to get the user role
* generate remote page updated
* Added ComplaintDetails file for reusability and made UI consistent over Complaint History, FeedbackForm, RedirectedComplaints, Resolved Complaints and Unresolved Complaints pages
* Updated navbar
* Added Download as CSV functionality in Generate Report page and minor UI changes
* implemented lazy loading
* removed unwanted codes
* Fixed width and font sizes in complaint history page
* Fixed width and font sizes in feedback pages
* Fixed width and font sizes in complaint form
* fixed bugs and adjusted buttons in complaintHistory page
* Fixed width and font sizes in redirected complaints page
* Minor UI fixes in complaint history, redirected complaints, feedback pages
* modified resolved and unresolved page
* Resolved Problem of displaying declined complaints in unresolved complaints even after marking them as declined by caretaker
* Removed div and used mantine components grid and paper
* add a file and layout for api routes.Implemented for lodge complaint.
* Alignment changes
* created seperate api routes for student/faculty pages
* Changes in Scroll
* improved generate report UI
* fixed all the minor changes
* added api routes of unresolved , resolved complaints and generate report
* Minor UI fixes in complaint history, redirected complaints, feedback, resolved and unresolved pages
* corrected file opening(minor change)
* added api routes of feedbackForm , redirected complaints , redirected Complaints Change UnresComp_ChangeStatus and UnresComp_Reddirect
* Added lodge a complaint page and complaint history page for caretaker
* Fixed ui and date format in complaint history and generate report pages
---------
Co-authored-by: Prit Bhanushali <pritbhanushali012@gmail.com>
Co-authored-by: jyotiduhan2004 <jyotiduhan482@gmail.com>
Co-authored-by: Sujit <sujittayade2040@gmail.com>
Co-authored-by: shivamsk2004 <shivamkumbhakarna2004@gmail.com>
Co-authored-by: akeshari986 <22bcs055@iiitdmj.ac.in>
Co-authored-by: shreySaxena <shreyyerhs07@gmail.com>
Co-authored-by: Chaitanya-Musale <cmusale3@gmail.com>
* fix: responsive navabar
* fix active booking responsive
* fix: bugs
---------
Co-authored-by: Vishal-Github-21 <vishalmukkannavar690@gmail.com>
Co-authored-by: Vishal-Github-21 <116187488+Vishal-Github-21@users.noreply.github.com>
Co-authored-by: Hardik Vardaan <37293677+AtOM18@users.noreply.github.com>
Co-authored-by: ompandey0703 <142932201+ompandey0703@users.noreply.github.com>
Co-authored-by: K.Charan Teja Reddy <129493881+Charan2437@users.noreply.github.com>
Co-authored-by: Prit Bhanushali <pritbhanushali012@gmail.com>
Co-authored-by: jyotiduhan2004 <jyotiduhan482@gmail.com>
Co-authored-by: Sujit <sujittayade2040@gmail.com>
Co-authored-by: shivamsk2004 <shivamkumbhakarna2004@gmail.com>
Co-authored-by: akeshari986 <22bcs055@iiitdmj.ac.in>
Co-authored-by: shreySaxena <shreyyerhs07@gmail.com>
Co-authored-by: Chaitanya-Musale <cmusale3@gmail.com>
[33mcommit 2260dbf5bdb0afc2c6a3f98d70fd4f34f1158252[m
Merge: dfbe22e b6ba607
Author: Pratik <pratiksolanki2026@gmail.com>
Date: Sat Feb 15 19:57:02 2025 +0530
Merge branch 'gad-5' of https://github.com/Pratik2026/Fusion-client into gad-5
[33mcommit b6ba607cac62f9bb083d98dc09d59145327560ac[m
Author: Vedant Jain <129421822+jainvedant392@users.noreply.github.com>
Date: Mon Feb 10 16:42:25 2025 +0530
Created Profile Page (#5)
Created Profile Page
[33mcommit dfbe22e9ae8868a4d2475bd50768fc520870c6c7[m
Merge: 3030ea2 4c9d806
Author: Pratik <pratiksolanki2026@gmail.com>
Date: Mon Feb 10 16:37:52 2025 +0530
Merge branch 'main' of https://github.com/FusionIIIT/Fusion-client into gad-5
[33mcommit 4c9d8067b917d48669fd0bdd5da8dadd3c9bdb1d[m
Author: Ramesh Babu <srameshbabu2004@gmail.com>
Date: Wed Feb 5 00:50:54 2025 +0530
EIS module version 1 (#16)
* Added App.jsx
* added folders
* Added Projects and Thesis Supervision
* Added conference
* Added Folders
* Added Myprofile files
* added myprofile files
* Added BreadCrumbs
* Made a Saperate Routes file and also Added AboutMe secton
* removed extra unnecessary file
* Corrected some UI
* Corrected Journals
* Added Dynamic Fetching
* Added Dynamic Fetching
* Final Update
* Removed Linting Errors
* Update sidebarContent.jsx
* Update App.jsx
* fix: complaint-eis stashed
* Added administrative forms
* fix small correction
* Made The Pages Responsive
* Made changes responsive
* added pfNo for all forms
---------
Co-authored-by: abhishek-singh0710 <126397507+abhishek-singh0710@users.noreply.github.com>
Co-authored-by: Gautam Saraya <sarayagautam9@gmail.com>
Co-authored-by: Pkjha9903 <22bcs193@iiitdmj.ac.in>
Co-authored-by: Parzigit <sumedhatreya007@gmail.com>
Co-authored-by: Sathwik <sathwik2625@gmail.com>
[33mcommit 58920cd6c32a5d4f136da3b09ff459d38d903a63[m
Author: K.Charan Teja Reddy <129493881+Charan2437@users.noreply.github.com>
Date: Tue Feb 4 15:42:38 2025 +0530
Complaint management version 1 (#14)
* Complaint management configs
* Created Feedback tab, list, item, and minor changes in index.jsx file to align all tabs
* generate report and complaint history pages