@almadar/std 14.2.0 → 14.4.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/behaviors/registry/app/organisms/std-api-gateway.orb +940 -807
- package/behaviors/registry/app/organisms/std-booking-system.orb +1281 -1148
- package/behaviors/registry/app/organisms/std-cicd-pipeline.orb +954 -821
- package/behaviors/registry/app/organisms/std-cms.orb +639 -519
- package/behaviors/registry/app/organisms/std-crm.orb +950 -817
- package/behaviors/registry/app/organisms/std-devops-dashboard.orb +1590 -1650
- package/behaviors/registry/app/organisms/std-ecommerce.orb +1145 -1012
- package/behaviors/registry/app/organisms/std-finance-tracker.orb +746 -613
- package/behaviors/registry/app/organisms/std-healthcare.orb +1655 -1522
- package/behaviors/registry/app/organisms/std-helpdesk.orb +865 -732
- package/behaviors/registry/app/organisms/std-hr-portal.orb +1364 -1231
- package/behaviors/registry/app/organisms/std-iot-dashboard.orb +1522 -1503
- package/behaviors/registry/app/organisms/std-lms.orb +1060 -926
- package/behaviors/registry/app/organisms/std-project-manager.orb +926 -792
- package/behaviors/registry/app/organisms/std-realtime-chat.orb +886 -753
- package/behaviors/registry/app/organisms/std-social-feed.orb +403 -268
- package/behaviors/registry/app/organisms/std-trading-dashboard.orb +1372 -1353
- package/behaviors/registry/core/molecules/std-app-layout.orb +60 -18
- package/dist/behaviors/registry/app/organisms/std-api-gateway.orb +940 -807
- package/dist/behaviors/registry/app/organisms/std-booking-system.orb +1281 -1148
- package/dist/behaviors/registry/app/organisms/std-cicd-pipeline.orb +954 -821
- package/dist/behaviors/registry/app/organisms/std-cms.orb +639 -519
- package/dist/behaviors/registry/app/organisms/std-crm.orb +950 -817
- package/dist/behaviors/registry/app/organisms/std-devops-dashboard.orb +1590 -1650
- package/dist/behaviors/registry/app/organisms/std-ecommerce.orb +1145 -1012
- package/dist/behaviors/registry/app/organisms/std-finance-tracker.orb +746 -613
- package/dist/behaviors/registry/app/organisms/std-healthcare.orb +1655 -1522
- package/dist/behaviors/registry/app/organisms/std-helpdesk.orb +865 -732
- package/dist/behaviors/registry/app/organisms/std-hr-portal.orb +1364 -1231
- package/dist/behaviors/registry/app/organisms/std-iot-dashboard.orb +1522 -1503
- package/dist/behaviors/registry/app/organisms/std-lms.orb +1060 -926
- package/dist/behaviors/registry/app/organisms/std-project-manager.orb +926 -792
- package/dist/behaviors/registry/app/organisms/std-realtime-chat.orb +886 -753
- package/dist/behaviors/registry/app/organisms/std-social-feed.orb +403 -268
- package/dist/behaviors/registry/app/organisms/std-trading-dashboard.orb +1372 -1353
- package/dist/behaviors/registry/core/molecules/std-app-layout.orb +60 -18
- package/package.json +1 -1
|
@@ -5,6 +5,12 @@
|
|
|
5
5
|
"orbitals": [
|
|
6
6
|
{
|
|
7
7
|
"name": "CourseOrbital",
|
|
8
|
+
"uses": [
|
|
9
|
+
{
|
|
10
|
+
"from": "std/behaviors/std-app-layout",
|
|
11
|
+
"as": "AppShell"
|
|
12
|
+
}
|
|
13
|
+
],
|
|
8
14
|
"entity": {
|
|
9
15
|
"name": "Course",
|
|
10
16
|
"persistence": "runtime",
|
|
@@ -52,6 +58,38 @@
|
|
|
52
58
|
]
|
|
53
59
|
},
|
|
54
60
|
"traits": [
|
|
61
|
+
{
|
|
62
|
+
"ref": "AppShell.traits.AppLayout",
|
|
63
|
+
"name": "CourseAppLayout",
|
|
64
|
+
"config": {
|
|
65
|
+
"appName": "LMS",
|
|
66
|
+
"navItems": [
|
|
67
|
+
{
|
|
68
|
+
"href": "/courses",
|
|
69
|
+
"label": "Courses",
|
|
70
|
+
"icon": "book-open"
|
|
71
|
+
},
|
|
72
|
+
{
|
|
73
|
+
"label": "Enroll",
|
|
74
|
+
"icon": "layout-list",
|
|
75
|
+
"href": "/enroll"
|
|
76
|
+
},
|
|
77
|
+
{
|
|
78
|
+
"label": "Progress",
|
|
79
|
+
"icon": "layout-list",
|
|
80
|
+
"href": "/progress"
|
|
81
|
+
}
|
|
82
|
+
],
|
|
83
|
+
"searchEvent": "COURSE_SEARCH",
|
|
84
|
+
"notifications": [],
|
|
85
|
+
"notificationClickEvent": "COURSE_NOTIFICATIONS_OPEN",
|
|
86
|
+
"contentTrait": "@trait.CourseBrowse"
|
|
87
|
+
},
|
|
88
|
+
"events": {
|
|
89
|
+
"NOTIFY_CLICK": "COURSE_NOTIFICATIONS_OPEN",
|
|
90
|
+
"SEARCH": "COURSE_SEARCH"
|
|
91
|
+
}
|
|
92
|
+
},
|
|
55
93
|
{
|
|
56
94
|
"name": "CourseBrowse",
|
|
57
95
|
"category": "interaction",
|
|
@@ -334,6 +372,22 @@
|
|
|
334
372
|
"kind": "trait",
|
|
335
373
|
"trait": "CourseDelete"
|
|
336
374
|
}
|
|
375
|
+
},
|
|
376
|
+
{
|
|
377
|
+
"event": "COURSE_SEARCH",
|
|
378
|
+
"triggers": "COURSE_SEARCH",
|
|
379
|
+
"source": {
|
|
380
|
+
"kind": "trait",
|
|
381
|
+
"trait": "CourseAppLayout"
|
|
382
|
+
}
|
|
383
|
+
},
|
|
384
|
+
{
|
|
385
|
+
"event": "COURSE_NOTIFICATIONS_OPEN",
|
|
386
|
+
"triggers": "COURSE_NOTIFICATIONS_OPEN",
|
|
387
|
+
"source": {
|
|
388
|
+
"kind": "trait",
|
|
389
|
+
"trait": "CourseAppLayout"
|
|
390
|
+
}
|
|
337
391
|
}
|
|
338
392
|
],
|
|
339
393
|
"stateMachine": {
|
|
@@ -348,6 +402,26 @@
|
|
|
348
402
|
"key": "INIT",
|
|
349
403
|
"name": "Initialize"
|
|
350
404
|
},
|
|
405
|
+
{
|
|
406
|
+
"key": "COURSE_SEARCH",
|
|
407
|
+
"name": "Course Search",
|
|
408
|
+
"payloadSchema": [
|
|
409
|
+
{
|
|
410
|
+
"name": "value",
|
|
411
|
+
"type": "string"
|
|
412
|
+
}
|
|
413
|
+
]
|
|
414
|
+
},
|
|
415
|
+
{
|
|
416
|
+
"key": "COURSE_NOTIFICATIONS_OPEN",
|
|
417
|
+
"name": "Course Notifications Open",
|
|
418
|
+
"payloadSchema": [
|
|
419
|
+
{
|
|
420
|
+
"name": "id",
|
|
421
|
+
"type": "string"
|
|
422
|
+
}
|
|
423
|
+
]
|
|
424
|
+
},
|
|
351
425
|
{
|
|
352
426
|
"key": "CourseLoaded",
|
|
353
427
|
"name": "Course loaded",
|
|
@@ -542,6 +616,9 @@
|
|
|
542
616
|
"render-ui",
|
|
543
617
|
"main",
|
|
544
618
|
{
|
|
619
|
+
"direction": "vertical",
|
|
620
|
+
"gap": "md",
|
|
621
|
+
"className": "py-12",
|
|
545
622
|
"type": "stack",
|
|
546
623
|
"align": "center",
|
|
547
624
|
"children": [
|
|
@@ -549,15 +626,92 @@
|
|
|
549
626
|
"type": "spinner"
|
|
550
627
|
},
|
|
551
628
|
{
|
|
552
|
-
"type": "typography",
|
|
553
|
-
"content": "Loading…",
|
|
554
629
|
"variant": "caption",
|
|
555
|
-
"color": "muted"
|
|
630
|
+
"color": "muted",
|
|
631
|
+
"type": "typography",
|
|
632
|
+
"content": "Loading…"
|
|
633
|
+
}
|
|
634
|
+
]
|
|
635
|
+
}
|
|
636
|
+
]
|
|
637
|
+
]
|
|
638
|
+
},
|
|
639
|
+
{
|
|
640
|
+
"from": "browsing",
|
|
641
|
+
"to": "browsing",
|
|
642
|
+
"event": "COURSE_SEARCH",
|
|
643
|
+
"effects": [
|
|
644
|
+
[
|
|
645
|
+
"fetch",
|
|
646
|
+
"Course",
|
|
647
|
+
{
|
|
648
|
+
"emit": {
|
|
649
|
+
"success": "CourseLoaded",
|
|
650
|
+
"failure": "CourseLoadFailed"
|
|
651
|
+
}
|
|
652
|
+
}
|
|
653
|
+
],
|
|
654
|
+
[
|
|
655
|
+
"render-ui",
|
|
656
|
+
"main",
|
|
657
|
+
{
|
|
658
|
+
"gap": "md",
|
|
659
|
+
"type": "stack",
|
|
660
|
+
"children": [
|
|
661
|
+
{
|
|
662
|
+
"type": "spinner"
|
|
663
|
+
},
|
|
664
|
+
{
|
|
665
|
+
"type": "typography",
|
|
666
|
+
"color": "muted",
|
|
667
|
+
"content": "Searching…",
|
|
668
|
+
"variant": "caption"
|
|
556
669
|
}
|
|
557
670
|
],
|
|
558
|
-
"
|
|
671
|
+
"align": "center",
|
|
559
672
|
"className": "py-12",
|
|
560
|
-
"
|
|
673
|
+
"direction": "vertical"
|
|
674
|
+
}
|
|
675
|
+
]
|
|
676
|
+
]
|
|
677
|
+
},
|
|
678
|
+
{
|
|
679
|
+
"from": "browsing",
|
|
680
|
+
"to": "browsing",
|
|
681
|
+
"event": "COURSE_NOTIFICATIONS_OPEN",
|
|
682
|
+
"effects": [
|
|
683
|
+
[
|
|
684
|
+
"render-ui",
|
|
685
|
+
"main",
|
|
686
|
+
{
|
|
687
|
+
"className": "py-8",
|
|
688
|
+
"children": [
|
|
689
|
+
{
|
|
690
|
+
"type": "icon",
|
|
691
|
+
"name": "bell"
|
|
692
|
+
},
|
|
693
|
+
{
|
|
694
|
+
"content": "No notifications",
|
|
695
|
+
"type": "typography",
|
|
696
|
+
"variant": "h3"
|
|
697
|
+
},
|
|
698
|
+
{
|
|
699
|
+
"content": "You're all caught up.",
|
|
700
|
+
"color": "muted",
|
|
701
|
+
"type": "typography",
|
|
702
|
+
"variant": "caption"
|
|
703
|
+
},
|
|
704
|
+
{
|
|
705
|
+
"label": "Back to courses",
|
|
706
|
+
"type": "button",
|
|
707
|
+
"variant": "ghost",
|
|
708
|
+
"action": "INIT"
|
|
709
|
+
}
|
|
710
|
+
],
|
|
711
|
+
"direction": "vertical",
|
|
712
|
+
"gap": "md",
|
|
713
|
+
"type": "stack",
|
|
714
|
+
"align": "center"
|
|
561
715
|
}
|
|
562
716
|
]
|
|
563
717
|
]
|
|
@@ -571,124 +725,101 @@
|
|
|
571
725
|
"render-ui",
|
|
572
726
|
"main",
|
|
573
727
|
{
|
|
574
|
-
"type": "dashboard-layout",
|
|
575
728
|
"children": [
|
|
576
729
|
{
|
|
577
|
-
"
|
|
730
|
+
"gap": "md",
|
|
731
|
+
"align": "center",
|
|
578
732
|
"children": [
|
|
579
733
|
{
|
|
580
|
-
"justify": "between",
|
|
581
734
|
"children": [
|
|
582
735
|
{
|
|
583
|
-
"
|
|
584
|
-
|
|
585
|
-
"name": "book-open",
|
|
586
|
-
"type": "icon"
|
|
587
|
-
},
|
|
588
|
-
{
|
|
589
|
-
"type": "typography",
|
|
590
|
-
"content": "Courses",
|
|
591
|
-
"variant": "h2"
|
|
592
|
-
}
|
|
593
|
-
],
|
|
594
|
-
"direction": "horizontal",
|
|
595
|
-
"gap": "sm",
|
|
596
|
-
"align": "center",
|
|
597
|
-
"type": "stack"
|
|
736
|
+
"type": "icon",
|
|
737
|
+
"name": "book-open"
|
|
598
738
|
},
|
|
599
739
|
{
|
|
600
|
-
"
|
|
601
|
-
|
|
602
|
-
|
|
603
|
-
"label": "Add Course",
|
|
604
|
-
"icon": "plus",
|
|
605
|
-
"action": "CREATE",
|
|
606
|
-
"variant": "primary"
|
|
607
|
-
}
|
|
608
|
-
],
|
|
609
|
-
"type": "stack",
|
|
610
|
-
"direction": "horizontal",
|
|
611
|
-
"gap": "sm"
|
|
740
|
+
"variant": "h2",
|
|
741
|
+
"type": "typography",
|
|
742
|
+
"content": "Courses"
|
|
612
743
|
}
|
|
613
744
|
],
|
|
614
|
-
"align": "center",
|
|
615
745
|
"type": "stack",
|
|
616
|
-
"
|
|
746
|
+
"align": "center",
|
|
747
|
+
"gap": "sm",
|
|
617
748
|
"direction": "horizontal"
|
|
618
749
|
},
|
|
619
750
|
{
|
|
620
|
-
"
|
|
621
|
-
},
|
|
622
|
-
{
|
|
623
|
-
"itemActions": [
|
|
624
|
-
{
|
|
625
|
-
"label": "View",
|
|
626
|
-
"event": "VIEW",
|
|
627
|
-
"variant": "ghost"
|
|
628
|
-
},
|
|
629
|
-
{
|
|
630
|
-
"event": "EDIT",
|
|
631
|
-
"label": "Edit",
|
|
632
|
-
"variant": "ghost"
|
|
633
|
-
},
|
|
634
|
-
{
|
|
635
|
-
"event": "DELETE",
|
|
636
|
-
"variant": "danger",
|
|
637
|
-
"label": "Delete"
|
|
638
|
-
}
|
|
639
|
-
],
|
|
640
|
-
"fields": [
|
|
641
|
-
{
|
|
642
|
-
"variant": "h3",
|
|
643
|
-
"icon": "book-open",
|
|
644
|
-
"name": "title"
|
|
645
|
-
},
|
|
646
|
-
{
|
|
647
|
-
"variant": "badge",
|
|
648
|
-
"name": "level"
|
|
649
|
-
},
|
|
650
|
-
{
|
|
651
|
-
"variant": "body",
|
|
652
|
-
"name": "instructor"
|
|
653
|
-
},
|
|
654
|
-
{
|
|
655
|
-
"variant": "body",
|
|
656
|
-
"name": "duration"
|
|
657
|
-
},
|
|
751
|
+
"children": [
|
|
658
752
|
{
|
|
659
|
-
"variant": "
|
|
660
|
-
"
|
|
753
|
+
"variant": "primary",
|
|
754
|
+
"icon": "plus",
|
|
755
|
+
"label": "Add Course",
|
|
756
|
+
"action": "CREATE",
|
|
757
|
+
"type": "button"
|
|
661
758
|
}
|
|
662
759
|
],
|
|
663
|
-
"
|
|
664
|
-
"gap": "
|
|
665
|
-
"
|
|
666
|
-
"type": "data-grid"
|
|
760
|
+
"type": "stack",
|
|
761
|
+
"gap": "sm",
|
|
762
|
+
"direction": "horizontal"
|
|
667
763
|
}
|
|
668
764
|
],
|
|
669
|
-
"
|
|
670
|
-
"
|
|
671
|
-
"
|
|
672
|
-
}
|
|
673
|
-
],
|
|
674
|
-
"navItems": [
|
|
675
|
-
{
|
|
676
|
-
"label": "Courses",
|
|
677
|
-
"icon": "book-open",
|
|
678
|
-
"href": "/courses"
|
|
765
|
+
"justify": "between",
|
|
766
|
+
"direction": "horizontal",
|
|
767
|
+
"type": "stack"
|
|
679
768
|
},
|
|
680
769
|
{
|
|
681
|
-
"
|
|
682
|
-
"icon": "layout-list",
|
|
683
|
-
"label": "Enroll"
|
|
770
|
+
"type": "divider"
|
|
684
771
|
},
|
|
685
772
|
{
|
|
686
|
-
"
|
|
687
|
-
|
|
688
|
-
|
|
773
|
+
"fields": [
|
|
774
|
+
{
|
|
775
|
+
"variant": "h3",
|
|
776
|
+
"name": "title",
|
|
777
|
+
"icon": "book-open"
|
|
778
|
+
},
|
|
779
|
+
{
|
|
780
|
+
"variant": "badge",
|
|
781
|
+
"name": "level"
|
|
782
|
+
},
|
|
783
|
+
{
|
|
784
|
+
"name": "instructor",
|
|
785
|
+
"variant": "body"
|
|
786
|
+
},
|
|
787
|
+
{
|
|
788
|
+
"variant": "body",
|
|
789
|
+
"name": "duration"
|
|
790
|
+
},
|
|
791
|
+
{
|
|
792
|
+
"name": "description",
|
|
793
|
+
"variant": "caption"
|
|
794
|
+
}
|
|
795
|
+
],
|
|
796
|
+
"type": "data-grid",
|
|
797
|
+
"cols": 2.0,
|
|
798
|
+
"itemActions": [
|
|
799
|
+
{
|
|
800
|
+
"label": "View",
|
|
801
|
+
"variant": "ghost",
|
|
802
|
+
"event": "VIEW"
|
|
803
|
+
},
|
|
804
|
+
{
|
|
805
|
+
"label": "Edit",
|
|
806
|
+
"variant": "ghost",
|
|
807
|
+
"event": "EDIT"
|
|
808
|
+
},
|
|
809
|
+
{
|
|
810
|
+
"variant": "danger",
|
|
811
|
+
"event": "DELETE",
|
|
812
|
+
"label": "Delete"
|
|
813
|
+
}
|
|
814
|
+
],
|
|
815
|
+
"entity": "@payload.data",
|
|
816
|
+
"gap": "md"
|
|
689
817
|
}
|
|
690
818
|
],
|
|
691
|
-
"
|
|
819
|
+
"gap": "lg",
|
|
820
|
+
"type": "stack",
|
|
821
|
+
"className": "max-w-5xl mx-auto w-full",
|
|
822
|
+
"direction": "vertical"
|
|
692
823
|
}
|
|
693
824
|
]
|
|
694
825
|
]
|
|
@@ -702,36 +833,36 @@
|
|
|
702
833
|
"render-ui",
|
|
703
834
|
"main",
|
|
704
835
|
{
|
|
705
|
-
"
|
|
836
|
+
"align": "center",
|
|
706
837
|
"className": "py-12",
|
|
707
838
|
"gap": "md",
|
|
708
839
|
"direction": "vertical",
|
|
840
|
+
"type": "stack",
|
|
709
841
|
"children": [
|
|
710
842
|
{
|
|
711
|
-
"color": "destructive",
|
|
712
843
|
"type": "icon",
|
|
844
|
+
"color": "destructive",
|
|
713
845
|
"name": "alert-triangle"
|
|
714
846
|
},
|
|
715
847
|
{
|
|
848
|
+
"type": "typography",
|
|
716
849
|
"content": "Failed to load course",
|
|
717
|
-
"variant": "h3"
|
|
718
|
-
"type": "typography"
|
|
850
|
+
"variant": "h3"
|
|
719
851
|
},
|
|
720
852
|
{
|
|
721
|
-
"
|
|
853
|
+
"color": "muted",
|
|
722
854
|
"type": "typography",
|
|
723
|
-
"
|
|
724
|
-
"
|
|
855
|
+
"content": "@payload.error",
|
|
856
|
+
"variant": "body"
|
|
725
857
|
},
|
|
726
858
|
{
|
|
727
859
|
"action": "INIT",
|
|
728
|
-
"icon": "rotate-ccw",
|
|
729
860
|
"variant": "primary",
|
|
861
|
+
"type": "button",
|
|
730
862
|
"label": "Retry",
|
|
731
|
-
"
|
|
863
|
+
"icon": "rotate-ccw"
|
|
732
864
|
}
|
|
733
|
-
]
|
|
734
|
-
"align": "center"
|
|
865
|
+
]
|
|
735
866
|
}
|
|
736
867
|
]
|
|
737
868
|
]
|
|
@@ -931,8 +1062,8 @@
|
|
|
931
1062
|
"Course",
|
|
932
1063
|
{
|
|
933
1064
|
"emit": {
|
|
934
|
-
"
|
|
935
|
-
"
|
|
1065
|
+
"success": "CourseLoaded",
|
|
1066
|
+
"failure": "CourseLoadFailed"
|
|
936
1067
|
}
|
|
937
1068
|
}
|
|
938
1069
|
],
|
|
@@ -940,13 +1071,11 @@
|
|
|
940
1071
|
"render-ui",
|
|
941
1072
|
"modal",
|
|
942
1073
|
{
|
|
943
|
-
"direction": "vertical",
|
|
944
1074
|
"type": "stack",
|
|
945
1075
|
"children": [
|
|
946
1076
|
{
|
|
947
1077
|
"gap": "sm",
|
|
948
1078
|
"direction": "horizontal",
|
|
949
|
-
"type": "stack",
|
|
950
1079
|
"children": [
|
|
951
1080
|
{
|
|
952
1081
|
"type": "icon",
|
|
@@ -957,7 +1086,8 @@
|
|
|
957
1086
|
"type": "typography",
|
|
958
1087
|
"content": "New Course"
|
|
959
1088
|
}
|
|
960
|
-
]
|
|
1089
|
+
],
|
|
1090
|
+
"type": "stack"
|
|
961
1091
|
},
|
|
962
1092
|
{
|
|
963
1093
|
"type": "divider"
|
|
@@ -970,12 +1100,13 @@
|
|
|
970
1100
|
"duration",
|
|
971
1101
|
"level"
|
|
972
1102
|
],
|
|
1103
|
+
"cancelEvent": "CLOSE",
|
|
973
1104
|
"submitEvent": "SAVE",
|
|
974
|
-
"mode": "create",
|
|
975
1105
|
"type": "form-section",
|
|
976
|
-
"
|
|
1106
|
+
"mode": "create"
|
|
977
1107
|
}
|
|
978
1108
|
],
|
|
1109
|
+
"direction": "vertical",
|
|
979
1110
|
"gap": "md"
|
|
980
1111
|
}
|
|
981
1112
|
]
|
|
@@ -1253,26 +1384,28 @@
|
|
|
1253
1384
|
"fetch",
|
|
1254
1385
|
"Course",
|
|
1255
1386
|
{
|
|
1256
|
-
"id": "@payload.id",
|
|
1257
1387
|
"emit": {
|
|
1258
1388
|
"success": "CourseLoaded",
|
|
1259
1389
|
"failure": "CourseLoadFailed"
|
|
1260
|
-
}
|
|
1390
|
+
},
|
|
1391
|
+
"id": "@payload.id"
|
|
1261
1392
|
}
|
|
1262
1393
|
],
|
|
1263
1394
|
[
|
|
1264
1395
|
"render-ui",
|
|
1265
1396
|
"modal",
|
|
1266
1397
|
{
|
|
1398
|
+
"type": "stack",
|
|
1267
1399
|
"direction": "vertical",
|
|
1400
|
+
"gap": "md",
|
|
1268
1401
|
"children": [
|
|
1269
1402
|
{
|
|
1270
1403
|
"type": "stack",
|
|
1271
1404
|
"direction": "horizontal",
|
|
1272
1405
|
"children": [
|
|
1273
1406
|
{
|
|
1274
|
-
"
|
|
1275
|
-
"
|
|
1407
|
+
"name": "edit",
|
|
1408
|
+
"type": "icon"
|
|
1276
1409
|
},
|
|
1277
1410
|
{
|
|
1278
1411
|
"type": "typography",
|
|
@@ -1286,9 +1419,8 @@
|
|
|
1286
1419
|
"type": "divider"
|
|
1287
1420
|
},
|
|
1288
1421
|
{
|
|
1422
|
+
"mode": "edit",
|
|
1289
1423
|
"submitEvent": "SAVE",
|
|
1290
|
-
"entity": "@payload.row",
|
|
1291
|
-
"cancelEvent": "CLOSE",
|
|
1292
1424
|
"fields": [
|
|
1293
1425
|
"title",
|
|
1294
1426
|
"description",
|
|
@@ -1296,12 +1428,11 @@
|
|
|
1296
1428
|
"duration",
|
|
1297
1429
|
"level"
|
|
1298
1430
|
],
|
|
1299
|
-
"
|
|
1300
|
-
"type": "form-section"
|
|
1431
|
+
"entity": "@payload.row",
|
|
1432
|
+
"type": "form-section",
|
|
1433
|
+
"cancelEvent": "CLOSE"
|
|
1301
1434
|
}
|
|
1302
|
-
]
|
|
1303
|
-
"type": "stack",
|
|
1304
|
-
"gap": "md"
|
|
1435
|
+
]
|
|
1305
1436
|
}
|
|
1306
1437
|
]
|
|
1307
1438
|
]
|
|
@@ -1342,8 +1473,8 @@
|
|
|
1342
1473
|
"@payload.data",
|
|
1343
1474
|
{
|
|
1344
1475
|
"emit": {
|
|
1345
|
-
"
|
|
1346
|
-
"
|
|
1476
|
+
"failure": "CourseUpdateFailed",
|
|
1477
|
+
"success": "CourseUpdated"
|
|
1347
1478
|
}
|
|
1348
1479
|
}
|
|
1349
1480
|
],
|
|
@@ -1554,14 +1685,14 @@
|
|
|
1554
1685
|
"modal",
|
|
1555
1686
|
{
|
|
1556
1687
|
"gap": "md",
|
|
1688
|
+
"direction": "vertical",
|
|
1557
1689
|
"children": [
|
|
1558
1690
|
{
|
|
1559
|
-
"
|
|
1560
|
-
"direction": "horizontal",
|
|
1691
|
+
"gap": "sm",
|
|
1561
1692
|
"children": [
|
|
1562
1693
|
{
|
|
1563
|
-
"
|
|
1564
|
-
"
|
|
1694
|
+
"name": "eye",
|
|
1695
|
+
"type": "icon"
|
|
1565
1696
|
},
|
|
1566
1697
|
{
|
|
1567
1698
|
"content": "@entity.title",
|
|
@@ -1570,44 +1701,45 @@
|
|
|
1570
1701
|
}
|
|
1571
1702
|
],
|
|
1572
1703
|
"type": "stack",
|
|
1573
|
-
"
|
|
1704
|
+
"align": "center",
|
|
1705
|
+
"direction": "horizontal"
|
|
1574
1706
|
},
|
|
1575
1707
|
{
|
|
1576
1708
|
"type": "divider"
|
|
1577
1709
|
},
|
|
1578
1710
|
{
|
|
1579
|
-
"type": "stack",
|
|
1580
|
-
"gap": "md",
|
|
1581
1711
|
"direction": "horizontal",
|
|
1712
|
+
"gap": "md",
|
|
1713
|
+
"type": "stack",
|
|
1582
1714
|
"children": [
|
|
1583
1715
|
{
|
|
1584
|
-
"variant": "caption",
|
|
1585
1716
|
"content": "Title",
|
|
1717
|
+
"variant": "caption",
|
|
1586
1718
|
"type": "typography"
|
|
1587
1719
|
},
|
|
1588
1720
|
{
|
|
1589
1721
|
"content": "@entity.title",
|
|
1590
|
-
"
|
|
1591
|
-
"
|
|
1722
|
+
"type": "typography",
|
|
1723
|
+
"variant": "body"
|
|
1592
1724
|
}
|
|
1593
1725
|
]
|
|
1594
1726
|
},
|
|
1595
1727
|
{
|
|
1596
|
-
"
|
|
1728
|
+
"gap": "md",
|
|
1597
1729
|
"children": [
|
|
1598
1730
|
{
|
|
1599
|
-
"type": "typography",
|
|
1600
1731
|
"content": "Description",
|
|
1732
|
+
"type": "typography",
|
|
1601
1733
|
"variant": "caption"
|
|
1602
1734
|
},
|
|
1603
1735
|
{
|
|
1604
|
-
"
|
|
1736
|
+
"variant": "body",
|
|
1605
1737
|
"content": "@entity.description",
|
|
1606
|
-
"
|
|
1738
|
+
"type": "typography"
|
|
1607
1739
|
}
|
|
1608
1740
|
],
|
|
1609
1741
|
"type": "stack",
|
|
1610
|
-
"
|
|
1742
|
+
"direction": "horizontal"
|
|
1611
1743
|
},
|
|
1612
1744
|
{
|
|
1613
1745
|
"children": [
|
|
@@ -1617,33 +1749,34 @@
|
|
|
1617
1749
|
"variant": "caption"
|
|
1618
1750
|
},
|
|
1619
1751
|
{
|
|
1620
|
-
"variant": "body",
|
|
1621
1752
|
"content": "@entity.instructor",
|
|
1622
|
-
"type": "typography"
|
|
1753
|
+
"type": "typography",
|
|
1754
|
+
"variant": "body"
|
|
1623
1755
|
}
|
|
1624
1756
|
],
|
|
1625
|
-
"gap": "md",
|
|
1626
1757
|
"direction": "horizontal",
|
|
1758
|
+
"gap": "md",
|
|
1627
1759
|
"type": "stack"
|
|
1628
1760
|
},
|
|
1629
1761
|
{
|
|
1630
|
-
"type": "stack",
|
|
1631
1762
|
"children": [
|
|
1632
1763
|
{
|
|
1633
|
-
"
|
|
1764
|
+
"content": "Duration",
|
|
1634
1765
|
"type": "typography",
|
|
1635
|
-
"
|
|
1766
|
+
"variant": "caption"
|
|
1636
1767
|
},
|
|
1637
1768
|
{
|
|
1638
|
-
"type": "typography",
|
|
1639
1769
|
"content": "@entity.duration",
|
|
1770
|
+
"type": "typography",
|
|
1640
1771
|
"variant": "body"
|
|
1641
1772
|
}
|
|
1642
1773
|
],
|
|
1774
|
+
"direction": "horizontal",
|
|
1643
1775
|
"gap": "md",
|
|
1644
|
-
"
|
|
1776
|
+
"type": "stack"
|
|
1645
1777
|
},
|
|
1646
1778
|
{
|
|
1779
|
+
"direction": "horizontal",
|
|
1647
1780
|
"children": [
|
|
1648
1781
|
{
|
|
1649
1782
|
"type": "typography",
|
|
@@ -1652,40 +1785,38 @@
|
|
|
1652
1785
|
},
|
|
1653
1786
|
{
|
|
1654
1787
|
"type": "typography",
|
|
1655
|
-
"
|
|
1656
|
-
"
|
|
1788
|
+
"variant": "body",
|
|
1789
|
+
"content": "@entity.level"
|
|
1657
1790
|
}
|
|
1658
1791
|
],
|
|
1659
|
-
"
|
|
1660
|
-
"gap": "md"
|
|
1661
|
-
"type": "stack"
|
|
1792
|
+
"type": "stack",
|
|
1793
|
+
"gap": "md"
|
|
1662
1794
|
},
|
|
1663
1795
|
{
|
|
1664
1796
|
"type": "divider"
|
|
1665
1797
|
},
|
|
1666
1798
|
{
|
|
1667
|
-
"justify": "end",
|
|
1668
1799
|
"direction": "horizontal",
|
|
1800
|
+
"justify": "end",
|
|
1669
1801
|
"children": [
|
|
1670
1802
|
{
|
|
1803
|
+
"action": "EDIT",
|
|
1671
1804
|
"variant": "primary",
|
|
1672
1805
|
"type": "button",
|
|
1673
1806
|
"label": "Edit",
|
|
1674
|
-
"icon": "edit"
|
|
1675
|
-
"action": "EDIT"
|
|
1807
|
+
"icon": "edit"
|
|
1676
1808
|
},
|
|
1677
1809
|
{
|
|
1810
|
+
"variant": "ghost",
|
|
1678
1811
|
"label": "Close",
|
|
1679
1812
|
"action": "CLOSE",
|
|
1680
|
-
"variant": "ghost",
|
|
1681
1813
|
"type": "button"
|
|
1682
1814
|
}
|
|
1683
1815
|
],
|
|
1684
|
-
"
|
|
1685
|
-
"
|
|
1816
|
+
"type": "stack",
|
|
1817
|
+
"gap": "sm"
|
|
1686
1818
|
}
|
|
1687
1819
|
],
|
|
1688
|
-
"direction": "vertical",
|
|
1689
1820
|
"type": "stack"
|
|
1690
1821
|
}
|
|
1691
1822
|
]
|
|
@@ -1916,8 +2047,8 @@
|
|
|
1916
2047
|
"Course",
|
|
1917
2048
|
{
|
|
1918
2049
|
"emit": {
|
|
1919
|
-
"
|
|
1920
|
-
"
|
|
2050
|
+
"success": "CourseLoaded",
|
|
2051
|
+
"failure": "CourseLoadFailed"
|
|
1921
2052
|
}
|
|
1922
2053
|
}
|
|
1923
2054
|
]
|
|
@@ -1937,20 +2068,20 @@
|
|
|
1937
2068
|
"fetch",
|
|
1938
2069
|
"Course",
|
|
1939
2070
|
{
|
|
1940
|
-
"id": "@payload.id",
|
|
1941
2071
|
"emit": {
|
|
1942
2072
|
"success": "CourseLoaded",
|
|
1943
2073
|
"failure": "CourseLoadFailed"
|
|
1944
|
-
}
|
|
2074
|
+
},
|
|
2075
|
+
"id": "@payload.id"
|
|
1945
2076
|
}
|
|
1946
2077
|
],
|
|
1947
2078
|
[
|
|
1948
2079
|
"render-ui",
|
|
1949
2080
|
"modal",
|
|
1950
2081
|
{
|
|
1951
|
-
"direction": "vertical",
|
|
1952
|
-
"type": "stack",
|
|
1953
2082
|
"gap": "md",
|
|
2083
|
+
"type": "stack",
|
|
2084
|
+
"direction": "vertical",
|
|
1954
2085
|
"children": [
|
|
1955
2086
|
{
|
|
1956
2087
|
"align": "center",
|
|
@@ -1962,8 +2093,8 @@
|
|
|
1962
2093
|
"name": "alert-triangle"
|
|
1963
2094
|
},
|
|
1964
2095
|
{
|
|
1965
|
-
"variant": "h3",
|
|
1966
2096
|
"type": "typography",
|
|
2097
|
+
"variant": "h3",
|
|
1967
2098
|
"content": "Delete Course"
|
|
1968
2099
|
}
|
|
1969
2100
|
],
|
|
@@ -1974,29 +2105,29 @@
|
|
|
1974
2105
|
},
|
|
1975
2106
|
{
|
|
1976
2107
|
"variant": "error",
|
|
1977
|
-
"
|
|
1978
|
-
"
|
|
2108
|
+
"message": "This action cannot be undone.",
|
|
2109
|
+
"type": "alert"
|
|
1979
2110
|
},
|
|
1980
2111
|
{
|
|
1981
2112
|
"type": "stack",
|
|
1982
2113
|
"gap": "sm",
|
|
2114
|
+
"direction": "horizontal",
|
|
2115
|
+
"justify": "end",
|
|
1983
2116
|
"children": [
|
|
1984
2117
|
{
|
|
1985
|
-
"variant": "ghost",
|
|
1986
|
-
"label": "Cancel",
|
|
1987
2118
|
"action": "CANCEL",
|
|
2119
|
+
"label": "Cancel",
|
|
2120
|
+
"variant": "ghost",
|
|
1988
2121
|
"type": "button"
|
|
1989
2122
|
},
|
|
1990
2123
|
{
|
|
1991
|
-
"
|
|
2124
|
+
"action": "CONFIRM_DELETE",
|
|
2125
|
+
"icon": "check",
|
|
1992
2126
|
"label": "Delete",
|
|
1993
2127
|
"type": "button",
|
|
1994
|
-
"
|
|
1995
|
-
"icon": "check"
|
|
2128
|
+
"variant": "danger"
|
|
1996
2129
|
}
|
|
1997
|
-
]
|
|
1998
|
-
"justify": "end",
|
|
1999
|
-
"direction": "horizontal"
|
|
2130
|
+
]
|
|
2000
2131
|
}
|
|
2001
2132
|
]
|
|
2002
2133
|
}
|
|
@@ -2015,8 +2146,8 @@
|
|
|
2015
2146
|
"@entity.pendingId",
|
|
2016
2147
|
{
|
|
2017
2148
|
"emit": {
|
|
2018
|
-
"
|
|
2019
|
-
"
|
|
2149
|
+
"success": "CourseDeleted",
|
|
2150
|
+
"failure": "CourseDeleteFailed"
|
|
2020
2151
|
}
|
|
2021
2152
|
}
|
|
2022
2153
|
],
|
|
@@ -2037,8 +2168,8 @@
|
|
|
2037
2168
|
"Course",
|
|
2038
2169
|
{
|
|
2039
2170
|
"emit": {
|
|
2040
|
-
"
|
|
2041
|
-
"
|
|
2171
|
+
"success": "CourseLoaded",
|
|
2172
|
+
"failure": "CourseLoadFailed"
|
|
2042
2173
|
}
|
|
2043
2174
|
}
|
|
2044
2175
|
],
|
|
@@ -2070,8 +2201,8 @@
|
|
|
2070
2201
|
"Course",
|
|
2071
2202
|
{
|
|
2072
2203
|
"emit": {
|
|
2073
|
-
"
|
|
2074
|
-
"
|
|
2204
|
+
"failure": "CourseLoadFailed",
|
|
2205
|
+
"success": "CourseLoaded"
|
|
2075
2206
|
}
|
|
2076
2207
|
}
|
|
2077
2208
|
]
|
|
@@ -2099,8 +2230,8 @@
|
|
|
2099
2230
|
"Course",
|
|
2100
2231
|
{
|
|
2101
2232
|
"emit": {
|
|
2102
|
-
"
|
|
2103
|
-
"
|
|
2233
|
+
"success": "CourseLoaded",
|
|
2234
|
+
"failure": "CourseLoadFailed"
|
|
2104
2235
|
}
|
|
2105
2236
|
}
|
|
2106
2237
|
]
|
|
@@ -2116,6 +2247,9 @@
|
|
|
2116
2247
|
"name": "CoursesPage",
|
|
2117
2248
|
"path": "/courses",
|
|
2118
2249
|
"traits": [
|
|
2250
|
+
{
|
|
2251
|
+
"ref": "CourseAppLayout"
|
|
2252
|
+
},
|
|
2119
2253
|
{
|
|
2120
2254
|
"ref": "CourseBrowse"
|
|
2121
2255
|
},
|
|
@@ -2387,18 +2521,32 @@
|
|
|
2387
2521
|
"render-ui",
|
|
2388
2522
|
"main",
|
|
2389
2523
|
{
|
|
2390
|
-
"
|
|
2524
|
+
"navItems": [
|
|
2525
|
+
{
|
|
2526
|
+
"href": "/courses",
|
|
2527
|
+
"icon": "book-open",
|
|
2528
|
+
"label": "Courses"
|
|
2529
|
+
},
|
|
2530
|
+
{
|
|
2531
|
+
"label": "Enroll",
|
|
2532
|
+
"href": "/enroll",
|
|
2533
|
+
"icon": "layout-list"
|
|
2534
|
+
},
|
|
2535
|
+
{
|
|
2536
|
+
"icon": "layout-list",
|
|
2537
|
+
"label": "Progress",
|
|
2538
|
+
"href": "/progress"
|
|
2539
|
+
}
|
|
2540
|
+
],
|
|
2391
2541
|
"children": [
|
|
2392
2542
|
{
|
|
2393
|
-
"type": "container",
|
|
2394
2543
|
"padding": "lg",
|
|
2395
|
-
"maxWidth": "lg",
|
|
2396
2544
|
"children": [
|
|
2397
2545
|
{
|
|
2546
|
+
"gap": "lg",
|
|
2547
|
+
"direction": "vertical",
|
|
2398
2548
|
"children": [
|
|
2399
2549
|
{
|
|
2400
|
-
"type": "stack",
|
|
2401
|
-
"align": "center",
|
|
2402
2550
|
"children": [
|
|
2403
2551
|
{
|
|
2404
2552
|
"name": "user-plus",
|
|
@@ -2410,17 +2558,19 @@
|
|
|
2410
2558
|
"content": "Course Enrollment"
|
|
2411
2559
|
}
|
|
2412
2560
|
],
|
|
2413
|
-
"
|
|
2414
|
-
"
|
|
2561
|
+
"align": "center",
|
|
2562
|
+
"type": "stack",
|
|
2563
|
+
"gap": "sm",
|
|
2564
|
+
"direction": "horizontal"
|
|
2415
2565
|
},
|
|
2416
2566
|
{
|
|
2567
|
+
"type": "progress-dots",
|
|
2417
2568
|
"currentIndex": 0.0,
|
|
2418
|
-
"count": 2.0
|
|
2419
|
-
"type": "progress-dots"
|
|
2569
|
+
"count": 2.0
|
|
2420
2570
|
},
|
|
2421
2571
|
{
|
|
2422
|
-
"currentStep": 0.0,
|
|
2423
2572
|
"type": "wizard-progress",
|
|
2573
|
+
"currentStep": 0.0,
|
|
2424
2574
|
"steps": [
|
|
2425
2575
|
"Student Info",
|
|
2426
2576
|
"Course Selection"
|
|
@@ -2431,59 +2581,43 @@
|
|
|
2431
2581
|
},
|
|
2432
2582
|
{
|
|
2433
2583
|
"type": "typography",
|
|
2434
|
-
"
|
|
2435
|
-
"
|
|
2584
|
+
"content": "Student Info",
|
|
2585
|
+
"variant": "h3"
|
|
2436
2586
|
},
|
|
2437
2587
|
{
|
|
2588
|
+
"submitEvent": "NEXT",
|
|
2438
2589
|
"mode": "create",
|
|
2590
|
+
"type": "form-section",
|
|
2591
|
+
"cancelEvent": "INIT",
|
|
2439
2592
|
"fields": [
|
|
2440
2593
|
"studentName",
|
|
2441
2594
|
"email"
|
|
2442
|
-
]
|
|
2443
|
-
"type": "form-section",
|
|
2444
|
-
"submitEvent": "NEXT",
|
|
2445
|
-
"cancelEvent": "INIT"
|
|
2595
|
+
]
|
|
2446
2596
|
},
|
|
2447
2597
|
{
|
|
2448
|
-
"direction": "horizontal",
|
|
2449
2598
|
"gap": "sm",
|
|
2599
|
+
"justify": "end",
|
|
2450
2600
|
"children": [
|
|
2451
2601
|
{
|
|
2452
|
-
"variant": "primary",
|
|
2453
2602
|
"label": "Next",
|
|
2454
|
-
"
|
|
2603
|
+
"type": "button",
|
|
2455
2604
|
"icon": "arrow-right",
|
|
2456
|
-
"
|
|
2605
|
+
"action": "NEXT",
|
|
2606
|
+
"variant": "primary"
|
|
2457
2607
|
}
|
|
2458
2608
|
],
|
|
2459
2609
|
"type": "stack",
|
|
2460
|
-
"
|
|
2610
|
+
"direction": "horizontal"
|
|
2461
2611
|
}
|
|
2462
2612
|
],
|
|
2463
|
-
"direction": "vertical",
|
|
2464
|
-
"gap": "lg",
|
|
2465
2613
|
"type": "stack"
|
|
2466
2614
|
}
|
|
2467
|
-
]
|
|
2468
|
-
|
|
2469
|
-
|
|
2470
|
-
"navItems": [
|
|
2471
|
-
{
|
|
2472
|
-
"icon": "book-open",
|
|
2473
|
-
"label": "Courses",
|
|
2474
|
-
"href": "/courses"
|
|
2475
|
-
},
|
|
2476
|
-
{
|
|
2477
|
-
"href": "/enroll",
|
|
2478
|
-
"icon": "layout-list",
|
|
2479
|
-
"label": "Enroll"
|
|
2480
|
-
},
|
|
2481
|
-
{
|
|
2482
|
-
"label": "Progress",
|
|
2483
|
-
"icon": "layout-list",
|
|
2484
|
-
"href": "/progress"
|
|
2615
|
+
],
|
|
2616
|
+
"maxWidth": "lg",
|
|
2617
|
+
"type": "container"
|
|
2485
2618
|
}
|
|
2486
2619
|
],
|
|
2620
|
+
"type": "dashboard-layout",
|
|
2487
2621
|
"appName": "LMS"
|
|
2488
2622
|
}
|
|
2489
2623
|
]
|
|
@@ -2499,8 +2633,8 @@
|
|
|
2499
2633
|
"Enrollment",
|
|
2500
2634
|
{
|
|
2501
2635
|
"emit": {
|
|
2502
|
-
"
|
|
2503
|
-
"
|
|
2636
|
+
"failure": "EnrollmentLoadFailed",
|
|
2637
|
+
"success": "EnrollmentLoaded"
|
|
2504
2638
|
}
|
|
2505
2639
|
}
|
|
2506
2640
|
],
|
|
@@ -2510,16 +2644,34 @@
|
|
|
2510
2644
|
{
|
|
2511
2645
|
"type": "dashboard-layout",
|
|
2512
2646
|
"appName": "LMS",
|
|
2647
|
+
"navItems": [
|
|
2648
|
+
{
|
|
2649
|
+
"icon": "book-open",
|
|
2650
|
+
"href": "/courses",
|
|
2651
|
+
"label": "Courses"
|
|
2652
|
+
},
|
|
2653
|
+
{
|
|
2654
|
+
"label": "Enroll",
|
|
2655
|
+
"href": "/enroll",
|
|
2656
|
+
"icon": "layout-list"
|
|
2657
|
+
},
|
|
2658
|
+
{
|
|
2659
|
+
"icon": "layout-list",
|
|
2660
|
+
"href": "/progress",
|
|
2661
|
+
"label": "Progress"
|
|
2662
|
+
}
|
|
2663
|
+
],
|
|
2513
2664
|
"children": [
|
|
2514
2665
|
{
|
|
2515
2666
|
"type": "container",
|
|
2667
|
+
"maxWidth": "lg",
|
|
2516
2668
|
"children": [
|
|
2517
2669
|
{
|
|
2518
|
-
"direction": "vertical",
|
|
2519
|
-
"type": "stack",
|
|
2520
|
-
"gap": "lg",
|
|
2521
2670
|
"children": [
|
|
2522
2671
|
{
|
|
2672
|
+
"gap": "sm",
|
|
2673
|
+
"align": "center",
|
|
2674
|
+
"direction": "horizontal",
|
|
2523
2675
|
"children": [
|
|
2524
2676
|
{
|
|
2525
2677
|
"type": "icon",
|
|
@@ -2531,86 +2683,68 @@
|
|
|
2531
2683
|
"type": "typography"
|
|
2532
2684
|
}
|
|
2533
2685
|
],
|
|
2534
|
-
"type": "stack"
|
|
2535
|
-
"direction": "horizontal",
|
|
2536
|
-
"gap": "sm",
|
|
2537
|
-
"align": "center"
|
|
2686
|
+
"type": "stack"
|
|
2538
2687
|
},
|
|
2539
2688
|
{
|
|
2540
|
-
"
|
|
2689
|
+
"type": "progress-dots",
|
|
2541
2690
|
"count": 2.0,
|
|
2542
|
-
"
|
|
2691
|
+
"currentIndex": 1.0
|
|
2543
2692
|
},
|
|
2544
2693
|
{
|
|
2694
|
+
"currentStep": 1.0,
|
|
2545
2695
|
"type": "wizard-progress",
|
|
2546
2696
|
"steps": [
|
|
2547
2697
|
"Student Info",
|
|
2548
2698
|
"Course Selection"
|
|
2549
|
-
]
|
|
2550
|
-
"currentStep": 1.0
|
|
2699
|
+
]
|
|
2551
2700
|
},
|
|
2552
2701
|
{
|
|
2553
2702
|
"type": "divider"
|
|
2554
2703
|
},
|
|
2555
2704
|
{
|
|
2556
|
-
"content": "Course Selection",
|
|
2557
2705
|
"type": "typography",
|
|
2706
|
+
"content": "Course Selection",
|
|
2558
2707
|
"variant": "h3"
|
|
2559
2708
|
},
|
|
2560
2709
|
{
|
|
2561
|
-
"mode": "create",
|
|
2562
2710
|
"type": "form-section",
|
|
2563
|
-
"cancelEvent": "PREV",
|
|
2564
2711
|
"submitEvent": "NEXT",
|
|
2565
2712
|
"fields": [
|
|
2566
2713
|
"courseId"
|
|
2567
|
-
]
|
|
2714
|
+
],
|
|
2715
|
+
"cancelEvent": "PREV",
|
|
2716
|
+
"mode": "create"
|
|
2568
2717
|
},
|
|
2569
2718
|
{
|
|
2570
2719
|
"direction": "horizontal",
|
|
2720
|
+
"type": "stack",
|
|
2571
2721
|
"gap": "sm",
|
|
2572
2722
|
"children": [
|
|
2573
2723
|
{
|
|
2574
|
-
"
|
|
2724
|
+
"action": "PREV",
|
|
2575
2725
|
"label": "Back",
|
|
2576
2726
|
"type": "button",
|
|
2577
2727
|
"variant": "ghost",
|
|
2578
|
-
"
|
|
2728
|
+
"icon": "arrow-left"
|
|
2579
2729
|
},
|
|
2580
2730
|
{
|
|
2581
|
-
"label": "Next",
|
|
2582
|
-
"icon": "arrow-right",
|
|
2583
2731
|
"type": "button",
|
|
2732
|
+
"action": "NEXT",
|
|
2733
|
+
"label": "Next",
|
|
2584
2734
|
"variant": "primary",
|
|
2585
|
-
"
|
|
2735
|
+
"icon": "arrow-right"
|
|
2586
2736
|
}
|
|
2587
2737
|
],
|
|
2588
|
-
"type": "stack",
|
|
2589
2738
|
"justify": "end"
|
|
2590
2739
|
}
|
|
2591
|
-
]
|
|
2740
|
+
],
|
|
2741
|
+
"type": "stack",
|
|
2742
|
+
"gap": "lg",
|
|
2743
|
+
"direction": "vertical"
|
|
2592
2744
|
}
|
|
2593
2745
|
],
|
|
2594
|
-
"maxWidth": "lg",
|
|
2595
2746
|
"padding": "lg"
|
|
2596
2747
|
}
|
|
2597
|
-
],
|
|
2598
|
-
"navItems": [
|
|
2599
|
-
{
|
|
2600
|
-
"href": "/courses",
|
|
2601
|
-
"label": "Courses",
|
|
2602
|
-
"icon": "book-open"
|
|
2603
|
-
},
|
|
2604
|
-
{
|
|
2605
|
-
"label": "Enroll",
|
|
2606
|
-
"href": "/enroll",
|
|
2607
|
-
"icon": "layout-list"
|
|
2608
|
-
},
|
|
2609
|
-
{
|
|
2610
|
-
"icon": "layout-list",
|
|
2611
|
-
"label": "Progress",
|
|
2612
|
-
"href": "/progress"
|
|
2613
|
-
}
|
|
2614
2748
|
]
|
|
2615
2749
|
}
|
|
2616
2750
|
]
|
|
@@ -2626,8 +2760,8 @@
|
|
|
2626
2760
|
"Enrollment",
|
|
2627
2761
|
{
|
|
2628
2762
|
"emit": {
|
|
2629
|
-
"
|
|
2630
|
-
"
|
|
2763
|
+
"success": "EnrollmentLoaded",
|
|
2764
|
+
"failure": "EnrollmentLoadFailed"
|
|
2631
2765
|
}
|
|
2632
2766
|
}
|
|
2633
2767
|
],
|
|
@@ -2636,87 +2770,106 @@
|
|
|
2636
2770
|
"main",
|
|
2637
2771
|
{
|
|
2638
2772
|
"appName": "LMS",
|
|
2639
|
-
"
|
|
2773
|
+
"type": "dashboard-layout",
|
|
2774
|
+
"navItems": [
|
|
2640
2775
|
{
|
|
2641
|
-
"
|
|
2642
|
-
"
|
|
2643
|
-
"
|
|
2644
|
-
|
|
2645
|
-
|
|
2646
|
-
|
|
2647
|
-
|
|
2648
|
-
|
|
2649
|
-
|
|
2776
|
+
"icon": "book-open",
|
|
2777
|
+
"href": "/courses",
|
|
2778
|
+
"label": "Courses"
|
|
2779
|
+
},
|
|
2780
|
+
{
|
|
2781
|
+
"label": "Enroll",
|
|
2782
|
+
"icon": "layout-list",
|
|
2783
|
+
"href": "/enroll"
|
|
2784
|
+
},
|
|
2785
|
+
{
|
|
2786
|
+
"icon": "layout-list",
|
|
2787
|
+
"label": "Progress",
|
|
2788
|
+
"href": "/progress"
|
|
2789
|
+
}
|
|
2790
|
+
],
|
|
2791
|
+
"children": [
|
|
2792
|
+
{
|
|
2793
|
+
"type": "stack",
|
|
2794
|
+
"direction": "vertical",
|
|
2795
|
+
"gap": "lg",
|
|
2796
|
+
"children": [
|
|
2797
|
+
{
|
|
2650
2798
|
"children": [
|
|
2651
2799
|
{
|
|
2652
2800
|
"name": "user-plus",
|
|
2653
2801
|
"type": "icon"
|
|
2654
2802
|
},
|
|
2655
2803
|
{
|
|
2656
|
-
"type": "typography",
|
|
2657
2804
|
"content": "Course Enrollment",
|
|
2658
|
-
"variant": "h2"
|
|
2805
|
+
"variant": "h2",
|
|
2806
|
+
"type": "typography"
|
|
2659
2807
|
}
|
|
2660
|
-
]
|
|
2808
|
+
],
|
|
2809
|
+
"direction": "horizontal",
|
|
2810
|
+
"align": "center",
|
|
2811
|
+
"type": "stack",
|
|
2812
|
+
"gap": "sm"
|
|
2661
2813
|
},
|
|
2662
2814
|
{
|
|
2663
|
-
"
|
|
2664
|
-
"
|
|
2815
|
+
"type": "badge",
|
|
2816
|
+
"label": "Review"
|
|
2665
2817
|
},
|
|
2666
2818
|
{
|
|
2667
|
-
"type": "wizard-progress",
|
|
2668
|
-
"currentStep": 2.0,
|
|
2669
2819
|
"steps": [
|
|
2670
2820
|
"Student Info",
|
|
2671
2821
|
"Course Selection"
|
|
2672
|
-
]
|
|
2822
|
+
],
|
|
2823
|
+
"type": "wizard-progress",
|
|
2824
|
+
"currentStep": 2.0
|
|
2673
2825
|
},
|
|
2674
2826
|
{
|
|
2675
2827
|
"type": "divider"
|
|
2676
2828
|
},
|
|
2677
2829
|
{
|
|
2830
|
+
"direction": "vertical",
|
|
2678
2831
|
"gap": "sm",
|
|
2832
|
+
"type": "stack",
|
|
2679
2833
|
"children": [
|
|
2680
2834
|
{
|
|
2681
|
-
"
|
|
2835
|
+
"gap": "md",
|
|
2682
2836
|
"justify": "between",
|
|
2837
|
+
"direction": "horizontal",
|
|
2838
|
+
"type": "stack",
|
|
2683
2839
|
"children": [
|
|
2684
2840
|
{
|
|
2841
|
+
"variant": "caption",
|
|
2685
2842
|
"type": "typography",
|
|
2686
|
-
"content": "Student Name"
|
|
2687
|
-
"variant": "caption"
|
|
2843
|
+
"content": "Student Name"
|
|
2688
2844
|
},
|
|
2689
2845
|
{
|
|
2690
|
-
"content": "@entity.studentName",
|
|
2691
2846
|
"type": "typography",
|
|
2692
|
-
"variant": "body"
|
|
2847
|
+
"variant": "body",
|
|
2848
|
+
"content": "@entity.studentName"
|
|
2693
2849
|
}
|
|
2694
|
-
]
|
|
2695
|
-
"gap": "md",
|
|
2696
|
-
"direction": "horizontal"
|
|
2850
|
+
]
|
|
2697
2851
|
},
|
|
2698
2852
|
{
|
|
2699
|
-
"justify": "between",
|
|
2700
|
-
"gap": "md",
|
|
2701
2853
|
"children": [
|
|
2702
2854
|
{
|
|
2703
2855
|
"type": "typography",
|
|
2704
|
-
"
|
|
2705
|
-
"
|
|
2856
|
+
"variant": "caption",
|
|
2857
|
+
"content": "Email"
|
|
2706
2858
|
},
|
|
2707
2859
|
{
|
|
2860
|
+
"type": "typography",
|
|
2708
2861
|
"variant": "body",
|
|
2709
|
-
"content": "@entity.email"
|
|
2710
|
-
"type": "typography"
|
|
2862
|
+
"content": "@entity.email"
|
|
2711
2863
|
}
|
|
2712
2864
|
],
|
|
2713
2865
|
"type": "stack",
|
|
2866
|
+
"gap": "md",
|
|
2867
|
+
"justify": "between",
|
|
2714
2868
|
"direction": "horizontal"
|
|
2715
2869
|
},
|
|
2716
2870
|
{
|
|
2717
2871
|
"justify": "between",
|
|
2718
|
-
"
|
|
2719
|
-
"gap": "md",
|
|
2872
|
+
"type": "stack",
|
|
2720
2873
|
"children": [
|
|
2721
2874
|
{
|
|
2722
2875
|
"type": "typography",
|
|
@@ -2724,12 +2877,13 @@
|
|
|
2724
2877
|
"content": "Course Id"
|
|
2725
2878
|
},
|
|
2726
2879
|
{
|
|
2727
|
-
"variant": "body",
|
|
2728
2880
|
"type": "typography",
|
|
2729
|
-
"content": "@entity.courseId"
|
|
2881
|
+
"content": "@entity.courseId",
|
|
2882
|
+
"variant": "body"
|
|
2730
2883
|
}
|
|
2731
2884
|
],
|
|
2732
|
-
"
|
|
2885
|
+
"direction": "horizontal",
|
|
2886
|
+
"gap": "md"
|
|
2733
2887
|
},
|
|
2734
2888
|
{
|
|
2735
2889
|
"justify": "between",
|
|
@@ -2738,68 +2892,48 @@
|
|
|
2738
2892
|
"type": "stack",
|
|
2739
2893
|
"children": [
|
|
2740
2894
|
{
|
|
2741
|
-
"type": "typography",
|
|
2742
2895
|
"variant": "caption",
|
|
2743
|
-
"content": "Enrolled At"
|
|
2896
|
+
"content": "Enrolled At",
|
|
2897
|
+
"type": "typography"
|
|
2744
2898
|
},
|
|
2745
2899
|
{
|
|
2746
|
-
"content": "@entity.enrolledAt",
|
|
2747
2900
|
"type": "typography",
|
|
2901
|
+
"content": "@entity.enrolledAt",
|
|
2748
2902
|
"variant": "body"
|
|
2749
2903
|
}
|
|
2750
2904
|
]
|
|
2751
2905
|
},
|
|
2752
2906
|
{
|
|
2907
|
+
"justify": "between",
|
|
2753
2908
|
"gap": "md",
|
|
2754
|
-
"type": "stack",
|
|
2755
2909
|
"direction": "horizontal",
|
|
2756
|
-
"justify": "between",
|
|
2757
2910
|
"children": [
|
|
2758
2911
|
{
|
|
2759
2912
|
"content": "Status",
|
|
2760
|
-
"
|
|
2761
|
-
"
|
|
2913
|
+
"variant": "caption",
|
|
2914
|
+
"type": "typography"
|
|
2762
2915
|
},
|
|
2763
2916
|
{
|
|
2764
|
-
"
|
|
2917
|
+
"variant": "body",
|
|
2765
2918
|
"type": "typography",
|
|
2766
|
-
"
|
|
2919
|
+
"content": "@entity.status"
|
|
2767
2920
|
}
|
|
2768
|
-
]
|
|
2921
|
+
],
|
|
2922
|
+
"type": "stack"
|
|
2769
2923
|
}
|
|
2770
|
-
]
|
|
2771
|
-
"type": "stack",
|
|
2772
|
-
"direction": "vertical"
|
|
2924
|
+
]
|
|
2773
2925
|
},
|
|
2774
2926
|
{
|
|
2775
|
-
"
|
|
2927
|
+
"type": "wizard-navigation",
|
|
2928
|
+
"showBack": true,
|
|
2776
2929
|
"showNext": false,
|
|
2777
2930
|
"currentStep": 2.0,
|
|
2778
|
-
"
|
|
2779
|
-
"
|
|
2780
|
-
"showBack": true
|
|
2931
|
+
"showComplete": true,
|
|
2932
|
+
"totalSteps": 3.0
|
|
2781
2933
|
}
|
|
2782
2934
|
]
|
|
2783
2935
|
}
|
|
2784
|
-
]
|
|
2785
|
-
"navItems": [
|
|
2786
|
-
{
|
|
2787
|
-
"label": "Courses",
|
|
2788
|
-
"href": "/courses",
|
|
2789
|
-
"icon": "book-open"
|
|
2790
|
-
},
|
|
2791
|
-
{
|
|
2792
|
-
"href": "/enroll",
|
|
2793
|
-
"label": "Enroll",
|
|
2794
|
-
"icon": "layout-list"
|
|
2795
|
-
},
|
|
2796
|
-
{
|
|
2797
|
-
"label": "Progress",
|
|
2798
|
-
"href": "/progress",
|
|
2799
|
-
"icon": "layout-list"
|
|
2800
|
-
}
|
|
2801
|
-
],
|
|
2802
|
-
"type": "dashboard-layout"
|
|
2936
|
+
]
|
|
2803
2937
|
}
|
|
2804
2938
|
]
|
|
2805
2939
|
]
|
|
@@ -2823,101 +2957,101 @@
|
|
|
2823
2957
|
"render-ui",
|
|
2824
2958
|
"main",
|
|
2825
2959
|
{
|
|
2960
|
+
"type": "dashboard-layout",
|
|
2826
2961
|
"children": [
|
|
2827
2962
|
{
|
|
2963
|
+
"maxWidth": "lg",
|
|
2964
|
+
"type": "container",
|
|
2828
2965
|
"children": [
|
|
2829
2966
|
{
|
|
2967
|
+
"gap": "lg",
|
|
2968
|
+
"direction": "vertical",
|
|
2830
2969
|
"children": [
|
|
2831
2970
|
{
|
|
2832
|
-
"
|
|
2971
|
+
"gap": "sm",
|
|
2833
2972
|
"align": "center",
|
|
2834
2973
|
"children": [
|
|
2835
2974
|
{
|
|
2836
|
-
"
|
|
2837
|
-
"
|
|
2975
|
+
"name": "user-plus",
|
|
2976
|
+
"type": "icon"
|
|
2838
2977
|
},
|
|
2839
2978
|
{
|
|
2840
|
-
"type": "typography",
|
|
2841
2979
|
"content": "Course Enrollment",
|
|
2980
|
+
"type": "typography",
|
|
2842
2981
|
"variant": "h2"
|
|
2843
2982
|
}
|
|
2844
2983
|
],
|
|
2845
2984
|
"type": "stack",
|
|
2846
|
-
"
|
|
2985
|
+
"direction": "horizontal"
|
|
2847
2986
|
},
|
|
2848
2987
|
{
|
|
2849
|
-
"
|
|
2988
|
+
"count": 2.0,
|
|
2850
2989
|
"currentIndex": 0.0,
|
|
2851
|
-
"
|
|
2990
|
+
"type": "progress-dots"
|
|
2852
2991
|
},
|
|
2853
2992
|
{
|
|
2854
|
-
"currentStep": 0.0,
|
|
2855
|
-
"type": "wizard-progress",
|
|
2856
2993
|
"steps": [
|
|
2857
2994
|
"Student Info",
|
|
2858
2995
|
"Course Selection"
|
|
2859
|
-
]
|
|
2996
|
+
],
|
|
2997
|
+
"currentStep": 0.0,
|
|
2998
|
+
"type": "wizard-progress"
|
|
2860
2999
|
},
|
|
2861
3000
|
{
|
|
2862
3001
|
"type": "divider"
|
|
2863
3002
|
},
|
|
2864
3003
|
{
|
|
3004
|
+
"variant": "h3",
|
|
2865
3005
|
"type": "typography",
|
|
2866
|
-
"content": "Student Info"
|
|
2867
|
-
"variant": "h3"
|
|
3006
|
+
"content": "Student Info"
|
|
2868
3007
|
},
|
|
2869
3008
|
{
|
|
2870
3009
|
"type": "form-section",
|
|
2871
|
-
"cancelEvent": "INIT",
|
|
2872
3010
|
"mode": "create",
|
|
2873
|
-
"
|
|
3011
|
+
"cancelEvent": "INIT",
|
|
2874
3012
|
"fields": [
|
|
2875
3013
|
"studentName",
|
|
2876
3014
|
"email"
|
|
2877
|
-
]
|
|
3015
|
+
],
|
|
3016
|
+
"submitEvent": "NEXT"
|
|
2878
3017
|
},
|
|
2879
3018
|
{
|
|
2880
|
-
"
|
|
3019
|
+
"justify": "end",
|
|
2881
3020
|
"type": "stack",
|
|
2882
3021
|
"gap": "sm",
|
|
2883
3022
|
"children": [
|
|
2884
3023
|
{
|
|
3024
|
+
"label": "Next",
|
|
3025
|
+
"action": "NEXT",
|
|
2885
3026
|
"type": "button",
|
|
2886
3027
|
"icon": "arrow-right",
|
|
2887
|
-
"variant": "primary"
|
|
2888
|
-
"label": "Next",
|
|
2889
|
-
"action": "NEXT"
|
|
3028
|
+
"variant": "primary"
|
|
2890
3029
|
}
|
|
2891
3030
|
],
|
|
2892
|
-
"
|
|
3031
|
+
"direction": "horizontal"
|
|
2893
3032
|
}
|
|
2894
3033
|
],
|
|
2895
|
-
"type": "stack"
|
|
2896
|
-
"direction": "vertical",
|
|
2897
|
-
"gap": "lg"
|
|
3034
|
+
"type": "stack"
|
|
2898
3035
|
}
|
|
2899
3036
|
],
|
|
2900
|
-
"maxWidth": "lg",
|
|
2901
|
-
"type": "container",
|
|
2902
3037
|
"padding": "lg"
|
|
2903
3038
|
}
|
|
2904
3039
|
],
|
|
2905
|
-
"type": "dashboard-layout",
|
|
2906
3040
|
"navItems": [
|
|
2907
3041
|
{
|
|
2908
|
-
"
|
|
3042
|
+
"icon": "book-open",
|
|
2909
3043
|
"href": "/courses",
|
|
2910
|
-
"
|
|
3044
|
+
"label": "Courses"
|
|
2911
3045
|
},
|
|
2912
3046
|
{
|
|
2913
|
-
"icon": "layout-list",
|
|
2914
3047
|
"label": "Enroll",
|
|
3048
|
+
"icon": "layout-list",
|
|
2915
3049
|
"href": "/enroll"
|
|
2916
3050
|
},
|
|
2917
3051
|
{
|
|
3052
|
+
"icon": "layout-list",
|
|
2918
3053
|
"label": "Progress",
|
|
2919
|
-
"href": "/progress"
|
|
2920
|
-
"icon": "layout-list"
|
|
3054
|
+
"href": "/progress"
|
|
2921
3055
|
}
|
|
2922
3056
|
],
|
|
2923
3057
|
"appName": "LMS"
|
|
@@ -2947,13 +3081,13 @@
|
|
|
2947
3081
|
"navItems": [
|
|
2948
3082
|
{
|
|
2949
3083
|
"href": "/courses",
|
|
2950
|
-
"
|
|
2951
|
-
"
|
|
3084
|
+
"label": "Courses",
|
|
3085
|
+
"icon": "book-open"
|
|
2952
3086
|
},
|
|
2953
3087
|
{
|
|
3088
|
+
"label": "Enroll",
|
|
2954
3089
|
"href": "/enroll",
|
|
2955
|
-
"icon": "layout-list"
|
|
2956
|
-
"label": "Enroll"
|
|
3090
|
+
"icon": "layout-list"
|
|
2957
3091
|
},
|
|
2958
3092
|
{
|
|
2959
3093
|
"label": "Progress",
|
|
@@ -2964,36 +3098,32 @@
|
|
|
2964
3098
|
"appName": "LMS",
|
|
2965
3099
|
"children": [
|
|
2966
3100
|
{
|
|
2967
|
-
"padding": "lg",
|
|
2968
|
-
"maxWidth": "lg",
|
|
2969
3101
|
"type": "container",
|
|
2970
3102
|
"children": [
|
|
2971
3103
|
{
|
|
2972
|
-
"type": "stack",
|
|
2973
|
-
"direction": "vertical",
|
|
2974
3104
|
"gap": "lg",
|
|
2975
3105
|
"children": [
|
|
2976
3106
|
{
|
|
2977
|
-
"gap": "sm",
|
|
2978
|
-
"direction": "horizontal",
|
|
2979
3107
|
"align": "center",
|
|
2980
|
-
"
|
|
3108
|
+
"direction": "horizontal",
|
|
3109
|
+
"gap": "sm",
|
|
2981
3110
|
"children": [
|
|
2982
3111
|
{
|
|
2983
|
-
"
|
|
2984
|
-
"
|
|
3112
|
+
"type": "icon",
|
|
3113
|
+
"name": "user-plus"
|
|
2985
3114
|
},
|
|
2986
3115
|
{
|
|
3116
|
+
"variant": "h2",
|
|
2987
3117
|
"type": "typography",
|
|
2988
|
-
"content": "Course Enrollment"
|
|
2989
|
-
"variant": "h2"
|
|
3118
|
+
"content": "Course Enrollment"
|
|
2990
3119
|
}
|
|
2991
|
-
]
|
|
3120
|
+
],
|
|
3121
|
+
"type": "stack"
|
|
2992
3122
|
},
|
|
2993
3123
|
{
|
|
3124
|
+
"type": "progress-dots",
|
|
2994
3125
|
"count": 2.0,
|
|
2995
|
-
"currentIndex": 1.0
|
|
2996
|
-
"type": "progress-dots"
|
|
3126
|
+
"currentIndex": 1.0
|
|
2997
3127
|
},
|
|
2998
3128
|
{
|
|
2999
3129
|
"steps": [
|
|
@@ -3007,44 +3137,48 @@
|
|
|
3007
3137
|
"type": "divider"
|
|
3008
3138
|
},
|
|
3009
3139
|
{
|
|
3140
|
+
"content": "Course Selection",
|
|
3010
3141
|
"variant": "h3",
|
|
3011
|
-
"type": "typography"
|
|
3012
|
-
"content": "Course Selection"
|
|
3142
|
+
"type": "typography"
|
|
3013
3143
|
},
|
|
3014
3144
|
{
|
|
3145
|
+
"submitEvent": "NEXT",
|
|
3015
3146
|
"cancelEvent": "PREV",
|
|
3016
3147
|
"type": "form-section",
|
|
3148
|
+
"mode": "create",
|
|
3017
3149
|
"fields": [
|
|
3018
3150
|
"courseId"
|
|
3019
|
-
]
|
|
3020
|
-
"mode": "create",
|
|
3021
|
-
"submitEvent": "NEXT"
|
|
3151
|
+
]
|
|
3022
3152
|
},
|
|
3023
3153
|
{
|
|
3154
|
+
"gap": "sm",
|
|
3155
|
+
"direction": "horizontal",
|
|
3024
3156
|
"children": [
|
|
3025
3157
|
{
|
|
3158
|
+
"variant": "ghost",
|
|
3026
3159
|
"icon": "arrow-left",
|
|
3027
3160
|
"label": "Back",
|
|
3028
3161
|
"action": "PREV",
|
|
3029
|
-
"type": "button"
|
|
3030
|
-
"variant": "ghost"
|
|
3162
|
+
"type": "button"
|
|
3031
3163
|
},
|
|
3032
3164
|
{
|
|
3165
|
+
"action": "NEXT",
|
|
3033
3166
|
"type": "button",
|
|
3167
|
+
"icon": "arrow-right",
|
|
3034
3168
|
"label": "Next",
|
|
3035
|
-
"
|
|
3036
|
-
"variant": "primary",
|
|
3037
|
-
"icon": "arrow-right"
|
|
3169
|
+
"variant": "primary"
|
|
3038
3170
|
}
|
|
3039
3171
|
],
|
|
3040
|
-
"justify": "end",
|
|
3041
3172
|
"type": "stack",
|
|
3042
|
-
"
|
|
3043
|
-
"gap": "sm"
|
|
3173
|
+
"justify": "end"
|
|
3044
3174
|
}
|
|
3045
|
-
]
|
|
3175
|
+
],
|
|
3176
|
+
"direction": "vertical",
|
|
3177
|
+
"type": "stack"
|
|
3046
3178
|
}
|
|
3047
|
-
]
|
|
3179
|
+
],
|
|
3180
|
+
"maxWidth": "lg",
|
|
3181
|
+
"padding": "lg"
|
|
3048
3182
|
}
|
|
3049
3183
|
],
|
|
3050
3184
|
"type": "dashboard-layout"
|
|
@@ -3064,8 +3198,8 @@
|
|
|
3064
3198
|
"@payload.data",
|
|
3065
3199
|
{
|
|
3066
3200
|
"emit": {
|
|
3067
|
-
"
|
|
3068
|
-
"
|
|
3201
|
+
"failure": "EnrollmentSaveFailed",
|
|
3202
|
+
"success": "EnrollmentSaved"
|
|
3069
3203
|
}
|
|
3070
3204
|
}
|
|
3071
3205
|
],
|
|
@@ -3078,21 +3212,23 @@
|
|
|
3078
3212
|
"render-ui",
|
|
3079
3213
|
"main",
|
|
3080
3214
|
{
|
|
3215
|
+
"type": "dashboard-layout",
|
|
3081
3216
|
"appName": "LMS",
|
|
3082
3217
|
"children": [
|
|
3083
3218
|
{
|
|
3084
3219
|
"type": "stack",
|
|
3085
|
-
"
|
|
3220
|
+
"direction": "vertical",
|
|
3086
3221
|
"gap": "lg",
|
|
3222
|
+
"align": "center",
|
|
3087
3223
|
"children": [
|
|
3088
3224
|
{
|
|
3089
|
-
"
|
|
3090
|
-
"
|
|
3225
|
+
"name": "check-circle",
|
|
3226
|
+
"type": "icon"
|
|
3091
3227
|
},
|
|
3092
3228
|
{
|
|
3229
|
+
"type": "typography",
|
|
3093
3230
|
"content": "Enrolled!",
|
|
3094
|
-
"variant": "h2"
|
|
3095
|
-
"type": "typography"
|
|
3231
|
+
"variant": "h2"
|
|
3096
3232
|
},
|
|
3097
3233
|
{
|
|
3098
3234
|
"type": "typography",
|
|
@@ -3101,31 +3237,29 @@
|
|
|
3101
3237
|
},
|
|
3102
3238
|
{
|
|
3103
3239
|
"type": "button",
|
|
3104
|
-
"action": "RESTART",
|
|
3105
|
-
"variant": "primary",
|
|
3106
3240
|
"icon": "refresh-cw",
|
|
3107
|
-
"
|
|
3241
|
+
"variant": "primary",
|
|
3242
|
+
"label": "Start New",
|
|
3243
|
+
"action": "RESTART"
|
|
3108
3244
|
}
|
|
3109
|
-
]
|
|
3110
|
-
"direction": "vertical"
|
|
3245
|
+
]
|
|
3111
3246
|
}
|
|
3112
3247
|
],
|
|
3113
|
-
"type": "dashboard-layout",
|
|
3114
3248
|
"navItems": [
|
|
3115
3249
|
{
|
|
3116
|
-
"label": "Courses",
|
|
3117
3250
|
"icon": "book-open",
|
|
3118
|
-
"href": "/courses"
|
|
3251
|
+
"href": "/courses",
|
|
3252
|
+
"label": "Courses"
|
|
3119
3253
|
},
|
|
3120
3254
|
{
|
|
3121
|
-
"
|
|
3255
|
+
"label": "Enroll",
|
|
3122
3256
|
"href": "/enroll",
|
|
3123
|
-
"
|
|
3257
|
+
"icon": "layout-list"
|
|
3124
3258
|
},
|
|
3125
3259
|
{
|
|
3260
|
+
"icon": "layout-list",
|
|
3126
3261
|
"href": "/progress",
|
|
3127
|
-
"label": "Progress"
|
|
3128
|
-
"icon": "layout-list"
|
|
3262
|
+
"label": "Progress"
|
|
3129
3263
|
}
|
|
3130
3264
|
]
|
|
3131
3265
|
}
|
|
@@ -3142,8 +3276,8 @@
|
|
|
3142
3276
|
"Enrollment",
|
|
3143
3277
|
{
|
|
3144
3278
|
"emit": {
|
|
3145
|
-
"
|
|
3146
|
-
"
|
|
3279
|
+
"failure": "EnrollmentLoadFailed",
|
|
3280
|
+
"success": "EnrollmentLoaded"
|
|
3147
3281
|
}
|
|
3148
3282
|
}
|
|
3149
3283
|
],
|
|
@@ -3151,104 +3285,104 @@
|
|
|
3151
3285
|
"render-ui",
|
|
3152
3286
|
"main",
|
|
3153
3287
|
{
|
|
3154
|
-
"appName": "LMS",
|
|
3155
3288
|
"navItems": [
|
|
3156
3289
|
{
|
|
3157
|
-
"icon": "book-open",
|
|
3158
3290
|
"href": "/courses",
|
|
3159
|
-
"label": "Courses"
|
|
3291
|
+
"label": "Courses",
|
|
3292
|
+
"icon": "book-open"
|
|
3160
3293
|
},
|
|
3161
3294
|
{
|
|
3162
|
-
"
|
|
3295
|
+
"label": "Enroll",
|
|
3163
3296
|
"href": "/enroll",
|
|
3164
|
-
"
|
|
3297
|
+
"icon": "layout-list"
|
|
3165
3298
|
},
|
|
3166
3299
|
{
|
|
3167
|
-
"href": "/progress",
|
|
3168
3300
|
"icon": "layout-list",
|
|
3169
|
-
"label": "Progress"
|
|
3301
|
+
"label": "Progress",
|
|
3302
|
+
"href": "/progress"
|
|
3170
3303
|
}
|
|
3171
3304
|
],
|
|
3172
3305
|
"children": [
|
|
3173
3306
|
{
|
|
3174
|
-
"maxWidth": "lg",
|
|
3175
|
-
"padding": "lg",
|
|
3176
3307
|
"type": "container",
|
|
3177
3308
|
"children": [
|
|
3178
3309
|
{
|
|
3179
3310
|
"direction": "vertical",
|
|
3180
|
-
"gap": "lg",
|
|
3181
3311
|
"type": "stack",
|
|
3182
3312
|
"children": [
|
|
3183
3313
|
{
|
|
3184
|
-
"direction": "horizontal",
|
|
3185
3314
|
"gap": "sm",
|
|
3186
|
-
"align": "center",
|
|
3187
3315
|
"type": "stack",
|
|
3316
|
+
"direction": "horizontal",
|
|
3317
|
+
"align": "center",
|
|
3188
3318
|
"children": [
|
|
3189
3319
|
{
|
|
3190
3320
|
"type": "icon",
|
|
3191
3321
|
"name": "user-plus"
|
|
3192
3322
|
},
|
|
3193
3323
|
{
|
|
3324
|
+
"type": "typography",
|
|
3194
3325
|
"content": "Course Enrollment",
|
|
3195
|
-
"variant": "h2"
|
|
3196
|
-
"type": "typography"
|
|
3326
|
+
"variant": "h2"
|
|
3197
3327
|
}
|
|
3198
3328
|
]
|
|
3199
3329
|
},
|
|
3200
3330
|
{
|
|
3331
|
+
"type": "progress-dots",
|
|
3201
3332
|
"currentIndex": 0.0,
|
|
3202
|
-
"count": 2.0
|
|
3203
|
-
"type": "progress-dots"
|
|
3333
|
+
"count": 2.0
|
|
3204
3334
|
},
|
|
3205
3335
|
{
|
|
3336
|
+
"currentStep": 0.0,
|
|
3337
|
+
"type": "wizard-progress",
|
|
3206
3338
|
"steps": [
|
|
3207
3339
|
"Student Info",
|
|
3208
3340
|
"Course Selection"
|
|
3209
|
-
]
|
|
3210
|
-
"type": "wizard-progress",
|
|
3211
|
-
"currentStep": 0.0
|
|
3341
|
+
]
|
|
3212
3342
|
},
|
|
3213
3343
|
{
|
|
3214
3344
|
"type": "divider"
|
|
3215
3345
|
},
|
|
3216
3346
|
{
|
|
3217
|
-
"variant": "h3",
|
|
3218
3347
|
"content": "Student Info",
|
|
3219
|
-
"type": "typography"
|
|
3348
|
+
"type": "typography",
|
|
3349
|
+
"variant": "h3"
|
|
3220
3350
|
},
|
|
3221
3351
|
{
|
|
3222
|
-
"type": "form-section",
|
|
3223
|
-
"mode": "create",
|
|
3224
3352
|
"cancelEvent": "INIT",
|
|
3353
|
+
"type": "form-section",
|
|
3225
3354
|
"submitEvent": "NEXT",
|
|
3226
3355
|
"fields": [
|
|
3227
3356
|
"studentName",
|
|
3228
3357
|
"email"
|
|
3229
|
-
]
|
|
3358
|
+
],
|
|
3359
|
+
"mode": "create"
|
|
3230
3360
|
},
|
|
3231
3361
|
{
|
|
3232
|
-
"
|
|
3233
|
-
"justify": "end",
|
|
3362
|
+
"direction": "horizontal",
|
|
3234
3363
|
"children": [
|
|
3235
3364
|
{
|
|
3236
3365
|
"variant": "primary",
|
|
3237
|
-
"action": "NEXT",
|
|
3238
|
-
"label": "Next",
|
|
3239
3366
|
"icon": "arrow-right",
|
|
3240
|
-
"type": "button"
|
|
3367
|
+
"type": "button",
|
|
3368
|
+
"action": "NEXT",
|
|
3369
|
+
"label": "Next"
|
|
3241
3370
|
}
|
|
3242
3371
|
],
|
|
3243
|
-
"
|
|
3244
|
-
"
|
|
3372
|
+
"gap": "sm",
|
|
3373
|
+
"type": "stack",
|
|
3374
|
+
"justify": "end"
|
|
3245
3375
|
}
|
|
3246
|
-
]
|
|
3376
|
+
],
|
|
3377
|
+
"gap": "lg"
|
|
3247
3378
|
}
|
|
3248
|
-
]
|
|
3379
|
+
],
|
|
3380
|
+
"maxWidth": "lg",
|
|
3381
|
+
"padding": "lg"
|
|
3249
3382
|
}
|
|
3250
3383
|
],
|
|
3251
|
-
"type": "dashboard-layout"
|
|
3384
|
+
"type": "dashboard-layout",
|
|
3385
|
+
"appName": "LMS"
|
|
3252
3386
|
}
|
|
3253
3387
|
]
|
|
3254
3388
|
]
|
|
@@ -3263,8 +3397,8 @@
|
|
|
3263
3397
|
"Enrollment",
|
|
3264
3398
|
{
|
|
3265
3399
|
"emit": {
|
|
3266
|
-
"
|
|
3267
|
-
"
|
|
3400
|
+
"success": "EnrollmentLoaded",
|
|
3401
|
+
"failure": "EnrollmentLoadFailed"
|
|
3268
3402
|
}
|
|
3269
3403
|
}
|
|
3270
3404
|
],
|
|
@@ -3272,76 +3406,94 @@
|
|
|
3272
3406
|
"render-ui",
|
|
3273
3407
|
"main",
|
|
3274
3408
|
{
|
|
3409
|
+
"navItems": [
|
|
3410
|
+
{
|
|
3411
|
+
"href": "/courses",
|
|
3412
|
+
"icon": "book-open",
|
|
3413
|
+
"label": "Courses"
|
|
3414
|
+
},
|
|
3415
|
+
{
|
|
3416
|
+
"label": "Enroll",
|
|
3417
|
+
"icon": "layout-list",
|
|
3418
|
+
"href": "/enroll"
|
|
3419
|
+
},
|
|
3420
|
+
{
|
|
3421
|
+
"icon": "layout-list",
|
|
3422
|
+
"label": "Progress",
|
|
3423
|
+
"href": "/progress"
|
|
3424
|
+
}
|
|
3425
|
+
],
|
|
3426
|
+
"type": "dashboard-layout",
|
|
3275
3427
|
"children": [
|
|
3276
3428
|
{
|
|
3277
|
-
"padding": "lg",
|
|
3278
3429
|
"type": "container",
|
|
3279
3430
|
"maxWidth": "lg",
|
|
3431
|
+
"padding": "lg",
|
|
3280
3432
|
"children": [
|
|
3281
3433
|
{
|
|
3282
|
-
"type": "stack",
|
|
3283
3434
|
"gap": "lg",
|
|
3435
|
+
"type": "stack",
|
|
3284
3436
|
"children": [
|
|
3285
3437
|
{
|
|
3438
|
+
"type": "stack",
|
|
3439
|
+
"direction": "horizontal",
|
|
3440
|
+
"align": "center",
|
|
3286
3441
|
"children": [
|
|
3287
3442
|
{
|
|
3288
|
-
"
|
|
3289
|
-
"
|
|
3443
|
+
"type": "icon",
|
|
3444
|
+
"name": "user-plus"
|
|
3290
3445
|
},
|
|
3291
3446
|
{
|
|
3447
|
+
"variant": "h2",
|
|
3292
3448
|
"type": "typography",
|
|
3293
|
-
"content": "Course Enrollment"
|
|
3294
|
-
"variant": "h2"
|
|
3449
|
+
"content": "Course Enrollment"
|
|
3295
3450
|
}
|
|
3296
3451
|
],
|
|
3297
|
-
"gap": "sm"
|
|
3298
|
-
"type": "stack",
|
|
3299
|
-
"align": "center",
|
|
3300
|
-
"direction": "horizontal"
|
|
3452
|
+
"gap": "sm"
|
|
3301
3453
|
},
|
|
3302
3454
|
{
|
|
3303
|
-
"
|
|
3455
|
+
"currentIndex": 0.0,
|
|
3304
3456
|
"count": 2.0,
|
|
3305
|
-
"
|
|
3457
|
+
"type": "progress-dots"
|
|
3306
3458
|
},
|
|
3307
3459
|
{
|
|
3308
3460
|
"steps": [
|
|
3309
3461
|
"Student Info",
|
|
3310
3462
|
"Course Selection"
|
|
3311
3463
|
],
|
|
3312
|
-
"
|
|
3313
|
-
"
|
|
3464
|
+
"currentStep": 0.0,
|
|
3465
|
+
"type": "wizard-progress"
|
|
3314
3466
|
},
|
|
3315
3467
|
{
|
|
3316
3468
|
"type": "divider"
|
|
3317
3469
|
},
|
|
3318
3470
|
{
|
|
3319
|
-
"
|
|
3471
|
+
"variant": "h3",
|
|
3320
3472
|
"content": "Student Info",
|
|
3321
|
-
"
|
|
3473
|
+
"type": "typography"
|
|
3322
3474
|
},
|
|
3323
3475
|
{
|
|
3324
|
-
"mode": "create",
|
|
3325
3476
|
"type": "form-section",
|
|
3326
3477
|
"cancelEvent": "INIT",
|
|
3478
|
+
"submitEvent": "NEXT",
|
|
3327
3479
|
"fields": [
|
|
3328
3480
|
"studentName",
|
|
3329
3481
|
"email"
|
|
3330
3482
|
],
|
|
3331
|
-
"
|
|
3483
|
+
"mode": "create"
|
|
3332
3484
|
},
|
|
3333
3485
|
{
|
|
3334
|
-
"direction": "horizontal",
|
|
3335
3486
|
"justify": "end",
|
|
3336
3487
|
"children": [
|
|
3337
3488
|
{
|
|
3338
|
-
"
|
|
3489
|
+
"action": "NEXT",
|
|
3339
3490
|
"type": "button",
|
|
3340
|
-
"variant": "primary",
|
|
3341
3491
|
"label": "Next",
|
|
3342
|
-
"
|
|
3492
|
+
"variant": "primary",
|
|
3493
|
+
"icon": "arrow-right"
|
|
3343
3494
|
}
|
|
3344
3495
|
],
|
|
3496
|
+
"direction": "horizontal",
|
|
3345
3497
|
"gap": "sm",
|
|
3346
3498
|
"type": "stack"
|
|
3347
3499
|
}
|
|
@@ -3351,24 +3503,6 @@
|
|
|
3351
3503
|
]
|
|
3352
3504
|
}
|
|
3353
3505
|
],
|
|
3354
|
-
"type": "dashboard-layout",
|
|
3355
|
-
"navItems": [
|
|
3356
|
-
{
|
|
3357
|
-
"icon": "book-open",
|
|
3358
|
-
"label": "Courses",
|
|
3359
|
-
"href": "/courses"
|
|
3360
|
-
},
|
|
3361
|
-
{
|
|
3362
|
-
"icon": "layout-list",
|
|
3363
|
-
"href": "/enroll",
|
|
3364
|
-
"label": "Enroll"
|
|
3365
|
-
},
|
|
3366
|
-
{
|
|
3367
|
-
"label": "Progress",
|
|
3368
|
-
"icon": "layout-list",
|
|
3369
|
-
"href": "/progress"
|
|
3370
|
-
}
|
|
3371
|
-
],
|
|
3372
3506
|
"appName": "LMS"
|
|
3373
3507
|
}
|
|
3374
3508
|
]
|
|
@@ -3559,8 +3693,8 @@
|
|
|
3559
3693
|
"Progress",
|
|
3560
3694
|
{
|
|
3561
3695
|
"emit": {
|
|
3562
|
-
"
|
|
3563
|
-
"
|
|
3696
|
+
"failure": "ProgressLoadFailed",
|
|
3697
|
+
"success": "ProgressLoaded"
|
|
3564
3698
|
}
|
|
3565
3699
|
}
|
|
3566
3700
|
],
|
|
@@ -3569,69 +3703,88 @@
|
|
|
3569
3703
|
"main",
|
|
3570
3704
|
{
|
|
3571
3705
|
"type": "dashboard-layout",
|
|
3706
|
+
"appName": "LMS",
|
|
3707
|
+
"navItems": [
|
|
3708
|
+
{
|
|
3709
|
+
"icon": "book-open",
|
|
3710
|
+
"href": "/courses",
|
|
3711
|
+
"label": "Courses"
|
|
3712
|
+
},
|
|
3713
|
+
{
|
|
3714
|
+
"icon": "layout-list",
|
|
3715
|
+
"href": "/enroll",
|
|
3716
|
+
"label": "Enroll"
|
|
3717
|
+
},
|
|
3718
|
+
{
|
|
3719
|
+
"label": "Progress",
|
|
3720
|
+
"href": "/progress",
|
|
3721
|
+
"icon": "layout-list"
|
|
3722
|
+
}
|
|
3723
|
+
],
|
|
3572
3724
|
"children": [
|
|
3573
3725
|
{
|
|
3574
3726
|
"children": [
|
|
3575
3727
|
{
|
|
3728
|
+
"direction": "vertical",
|
|
3576
3729
|
"type": "stack",
|
|
3730
|
+
"gap": "lg",
|
|
3577
3731
|
"children": [
|
|
3578
3732
|
{
|
|
3579
|
-
"type": "breadcrumb",
|
|
3580
3733
|
"items": [
|
|
3581
3734
|
{
|
|
3582
|
-
"
|
|
3583
|
-
"
|
|
3735
|
+
"href": "/",
|
|
3736
|
+
"label": "Home"
|
|
3584
3737
|
},
|
|
3585
3738
|
{
|
|
3586
3739
|
"label": "Progress"
|
|
3587
3740
|
}
|
|
3588
|
-
]
|
|
3741
|
+
],
|
|
3742
|
+
"type": "breadcrumb"
|
|
3589
3743
|
},
|
|
3590
3744
|
{
|
|
3591
3745
|
"type": "stack",
|
|
3592
3746
|
"direction": "horizontal",
|
|
3593
|
-
"gap": "md",
|
|
3594
|
-
"justify": "between",
|
|
3595
3747
|
"children": [
|
|
3596
3748
|
{
|
|
3597
|
-
"type": "stack",
|
|
3598
3749
|
"direction": "horizontal",
|
|
3599
3750
|
"gap": "md",
|
|
3600
3751
|
"children": [
|
|
3601
3752
|
{
|
|
3602
|
-
"
|
|
3603
|
-
"
|
|
3753
|
+
"name": "trending-up",
|
|
3754
|
+
"type": "icon"
|
|
3604
3755
|
},
|
|
3605
3756
|
{
|
|
3606
|
-
"
|
|
3757
|
+
"content": "Progress",
|
|
3607
3758
|
"type": "typography",
|
|
3608
|
-
"
|
|
3759
|
+
"variant": "h2"
|
|
3609
3760
|
}
|
|
3610
|
-
]
|
|
3761
|
+
],
|
|
3762
|
+
"type": "stack"
|
|
3611
3763
|
},
|
|
3612
3764
|
{
|
|
3765
|
+
"type": "button",
|
|
3613
3766
|
"action": "REFRESH",
|
|
3614
3767
|
"label": "Refresh",
|
|
3615
3768
|
"variant": "secondary",
|
|
3616
|
-
"type": "button",
|
|
3617
3769
|
"icon": "refresh-cw"
|
|
3618
3770
|
}
|
|
3619
|
-
]
|
|
3771
|
+
],
|
|
3772
|
+
"gap": "md",
|
|
3773
|
+
"justify": "between"
|
|
3620
3774
|
},
|
|
3621
3775
|
{
|
|
3622
3776
|
"type": "divider"
|
|
3623
3777
|
},
|
|
3624
3778
|
{
|
|
3625
|
-
"padding": "md",
|
|
3626
3779
|
"children": [
|
|
3627
3780
|
{
|
|
3628
3781
|
"type": "simple-grid",
|
|
3629
3782
|
"cols": 3.0,
|
|
3630
3783
|
"children": [
|
|
3631
3784
|
{
|
|
3632
|
-
"type": "card",
|
|
3633
3785
|
"children": [
|
|
3634
3786
|
{
|
|
3787
|
+
"type": "stack",
|
|
3635
3788
|
"gap": "sm",
|
|
3636
3789
|
"direction": "vertical",
|
|
3637
3790
|
"children": [
|
|
@@ -3641,24 +3794,24 @@
|
|
|
3641
3794
|
"variant": "caption"
|
|
3642
3795
|
},
|
|
3643
3796
|
{
|
|
3644
|
-
"type": "typography",
|
|
3645
3797
|
"variant": "h3",
|
|
3646
|
-
"content": "@entity.courseName"
|
|
3798
|
+
"content": "@entity.courseName",
|
|
3799
|
+
"type": "typography"
|
|
3647
3800
|
}
|
|
3648
|
-
]
|
|
3649
|
-
"type": "stack"
|
|
3801
|
+
]
|
|
3650
3802
|
}
|
|
3651
|
-
]
|
|
3803
|
+
],
|
|
3804
|
+
"type": "card"
|
|
3652
3805
|
},
|
|
3653
3806
|
{
|
|
3654
|
-
"value": "@entity.lessonsCompleted",
|
|
3655
3807
|
"label": "LessonsCompleted",
|
|
3808
|
+
"value": "@entity.lessonsCompleted",
|
|
3656
3809
|
"type": "stat-display"
|
|
3657
3810
|
},
|
|
3658
3811
|
{
|
|
3812
|
+
"type": "stat-display",
|
|
3659
3813
|
"label": "TotalLessons",
|
|
3660
|
-
"value": "@entity.totalLessons"
|
|
3661
|
-
"type": "stat-display"
|
|
3814
|
+
"value": "@entity.totalLessons"
|
|
3662
3815
|
},
|
|
3663
3816
|
{
|
|
3664
3817
|
"type": "stat-display",
|
|
@@ -3666,30 +3819,31 @@
|
|
|
3666
3819
|
"value": "@entity.percentComplete"
|
|
3667
3820
|
},
|
|
3668
3821
|
{
|
|
3669
|
-
"type": "card",
|
|
3670
3822
|
"children": [
|
|
3671
3823
|
{
|
|
3672
3824
|
"direction": "vertical",
|
|
3673
|
-
"type": "stack",
|
|
3674
|
-
"gap": "sm",
|
|
3675
3825
|
"children": [
|
|
3676
3826
|
{
|
|
3677
|
-
"content": "LastActivity",
|
|
3678
3827
|
"type": "typography",
|
|
3679
|
-
"variant": "caption"
|
|
3828
|
+
"variant": "caption",
|
|
3829
|
+
"content": "LastActivity"
|
|
3680
3830
|
},
|
|
3681
3831
|
{
|
|
3682
|
-
"type": "typography",
|
|
3683
3832
|
"variant": "h3",
|
|
3684
|
-
"content": "@entity.lastActivity"
|
|
3833
|
+
"content": "@entity.lastActivity",
|
|
3834
|
+
"type": "typography"
|
|
3685
3835
|
}
|
|
3686
|
-
]
|
|
3836
|
+
],
|
|
3837
|
+
"type": "stack",
|
|
3838
|
+
"gap": "sm"
|
|
3687
3839
|
}
|
|
3688
|
-
]
|
|
3840
|
+
],
|
|
3841
|
+
"type": "card"
|
|
3689
3842
|
}
|
|
3690
3843
|
]
|
|
3691
3844
|
}
|
|
3692
3845
|
],
|
|
3846
|
+
"padding": "md",
|
|
3693
3847
|
"type": "box"
|
|
3694
3848
|
},
|
|
3695
3849
|
{
|
|
@@ -3697,37 +3851,36 @@
|
|
|
3697
3851
|
},
|
|
3698
3852
|
{
|
|
3699
3853
|
"cols": 2.0,
|
|
3700
|
-
"
|
|
3854
|
+
"type": "grid",
|
|
3701
3855
|
"children": [
|
|
3702
3856
|
{
|
|
3703
|
-
"type": "card",
|
|
3704
3857
|
"children": [
|
|
3705
3858
|
{
|
|
3706
|
-
"
|
|
3859
|
+
"content": "Chart View",
|
|
3707
3860
|
"variant": "caption",
|
|
3708
|
-
"
|
|
3861
|
+
"type": "typography"
|
|
3709
3862
|
}
|
|
3710
|
-
]
|
|
3863
|
+
],
|
|
3864
|
+
"type": "card"
|
|
3711
3865
|
},
|
|
3712
3866
|
{
|
|
3713
3867
|
"children": [
|
|
3714
3868
|
{
|
|
3715
|
-
"
|
|
3869
|
+
"content": "Graph View",
|
|
3716
3870
|
"variant": "caption",
|
|
3717
|
-
"
|
|
3871
|
+
"type": "typography"
|
|
3718
3872
|
}
|
|
3719
3873
|
],
|
|
3720
3874
|
"type": "card"
|
|
3721
3875
|
}
|
|
3722
3876
|
],
|
|
3723
|
-
"
|
|
3877
|
+
"gap": "md"
|
|
3724
3878
|
},
|
|
3725
3879
|
{
|
|
3726
|
-
"type": "line-chart",
|
|
3727
3880
|
"data": [
|
|
3728
3881
|
{
|
|
3729
|
-
"
|
|
3730
|
-
"
|
|
3882
|
+
"date": "Jan",
|
|
3883
|
+
"value": 12.0
|
|
3731
3884
|
},
|
|
3732
3885
|
{
|
|
3733
3886
|
"date": "Feb",
|
|
@@ -3746,10 +3899,11 @@
|
|
|
3746
3899
|
"value": 22.0
|
|
3747
3900
|
},
|
|
3748
3901
|
{
|
|
3749
|
-
"
|
|
3750
|
-
"
|
|
3902
|
+
"value": 30.0,
|
|
3903
|
+
"date": "Jun"
|
|
3751
3904
|
}
|
|
3752
|
-
]
|
|
3905
|
+
],
|
|
3906
|
+
"type": "line-chart"
|
|
3753
3907
|
},
|
|
3754
3908
|
{
|
|
3755
3909
|
"type": "chart-legend",
|
|
@@ -3759,65 +3913,45 @@
|
|
|
3759
3913
|
"color": "primary"
|
|
3760
3914
|
},
|
|
3761
3915
|
{
|
|
3762
|
-
"
|
|
3763
|
-
"
|
|
3916
|
+
"label": "Previous",
|
|
3917
|
+
"color": "muted"
|
|
3764
3918
|
}
|
|
3765
3919
|
]
|
|
3766
3920
|
},
|
|
3767
3921
|
{
|
|
3768
|
-
"
|
|
3922
|
+
"nodes": [
|
|
3769
3923
|
{
|
|
3770
|
-
"
|
|
3771
|
-
"
|
|
3924
|
+
"id": "a",
|
|
3925
|
+
"label": "Start"
|
|
3772
3926
|
},
|
|
3773
3927
|
{
|
|
3774
|
-
"
|
|
3775
|
-
"
|
|
3928
|
+
"id": "b",
|
|
3929
|
+
"label": "Process"
|
|
3930
|
+
},
|
|
3931
|
+
{
|
|
3932
|
+
"id": "c",
|
|
3933
|
+
"label": "End"
|
|
3776
3934
|
}
|
|
3777
3935
|
],
|
|
3778
|
-
"width": 400.0,
|
|
3779
|
-
"height": 200.0,
|
|
3780
3936
|
"type": "graph-view",
|
|
3781
|
-
"
|
|
3782
|
-
|
|
3783
|
-
"label": "Start",
|
|
3784
|
-
"id": "a"
|
|
3785
|
-
},
|
|
3937
|
+
"height": 200.0,
|
|
3938
|
+
"edges": [
|
|
3786
3939
|
{
|
|
3787
|
-
"
|
|
3788
|
-
"
|
|
3940
|
+
"source": "a",
|
|
3941
|
+
"target": "b"
|
|
3789
3942
|
},
|
|
3790
3943
|
{
|
|
3791
|
-
"
|
|
3792
|
-
"
|
|
3944
|
+
"source": "b",
|
|
3945
|
+
"target": "c"
|
|
3793
3946
|
}
|
|
3794
|
-
]
|
|
3947
|
+
],
|
|
3948
|
+
"width": 400.0
|
|
3795
3949
|
}
|
|
3796
|
-
]
|
|
3797
|
-
"gap": "lg",
|
|
3798
|
-
"direction": "vertical"
|
|
3950
|
+
]
|
|
3799
3951
|
}
|
|
3800
3952
|
],
|
|
3801
3953
|
"type": "scaled-diagram"
|
|
3802
3954
|
}
|
|
3803
|
-
],
|
|
3804
|
-
"appName": "LMS",
|
|
3805
|
-
"navItems": [
|
|
3806
|
-
{
|
|
3807
|
-
"href": "/courses",
|
|
3808
|
-
"label": "Courses",
|
|
3809
|
-
"icon": "book-open"
|
|
3810
|
-
},
|
|
3811
|
-
{
|
|
3812
|
-
"icon": "layout-list",
|
|
3813
|
-
"href": "/enroll",
|
|
3814
|
-
"label": "Enroll"
|
|
3815
|
-
},
|
|
3816
|
-
{
|
|
3817
|
-
"href": "/progress",
|
|
3818
|
-
"label": "Progress",
|
|
3819
|
-
"icon": "layout-list"
|
|
3820
|
-
}
|
|
3821
3955
|
]
|
|
3822
3956
|
}
|
|
3823
3957
|
]
|
|
@@ -3842,35 +3976,16 @@
|
|
|
3842
3976
|
"render-ui",
|
|
3843
3977
|
"main",
|
|
3844
3978
|
{
|
|
3845
|
-
"appName": "LMS",
|
|
3846
|
-
"navItems": [
|
|
3847
|
-
{
|
|
3848
|
-
"label": "Courses",
|
|
3849
|
-
"icon": "book-open",
|
|
3850
|
-
"href": "/courses"
|
|
3851
|
-
},
|
|
3852
|
-
{
|
|
3853
|
-
"href": "/enroll",
|
|
3854
|
-
"label": "Enroll",
|
|
3855
|
-
"icon": "layout-list"
|
|
3856
|
-
},
|
|
3857
|
-
{
|
|
3858
|
-
"label": "Progress",
|
|
3859
|
-
"href": "/progress",
|
|
3860
|
-
"icon": "layout-list"
|
|
3861
|
-
}
|
|
3862
|
-
],
|
|
3863
3979
|
"type": "dashboard-layout",
|
|
3864
3980
|
"children": [
|
|
3865
3981
|
{
|
|
3866
|
-
"type": "scaled-diagram",
|
|
3867
3982
|
"children": [
|
|
3868
3983
|
{
|
|
3869
|
-
"type": "stack",
|
|
3870
|
-
"direction": "vertical",
|
|
3871
3984
|
"gap": "lg",
|
|
3985
|
+
"direction": "vertical",
|
|
3872
3986
|
"children": [
|
|
3873
3987
|
{
|
|
3988
|
+
"type": "breadcrumb",
|
|
3874
3989
|
"items": [
|
|
3875
3990
|
{
|
|
3876
3991
|
"label": "Home",
|
|
@@ -3879,14 +3994,17 @@
|
|
|
3879
3994
|
{
|
|
3880
3995
|
"label": "Progress"
|
|
3881
3996
|
}
|
|
3882
|
-
]
|
|
3883
|
-
"type": "breadcrumb"
|
|
3997
|
+
]
|
|
3884
3998
|
},
|
|
3885
3999
|
{
|
|
4000
|
+
"gap": "md",
|
|
4001
|
+
"type": "stack",
|
|
4002
|
+
"justify": "between",
|
|
4003
|
+
"direction": "horizontal",
|
|
3886
4004
|
"children": [
|
|
3887
4005
|
{
|
|
4006
|
+
"direction": "horizontal",
|
|
3888
4007
|
"type": "stack",
|
|
3889
|
-
"gap": "md",
|
|
3890
4008
|
"children": [
|
|
3891
4009
|
{
|
|
3892
4010
|
"type": "icon",
|
|
@@ -3898,65 +4016,60 @@
|
|
|
3898
4016
|
"variant": "h2"
|
|
3899
4017
|
}
|
|
3900
4018
|
],
|
|
3901
|
-
"
|
|
4019
|
+
"gap": "md"
|
|
3902
4020
|
},
|
|
3903
4021
|
{
|
|
4022
|
+
"variant": "secondary",
|
|
4023
|
+
"label": "Refresh",
|
|
3904
4024
|
"action": "REFRESH",
|
|
3905
4025
|
"type": "button",
|
|
3906
|
-
"
|
|
3907
|
-
"icon": "refresh-cw",
|
|
3908
|
-
"label": "Refresh"
|
|
4026
|
+
"icon": "refresh-cw"
|
|
3909
4027
|
}
|
|
3910
|
-
]
|
|
3911
|
-
"gap": "md",
|
|
3912
|
-
"justify": "between",
|
|
3913
|
-
"type": "stack",
|
|
3914
|
-
"direction": "horizontal"
|
|
4028
|
+
]
|
|
3915
4029
|
},
|
|
3916
4030
|
{
|
|
3917
4031
|
"type": "divider"
|
|
3918
4032
|
},
|
|
3919
4033
|
{
|
|
3920
|
-
"padding": "md",
|
|
3921
|
-
"type": "box",
|
|
3922
4034
|
"children": [
|
|
3923
4035
|
{
|
|
4036
|
+
"cols": 3.0,
|
|
3924
4037
|
"children": [
|
|
3925
4038
|
{
|
|
3926
4039
|
"children": [
|
|
3927
4040
|
{
|
|
3928
|
-
"direction": "vertical",
|
|
3929
4041
|
"gap": "sm",
|
|
3930
4042
|
"children": [
|
|
3931
4043
|
{
|
|
3932
|
-
"content": "CourseName",
|
|
3933
4044
|
"type": "typography",
|
|
4045
|
+
"content": "CourseName",
|
|
3934
4046
|
"variant": "caption"
|
|
3935
4047
|
},
|
|
3936
4048
|
{
|
|
3937
|
-
"content": "@entity.courseName",
|
|
3938
4049
|
"variant": "h3",
|
|
4050
|
+
"content": "@entity.courseName",
|
|
3939
4051
|
"type": "typography"
|
|
3940
4052
|
}
|
|
3941
4053
|
],
|
|
3942
|
-
"type": "stack"
|
|
4054
|
+
"type": "stack",
|
|
4055
|
+
"direction": "vertical"
|
|
3943
4056
|
}
|
|
3944
4057
|
],
|
|
3945
4058
|
"type": "card"
|
|
3946
4059
|
},
|
|
3947
4060
|
{
|
|
3948
4061
|
"label": "LessonsCompleted",
|
|
3949
|
-
"
|
|
3950
|
-
"
|
|
4062
|
+
"value": "@entity.lessonsCompleted",
|
|
4063
|
+
"type": "stat-display"
|
|
3951
4064
|
},
|
|
3952
4065
|
{
|
|
4066
|
+
"type": "stat-display",
|
|
3953
4067
|
"label": "TotalLessons",
|
|
3954
|
-
"value": "@entity.totalLessons"
|
|
3955
|
-
"type": "stat-display"
|
|
4068
|
+
"value": "@entity.totalLessons"
|
|
3956
4069
|
},
|
|
3957
4070
|
{
|
|
3958
|
-
"label": "PercentComplete",
|
|
3959
4071
|
"type": "stat-display",
|
|
4072
|
+
"label": "PercentComplete",
|
|
3960
4073
|
"value": "@entity.percentComplete"
|
|
3961
4074
|
},
|
|
3962
4075
|
{
|
|
@@ -3964,68 +4077,70 @@
|
|
|
3964
4077
|
"children": [
|
|
3965
4078
|
{
|
|
3966
4079
|
"direction": "vertical",
|
|
4080
|
+
"type": "stack",
|
|
4081
|
+
"gap": "sm",
|
|
3967
4082
|
"children": [
|
|
3968
4083
|
{
|
|
3969
4084
|
"variant": "caption",
|
|
3970
|
-
"
|
|
3971
|
-
"
|
|
4085
|
+
"type": "typography",
|
|
4086
|
+
"content": "LastActivity"
|
|
3972
4087
|
},
|
|
3973
4088
|
{
|
|
4089
|
+
"content": "@entity.lastActivity",
|
|
3974
4090
|
"variant": "h3",
|
|
3975
|
-
"type": "typography"
|
|
3976
|
-
"content": "@entity.lastActivity"
|
|
4091
|
+
"type": "typography"
|
|
3977
4092
|
}
|
|
3978
|
-
]
|
|
3979
|
-
"type": "stack",
|
|
3980
|
-
"gap": "sm"
|
|
4093
|
+
]
|
|
3981
4094
|
}
|
|
3982
4095
|
]
|
|
3983
4096
|
}
|
|
3984
4097
|
],
|
|
3985
|
-
"type": "simple-grid"
|
|
3986
|
-
"cols": 3.0
|
|
4098
|
+
"type": "simple-grid"
|
|
3987
4099
|
}
|
|
3988
|
-
]
|
|
4100
|
+
],
|
|
4101
|
+
"padding": "md",
|
|
4102
|
+
"type": "box"
|
|
3989
4103
|
},
|
|
3990
4104
|
{
|
|
3991
4105
|
"type": "divider"
|
|
3992
4106
|
},
|
|
3993
4107
|
{
|
|
3994
|
-
"
|
|
4108
|
+
"cols": 2.0,
|
|
3995
4109
|
"gap": "md",
|
|
4110
|
+
"type": "grid",
|
|
3996
4111
|
"children": [
|
|
3997
4112
|
{
|
|
3998
4113
|
"children": [
|
|
3999
4114
|
{
|
|
4000
4115
|
"content": "Chart View",
|
|
4001
|
-
"
|
|
4002
|
-
"
|
|
4116
|
+
"type": "typography",
|
|
4117
|
+
"variant": "caption"
|
|
4003
4118
|
}
|
|
4004
4119
|
],
|
|
4005
4120
|
"type": "card"
|
|
4006
4121
|
},
|
|
4007
4122
|
{
|
|
4123
|
+
"type": "card",
|
|
4008
4124
|
"children": [
|
|
4009
4125
|
{
|
|
4010
|
-
"
|
|
4126
|
+
"content": "Graph View",
|
|
4011
4127
|
"variant": "caption",
|
|
4012
|
-
"
|
|
4128
|
+
"type": "typography"
|
|
4013
4129
|
}
|
|
4014
|
-
]
|
|
4015
|
-
"type": "card"
|
|
4130
|
+
]
|
|
4016
4131
|
}
|
|
4017
|
-
]
|
|
4018
|
-
"cols": 2.0
|
|
4132
|
+
]
|
|
4019
4133
|
},
|
|
4020
4134
|
{
|
|
4135
|
+
"type": "line-chart",
|
|
4021
4136
|
"data": [
|
|
4022
4137
|
{
|
|
4023
4138
|
"date": "Jan",
|
|
4024
4139
|
"value": 12.0
|
|
4025
4140
|
},
|
|
4026
4141
|
{
|
|
4027
|
-
"
|
|
4028
|
-
"
|
|
4142
|
+
"date": "Feb",
|
|
4143
|
+
"value": 19.0
|
|
4029
4144
|
},
|
|
4030
4145
|
{
|
|
4031
4146
|
"value": 15.0,
|
|
@@ -4040,17 +4155,16 @@
|
|
|
4040
4155
|
"value": 22.0
|
|
4041
4156
|
},
|
|
4042
4157
|
{
|
|
4043
|
-
"
|
|
4044
|
-
"
|
|
4158
|
+
"value": 30.0,
|
|
4159
|
+
"date": "Jun"
|
|
4045
4160
|
}
|
|
4046
|
-
]
|
|
4047
|
-
"type": "line-chart"
|
|
4161
|
+
]
|
|
4048
4162
|
},
|
|
4049
4163
|
{
|
|
4050
4164
|
"items": [
|
|
4051
4165
|
{
|
|
4052
|
-
"
|
|
4053
|
-
"
|
|
4166
|
+
"label": "Current",
|
|
4167
|
+
"color": "primary"
|
|
4054
4168
|
},
|
|
4055
4169
|
{
|
|
4056
4170
|
"label": "Previous",
|
|
@@ -4060,39 +4174,59 @@
|
|
|
4060
4174
|
"type": "chart-legend"
|
|
4061
4175
|
},
|
|
4062
4176
|
{
|
|
4063
|
-
"height": 200.0,
|
|
4064
4177
|
"width": 400.0,
|
|
4178
|
+
"edges": [
|
|
4179
|
+
{
|
|
4180
|
+
"source": "a",
|
|
4181
|
+
"target": "b"
|
|
4182
|
+
},
|
|
4183
|
+
{
|
|
4184
|
+
"source": "b",
|
|
4185
|
+
"target": "c"
|
|
4186
|
+
}
|
|
4187
|
+
],
|
|
4188
|
+
"height": 200.0,
|
|
4065
4189
|
"nodes": [
|
|
4066
4190
|
{
|
|
4067
|
-
"
|
|
4068
|
-
"
|
|
4191
|
+
"label": "Start",
|
|
4192
|
+
"id": "a"
|
|
4069
4193
|
},
|
|
4070
4194
|
{
|
|
4071
4195
|
"id": "b",
|
|
4072
4196
|
"label": "Process"
|
|
4073
4197
|
},
|
|
4074
4198
|
{
|
|
4075
|
-
"
|
|
4076
|
-
"
|
|
4199
|
+
"id": "c",
|
|
4200
|
+
"label": "End"
|
|
4077
4201
|
}
|
|
4078
4202
|
],
|
|
4079
|
-
"type": "graph-view"
|
|
4080
|
-
"edges": [
|
|
4081
|
-
{
|
|
4082
|
-
"source": "a",
|
|
4083
|
-
"target": "b"
|
|
4084
|
-
},
|
|
4085
|
-
{
|
|
4086
|
-
"target": "c",
|
|
4087
|
-
"source": "b"
|
|
4088
|
-
}
|
|
4089
|
-
]
|
|
4203
|
+
"type": "graph-view"
|
|
4090
4204
|
}
|
|
4091
|
-
]
|
|
4205
|
+
],
|
|
4206
|
+
"type": "stack"
|
|
4092
4207
|
}
|
|
4093
|
-
]
|
|
4208
|
+
],
|
|
4209
|
+
"type": "scaled-diagram"
|
|
4094
4210
|
}
|
|
4095
|
-
]
|
|
4211
|
+
],
|
|
4212
|
+
"navItems": [
|
|
4213
|
+
{
|
|
4214
|
+
"label": "Courses",
|
|
4215
|
+
"href": "/courses",
|
|
4216
|
+
"icon": "book-open"
|
|
4217
|
+
},
|
|
4218
|
+
{
|
|
4219
|
+
"href": "/enroll",
|
|
4220
|
+
"icon": "layout-list",
|
|
4221
|
+
"label": "Enroll"
|
|
4222
|
+
},
|
|
4223
|
+
{
|
|
4224
|
+
"label": "Progress",
|
|
4225
|
+
"icon": "layout-list",
|
|
4226
|
+
"href": "/progress"
|
|
4227
|
+
}
|
|
4228
|
+
],
|
|
4229
|
+
"appName": "LMS"
|
|
4096
4230
|
}
|
|
4097
4231
|
]
|
|
4098
4232
|
]
|
|
@@ -4107,8 +4241,8 @@
|
|
|
4107
4241
|
"Progress",
|
|
4108
4242
|
{
|
|
4109
4243
|
"emit": {
|
|
4110
|
-
"
|
|
4111
|
-
"
|
|
4244
|
+
"success": "ProgressLoaded",
|
|
4245
|
+
"failure": "ProgressLoadFailed"
|
|
4112
4246
|
}
|
|
4113
4247
|
}
|
|
4114
4248
|
],
|
|
@@ -4116,129 +4250,128 @@
|
|
|
4116
4250
|
"render-ui",
|
|
4117
4251
|
"main",
|
|
4118
4252
|
{
|
|
4119
|
-
"type": "dashboard-layout",
|
|
4120
4253
|
"children": [
|
|
4121
4254
|
{
|
|
4122
4255
|
"children": [
|
|
4123
4256
|
{
|
|
4124
|
-
"gap": "lg",
|
|
4125
4257
|
"direction": "vertical",
|
|
4258
|
+
"type": "stack",
|
|
4126
4259
|
"children": [
|
|
4127
4260
|
{
|
|
4128
|
-
"type": "breadcrumb",
|
|
4129
4261
|
"items": [
|
|
4130
4262
|
{
|
|
4131
|
-
"
|
|
4132
|
-
"
|
|
4263
|
+
"label": "Home",
|
|
4264
|
+
"href": "/"
|
|
4133
4265
|
},
|
|
4134
4266
|
{
|
|
4135
4267
|
"label": "Progress"
|
|
4136
4268
|
}
|
|
4137
|
-
]
|
|
4269
|
+
],
|
|
4270
|
+
"type": "breadcrumb"
|
|
4138
4271
|
},
|
|
4139
4272
|
{
|
|
4273
|
+
"direction": "horizontal",
|
|
4274
|
+
"type": "stack",
|
|
4275
|
+
"justify": "between",
|
|
4276
|
+
"gap": "md",
|
|
4140
4277
|
"children": [
|
|
4141
4278
|
{
|
|
4142
|
-
"type": "stack",
|
|
4143
4279
|
"children": [
|
|
4144
4280
|
{
|
|
4145
4281
|
"type": "icon",
|
|
4146
4282
|
"name": "trending-up"
|
|
4147
4283
|
},
|
|
4148
4284
|
{
|
|
4149
|
-
"variant": "h2",
|
|
4150
4285
|
"type": "typography",
|
|
4151
|
-
"content": "Progress"
|
|
4286
|
+
"content": "Progress",
|
|
4287
|
+
"variant": "h2"
|
|
4152
4288
|
}
|
|
4153
4289
|
],
|
|
4154
4290
|
"gap": "md",
|
|
4155
|
-
"direction": "horizontal"
|
|
4291
|
+
"direction": "horizontal",
|
|
4292
|
+
"type": "stack"
|
|
4156
4293
|
},
|
|
4157
4294
|
{
|
|
4158
|
-
"action": "REFRESH",
|
|
4159
|
-
"variant": "secondary",
|
|
4160
4295
|
"type": "button",
|
|
4296
|
+
"variant": "secondary",
|
|
4161
4297
|
"label": "Refresh",
|
|
4162
|
-
"icon": "refresh-cw"
|
|
4298
|
+
"icon": "refresh-cw",
|
|
4299
|
+
"action": "REFRESH"
|
|
4163
4300
|
}
|
|
4164
|
-
]
|
|
4165
|
-
"type": "stack",
|
|
4166
|
-
"direction": "horizontal",
|
|
4167
|
-
"gap": "md",
|
|
4168
|
-
"justify": "between"
|
|
4301
|
+
]
|
|
4169
4302
|
},
|
|
4170
4303
|
{
|
|
4171
4304
|
"type": "divider"
|
|
4172
4305
|
},
|
|
4173
4306
|
{
|
|
4174
|
-
"type": "box",
|
|
4175
4307
|
"children": [
|
|
4176
4308
|
{
|
|
4309
|
+
"type": "simple-grid",
|
|
4310
|
+
"cols": 3.0,
|
|
4177
4311
|
"children": [
|
|
4178
4312
|
{
|
|
4179
4313
|
"children": [
|
|
4180
4314
|
{
|
|
4181
|
-
"gap": "sm",
|
|
4182
|
-
"type": "stack",
|
|
4183
|
-
"direction": "vertical",
|
|
4184
4315
|
"children": [
|
|
4185
4316
|
{
|
|
4186
|
-
"
|
|
4317
|
+
"variant": "caption",
|
|
4187
4318
|
"type": "typography",
|
|
4188
|
-
"
|
|
4319
|
+
"content": "CourseName"
|
|
4189
4320
|
},
|
|
4190
4321
|
{
|
|
4191
|
-
"content": "@entity.courseName",
|
|
4192
4322
|
"type": "typography",
|
|
4193
|
-
"variant": "h3"
|
|
4323
|
+
"variant": "h3",
|
|
4324
|
+
"content": "@entity.courseName"
|
|
4194
4325
|
}
|
|
4195
|
-
]
|
|
4326
|
+
],
|
|
4327
|
+
"gap": "sm",
|
|
4328
|
+
"type": "stack",
|
|
4329
|
+
"direction": "vertical"
|
|
4196
4330
|
}
|
|
4197
4331
|
],
|
|
4198
4332
|
"type": "card"
|
|
4199
4333
|
},
|
|
4200
4334
|
{
|
|
4201
4335
|
"label": "LessonsCompleted",
|
|
4202
|
-
"
|
|
4203
|
-
"
|
|
4336
|
+
"value": "@entity.lessonsCompleted",
|
|
4337
|
+
"type": "stat-display"
|
|
4204
4338
|
},
|
|
4205
4339
|
{
|
|
4206
|
-
"label": "TotalLessons",
|
|
4207
4340
|
"value": "@entity.totalLessons",
|
|
4208
|
-
"type": "stat-display"
|
|
4341
|
+
"type": "stat-display",
|
|
4342
|
+
"label": "TotalLessons"
|
|
4209
4343
|
},
|
|
4210
4344
|
{
|
|
4345
|
+
"type": "stat-display",
|
|
4211
4346
|
"label": "PercentComplete",
|
|
4212
|
-
"value": "@entity.percentComplete"
|
|
4213
|
-
"type": "stat-display"
|
|
4347
|
+
"value": "@entity.percentComplete"
|
|
4214
4348
|
},
|
|
4215
4349
|
{
|
|
4216
4350
|
"type": "card",
|
|
4217
4351
|
"children": [
|
|
4218
4352
|
{
|
|
4353
|
+
"gap": "sm",
|
|
4354
|
+
"type": "stack",
|
|
4355
|
+
"direction": "vertical",
|
|
4219
4356
|
"children": [
|
|
4220
4357
|
{
|
|
4221
|
-
"
|
|
4358
|
+
"type": "typography",
|
|
4222
4359
|
"content": "LastActivity",
|
|
4223
|
-
"
|
|
4360
|
+
"variant": "caption"
|
|
4224
4361
|
},
|
|
4225
4362
|
{
|
|
4226
4363
|
"variant": "h3",
|
|
4227
4364
|
"content": "@entity.lastActivity",
|
|
4228
4365
|
"type": "typography"
|
|
4229
4366
|
}
|
|
4230
|
-
]
|
|
4231
|
-
"type": "stack",
|
|
4232
|
-
"gap": "sm",
|
|
4233
|
-
"direction": "vertical"
|
|
4367
|
+
]
|
|
4234
4368
|
}
|
|
4235
4369
|
]
|
|
4236
4370
|
}
|
|
4237
|
-
]
|
|
4238
|
-
"cols": 3.0,
|
|
4239
|
-
"type": "simple-grid"
|
|
4371
|
+
]
|
|
4240
4372
|
}
|
|
4241
4373
|
],
|
|
4374
|
+
"type": "box",
|
|
4242
4375
|
"padding": "md"
|
|
4243
4376
|
},
|
|
4244
4377
|
{
|
|
@@ -4246,7 +4379,6 @@
|
|
|
4246
4379
|
},
|
|
4247
4380
|
{
|
|
4248
4381
|
"cols": 2.0,
|
|
4249
|
-
"type": "grid",
|
|
4250
4382
|
"gap": "md",
|
|
4251
4383
|
"children": [
|
|
4252
4384
|
{
|
|
@@ -4254,8 +4386,8 @@
|
|
|
4254
4386
|
"children": [
|
|
4255
4387
|
{
|
|
4256
4388
|
"variant": "caption",
|
|
4257
|
-
"
|
|
4258
|
-
"
|
|
4389
|
+
"type": "typography",
|
|
4390
|
+
"content": "Chart View"
|
|
4259
4391
|
}
|
|
4260
4392
|
]
|
|
4261
4393
|
},
|
|
@@ -4263,13 +4395,14 @@
|
|
|
4263
4395
|
"type": "card",
|
|
4264
4396
|
"children": [
|
|
4265
4397
|
{
|
|
4398
|
+
"variant": "caption",
|
|
4266
4399
|
"type": "typography",
|
|
4267
|
-
"content": "Graph View"
|
|
4268
|
-
"variant": "caption"
|
|
4400
|
+
"content": "Graph View"
|
|
4269
4401
|
}
|
|
4270
4402
|
]
|
|
4271
4403
|
}
|
|
4272
|
-
]
|
|
4404
|
+
],
|
|
4405
|
+
"type": "grid"
|
|
4273
4406
|
},
|
|
4274
4407
|
{
|
|
4275
4408
|
"type": "line-chart",
|
|
@@ -4283,8 +4416,8 @@
|
|
|
4283
4416
|
"value": 19.0
|
|
4284
4417
|
},
|
|
4285
4418
|
{
|
|
4286
|
-
"
|
|
4287
|
-
"
|
|
4419
|
+
"date": "Mar",
|
|
4420
|
+
"value": 15.0
|
|
4288
4421
|
},
|
|
4289
4422
|
{
|
|
4290
4423
|
"value": 25.0,
|
|
@@ -4295,8 +4428,8 @@
|
|
|
4295
4428
|
"date": "May"
|
|
4296
4429
|
},
|
|
4297
4430
|
{
|
|
4298
|
-
"
|
|
4299
|
-
"
|
|
4431
|
+
"value": 30.0,
|
|
4432
|
+
"date": "Jun"
|
|
4300
4433
|
}
|
|
4301
4434
|
]
|
|
4302
4435
|
},
|
|
@@ -4314,57 +4447,58 @@
|
|
|
4314
4447
|
"type": "chart-legend"
|
|
4315
4448
|
},
|
|
4316
4449
|
{
|
|
4317
|
-
"type": "graph-view",
|
|
4318
|
-
"height": 200.0,
|
|
4319
|
-
"width": 400.0,
|
|
4320
|
-
"edges": [
|
|
4321
|
-
{
|
|
4322
|
-
"source": "a",
|
|
4323
|
-
"target": "b"
|
|
4324
|
-
},
|
|
4325
|
-
{
|
|
4326
|
-
"target": "c",
|
|
4327
|
-
"source": "b"
|
|
4328
|
-
}
|
|
4329
|
-
],
|
|
4330
4450
|
"nodes": [
|
|
4331
4451
|
{
|
|
4332
|
-
"
|
|
4333
|
-
"
|
|
4452
|
+
"id": "a",
|
|
4453
|
+
"label": "Start"
|
|
4334
4454
|
},
|
|
4335
4455
|
{
|
|
4336
4456
|
"id": "b",
|
|
4337
4457
|
"label": "Process"
|
|
4338
4458
|
},
|
|
4339
4459
|
{
|
|
4340
|
-
"
|
|
4341
|
-
"
|
|
4460
|
+
"label": "End",
|
|
4461
|
+
"id": "c"
|
|
4342
4462
|
}
|
|
4343
|
-
]
|
|
4463
|
+
],
|
|
4464
|
+
"type": "graph-view",
|
|
4465
|
+
"edges": [
|
|
4466
|
+
{
|
|
4467
|
+
"target": "b",
|
|
4468
|
+
"source": "a"
|
|
4469
|
+
},
|
|
4470
|
+
{
|
|
4471
|
+
"source": "b",
|
|
4472
|
+
"target": "c"
|
|
4473
|
+
}
|
|
4474
|
+
],
|
|
4475
|
+
"width": 400.0,
|
|
4476
|
+
"height": 200.0
|
|
4344
4477
|
}
|
|
4345
4478
|
],
|
|
4346
|
-
"
|
|
4479
|
+
"gap": "lg"
|
|
4347
4480
|
}
|
|
4348
4481
|
],
|
|
4349
4482
|
"type": "scaled-diagram"
|
|
4350
4483
|
}
|
|
4351
4484
|
],
|
|
4352
4485
|
"appName": "LMS",
|
|
4486
|
+
"type": "dashboard-layout",
|
|
4353
4487
|
"navItems": [
|
|
4354
4488
|
{
|
|
4355
|
-
"
|
|
4489
|
+
"href": "/courses",
|
|
4356
4490
|
"label": "Courses",
|
|
4357
|
-
"
|
|
4491
|
+
"icon": "book-open"
|
|
4358
4492
|
},
|
|
4359
4493
|
{
|
|
4494
|
+
"label": "Enroll",
|
|
4360
4495
|
"icon": "layout-list",
|
|
4361
|
-
"href": "/enroll"
|
|
4362
|
-
"label": "Enroll"
|
|
4496
|
+
"href": "/enroll"
|
|
4363
4497
|
},
|
|
4364
4498
|
{
|
|
4499
|
+
"icon": "layout-list",
|
|
4365
4500
|
"label": "Progress",
|
|
4366
|
-
"href": "/progress"
|
|
4367
|
-
"icon": "layout-list"
|
|
4501
|
+
"href": "/progress"
|
|
4368
4502
|
}
|
|
4369
4503
|
]
|
|
4370
4504
|
}
|
|
@@ -4392,16 +4526,31 @@
|
|
|
4392
4526
|
{
|
|
4393
4527
|
"type": "dashboard-layout",
|
|
4394
4528
|
"appName": "LMS",
|
|
4529
|
+
"navItems": [
|
|
4530
|
+
{
|
|
4531
|
+
"href": "/courses",
|
|
4532
|
+
"icon": "book-open",
|
|
4533
|
+
"label": "Courses"
|
|
4534
|
+
},
|
|
4535
|
+
{
|
|
4536
|
+
"label": "Enroll",
|
|
4537
|
+
"href": "/enroll",
|
|
4538
|
+
"icon": "layout-list"
|
|
4539
|
+
},
|
|
4540
|
+
{
|
|
4541
|
+
"href": "/progress",
|
|
4542
|
+
"icon": "layout-list",
|
|
4543
|
+
"label": "Progress"
|
|
4544
|
+
}
|
|
4545
|
+
],
|
|
4395
4546
|
"children": [
|
|
4396
4547
|
{
|
|
4397
4548
|
"children": [
|
|
4398
4549
|
{
|
|
4399
|
-
"gap": "lg",
|
|
4400
|
-
"type": "stack",
|
|
4401
4550
|
"direction": "vertical",
|
|
4551
|
+
"type": "stack",
|
|
4402
4552
|
"children": [
|
|
4403
4553
|
{
|
|
4404
|
-
"type": "breadcrumb",
|
|
4405
4554
|
"items": [
|
|
4406
4555
|
{
|
|
4407
4556
|
"href": "/",
|
|
@@ -4410,16 +4559,14 @@
|
|
|
4410
4559
|
{
|
|
4411
4560
|
"label": "Progress"
|
|
4412
4561
|
}
|
|
4413
|
-
]
|
|
4562
|
+
],
|
|
4563
|
+
"type": "breadcrumb"
|
|
4414
4564
|
},
|
|
4415
4565
|
{
|
|
4416
|
-
"direction": "horizontal",
|
|
4417
4566
|
"type": "stack",
|
|
4418
|
-
"justify": "between",
|
|
4419
4567
|
"children": [
|
|
4420
4568
|
{
|
|
4421
4569
|
"direction": "horizontal",
|
|
4422
|
-
"gap": "md",
|
|
4423
4570
|
"type": "stack",
|
|
4424
4571
|
"children": [
|
|
4425
4572
|
{
|
|
@@ -4428,30 +4575,30 @@
|
|
|
4428
4575
|
},
|
|
4429
4576
|
{
|
|
4430
4577
|
"content": "Progress",
|
|
4431
|
-
"
|
|
4432
|
-
"
|
|
4578
|
+
"type": "typography",
|
|
4579
|
+
"variant": "h2"
|
|
4433
4580
|
}
|
|
4434
|
-
]
|
|
4581
|
+
],
|
|
4582
|
+
"gap": "md"
|
|
4435
4583
|
},
|
|
4436
4584
|
{
|
|
4437
|
-
"type": "button",
|
|
4438
4585
|
"icon": "refresh-cw",
|
|
4439
|
-
"variant": "secondary",
|
|
4440
4586
|
"label": "Refresh",
|
|
4441
|
-
"action": "REFRESH"
|
|
4587
|
+
"action": "REFRESH",
|
|
4588
|
+
"type": "button",
|
|
4589
|
+
"variant": "secondary"
|
|
4442
4590
|
}
|
|
4443
4591
|
],
|
|
4444
|
-
"
|
|
4592
|
+
"justify": "between",
|
|
4593
|
+
"gap": "md",
|
|
4594
|
+
"direction": "horizontal"
|
|
4445
4595
|
},
|
|
4446
4596
|
{
|
|
4447
4597
|
"type": "divider"
|
|
4448
4598
|
},
|
|
4449
4599
|
{
|
|
4450
|
-
"type": "box",
|
|
4451
|
-
"padding": "md",
|
|
4452
4600
|
"children": [
|
|
4453
4601
|
{
|
|
4454
|
-
"cols": 3.0,
|
|
4455
4602
|
"children": [
|
|
4456
4603
|
{
|
|
4457
4604
|
"type": "card",
|
|
@@ -4459,9 +4606,9 @@
|
|
|
4459
4606
|
{
|
|
4460
4607
|
"children": [
|
|
4461
4608
|
{
|
|
4609
|
+
"variant": "caption",
|
|
4462
4610
|
"content": "CourseName",
|
|
4463
|
-
"type": "typography"
|
|
4464
|
-
"variant": "caption"
|
|
4611
|
+
"type": "typography"
|
|
4465
4612
|
},
|
|
4466
4613
|
{
|
|
4467
4614
|
"type": "typography",
|
|
@@ -4486,14 +4633,14 @@
|
|
|
4486
4633
|
"value": "@entity.totalLessons"
|
|
4487
4634
|
},
|
|
4488
4635
|
{
|
|
4636
|
+
"type": "stat-display",
|
|
4489
4637
|
"value": "@entity.percentComplete",
|
|
4490
|
-
"label": "PercentComplete"
|
|
4491
|
-
"type": "stat-display"
|
|
4638
|
+
"label": "PercentComplete"
|
|
4492
4639
|
},
|
|
4493
4640
|
{
|
|
4641
|
+
"type": "card",
|
|
4494
4642
|
"children": [
|
|
4495
4643
|
{
|
|
4496
|
-
"direction": "vertical",
|
|
4497
4644
|
"children": [
|
|
4498
4645
|
{
|
|
4499
4646
|
"variant": "caption",
|
|
@@ -4506,16 +4653,19 @@
|
|
|
4506
4653
|
"type": "typography"
|
|
4507
4654
|
}
|
|
4508
4655
|
],
|
|
4656
|
+
"gap": "sm",
|
|
4509
4657
|
"type": "stack",
|
|
4510
|
-
"
|
|
4658
|
+
"direction": "vertical"
|
|
4511
4659
|
}
|
|
4512
|
-
]
|
|
4513
|
-
"type": "card"
|
|
4660
|
+
]
|
|
4514
4661
|
}
|
|
4515
4662
|
],
|
|
4516
|
-
"type": "simple-grid"
|
|
4663
|
+
"type": "simple-grid",
|
|
4664
|
+
"cols": 3.0
|
|
4517
4665
|
}
|
|
4518
|
-
]
|
|
4666
|
+
],
|
|
4667
|
+
"type": "box",
|
|
4668
|
+
"padding": "md"
|
|
4519
4669
|
},
|
|
4520
4670
|
{
|
|
4521
4671
|
"type": "divider"
|
|
@@ -4523,14 +4673,15 @@
|
|
|
4523
4673
|
{
|
|
4524
4674
|
"gap": "md",
|
|
4525
4675
|
"type": "grid",
|
|
4676
|
+
"cols": 2.0,
|
|
4526
4677
|
"children": [
|
|
4527
4678
|
{
|
|
4528
4679
|
"type": "card",
|
|
4529
4680
|
"children": [
|
|
4530
4681
|
{
|
|
4531
|
-
"variant": "caption",
|
|
4532
4682
|
"content": "Chart View",
|
|
4533
|
-
"type": "typography"
|
|
4683
|
+
"type": "typography",
|
|
4684
|
+
"variant": "caption"
|
|
4534
4685
|
}
|
|
4535
4686
|
]
|
|
4536
4687
|
},
|
|
@@ -4538,108 +4689,91 @@
|
|
|
4538
4689
|
"type": "card",
|
|
4539
4690
|
"children": [
|
|
4540
4691
|
{
|
|
4541
|
-
"variant": "caption",
|
|
4542
4692
|
"content": "Graph View",
|
|
4543
|
-
"type": "typography"
|
|
4693
|
+
"type": "typography",
|
|
4694
|
+
"variant": "caption"
|
|
4544
4695
|
}
|
|
4545
4696
|
]
|
|
4546
4697
|
}
|
|
4547
|
-
]
|
|
4548
|
-
"cols": 2.0
|
|
4698
|
+
]
|
|
4549
4699
|
},
|
|
4550
4700
|
{
|
|
4551
4701
|
"type": "line-chart",
|
|
4552
4702
|
"data": [
|
|
4553
4703
|
{
|
|
4554
|
-
"
|
|
4555
|
-
"
|
|
4704
|
+
"value": 12.0,
|
|
4705
|
+
"date": "Jan"
|
|
4556
4706
|
},
|
|
4557
4707
|
{
|
|
4558
4708
|
"value": 19.0,
|
|
4559
4709
|
"date": "Feb"
|
|
4560
4710
|
},
|
|
4561
4711
|
{
|
|
4562
|
-
"
|
|
4563
|
-
"
|
|
4712
|
+
"value": 15.0,
|
|
4713
|
+
"date": "Mar"
|
|
4564
4714
|
},
|
|
4565
4715
|
{
|
|
4566
|
-
"
|
|
4567
|
-
"
|
|
4716
|
+
"date": "Apr",
|
|
4717
|
+
"value": 25.0
|
|
4568
4718
|
},
|
|
4569
4719
|
{
|
|
4570
4720
|
"value": 22.0,
|
|
4571
4721
|
"date": "May"
|
|
4572
4722
|
},
|
|
4573
4723
|
{
|
|
4574
|
-
"
|
|
4575
|
-
"
|
|
4724
|
+
"date": "Jun",
|
|
4725
|
+
"value": 30.0
|
|
4576
4726
|
}
|
|
4577
4727
|
]
|
|
4578
4728
|
},
|
|
4579
4729
|
{
|
|
4730
|
+
"type": "chart-legend",
|
|
4580
4731
|
"items": [
|
|
4581
4732
|
{
|
|
4582
|
-
"
|
|
4583
|
-
"
|
|
4733
|
+
"label": "Current",
|
|
4734
|
+
"color": "primary"
|
|
4584
4735
|
},
|
|
4585
4736
|
{
|
|
4586
4737
|
"color": "muted",
|
|
4587
4738
|
"label": "Previous"
|
|
4588
4739
|
}
|
|
4589
|
-
]
|
|
4590
|
-
"type": "chart-legend"
|
|
4740
|
+
]
|
|
4591
4741
|
},
|
|
4592
4742
|
{
|
|
4593
|
-
"
|
|
4743
|
+
"edges": [
|
|
4744
|
+
{
|
|
4745
|
+
"source": "a",
|
|
4746
|
+
"target": "b"
|
|
4747
|
+
},
|
|
4748
|
+
{
|
|
4749
|
+
"target": "c",
|
|
4750
|
+
"source": "b"
|
|
4751
|
+
}
|
|
4752
|
+
],
|
|
4594
4753
|
"width": 400.0,
|
|
4754
|
+
"type": "graph-view",
|
|
4595
4755
|
"nodes": [
|
|
4596
4756
|
{
|
|
4597
4757
|
"id": "a",
|
|
4598
4758
|
"label": "Start"
|
|
4599
4759
|
},
|
|
4600
4760
|
{
|
|
4601
|
-
"
|
|
4602
|
-
"
|
|
4603
|
-
},
|
|
4604
|
-
{
|
|
4605
|
-
"id": "c",
|
|
4606
|
-
"label": "End"
|
|
4607
|
-
}
|
|
4608
|
-
],
|
|
4609
|
-
"edges": [
|
|
4610
|
-
{
|
|
4611
|
-
"source": "a",
|
|
4612
|
-
"target": "b"
|
|
4761
|
+
"label": "Process",
|
|
4762
|
+
"id": "b"
|
|
4613
4763
|
},
|
|
4614
4764
|
{
|
|
4615
|
-
"
|
|
4616
|
-
"
|
|
4765
|
+
"label": "End",
|
|
4766
|
+
"id": "c"
|
|
4617
4767
|
}
|
|
4618
4768
|
],
|
|
4619
|
-
"
|
|
4769
|
+
"height": 200.0
|
|
4620
4770
|
}
|
|
4621
|
-
]
|
|
4771
|
+
],
|
|
4772
|
+
"gap": "lg"
|
|
4622
4773
|
}
|
|
4623
4774
|
],
|
|
4624
4775
|
"type": "scaled-diagram"
|
|
4625
4776
|
}
|
|
4626
|
-
],
|
|
4627
|
-
"navItems": [
|
|
4628
|
-
{
|
|
4629
|
-
"icon": "book-open",
|
|
4630
|
-
"label": "Courses",
|
|
4631
|
-
"href": "/courses"
|
|
4632
|
-
},
|
|
4633
|
-
{
|
|
4634
|
-
"label": "Enroll",
|
|
4635
|
-
"href": "/enroll",
|
|
4636
|
-
"icon": "layout-list"
|
|
4637
|
-
},
|
|
4638
|
-
{
|
|
4639
|
-
"href": "/progress",
|
|
4640
|
-
"label": "Progress",
|
|
4641
|
-
"icon": "layout-list"
|
|
4642
|
-
}
|
|
4643
4777
|
]
|
|
4644
4778
|
}
|
|
4645
4779
|
]
|
|
@@ -4664,10 +4798,30 @@
|
|
|
4664
4798
|
"render-ui",
|
|
4665
4799
|
"main",
|
|
4666
4800
|
{
|
|
4801
|
+
"navItems": [
|
|
4802
|
+
{
|
|
4803
|
+
"icon": "book-open",
|
|
4804
|
+
"href": "/courses",
|
|
4805
|
+
"label": "Courses"
|
|
4806
|
+
},
|
|
4807
|
+
{
|
|
4808
|
+
"label": "Enroll",
|
|
4809
|
+
"icon": "layout-list",
|
|
4810
|
+
"href": "/enroll"
|
|
4811
|
+
},
|
|
4812
|
+
{
|
|
4813
|
+
"label": "Progress",
|
|
4814
|
+
"icon": "layout-list",
|
|
4815
|
+
"href": "/progress"
|
|
4816
|
+
}
|
|
4817
|
+
],
|
|
4818
|
+
"type": "dashboard-layout",
|
|
4819
|
+
"appName": "LMS",
|
|
4667
4820
|
"children": [
|
|
4668
4821
|
{
|
|
4669
4822
|
"children": [
|
|
4670
4823
|
{
|
|
4824
|
+
"direction": "vertical",
|
|
4671
4825
|
"gap": "lg",
|
|
4672
4826
|
"children": [
|
|
4673
4827
|
{
|
|
@@ -4683,35 +4837,35 @@
|
|
|
4683
4837
|
"type": "breadcrumb"
|
|
4684
4838
|
},
|
|
4685
4839
|
{
|
|
4686
|
-
"direction": "horizontal",
|
|
4687
|
-
"justify": "between",
|
|
4688
|
-
"type": "stack",
|
|
4689
|
-
"gap": "md",
|
|
4690
4840
|
"children": [
|
|
4691
4841
|
{
|
|
4692
|
-
"type": "stack",
|
|
4693
4842
|
"children": [
|
|
4694
4843
|
{
|
|
4695
|
-
"
|
|
4696
|
-
"
|
|
4844
|
+
"type": "icon",
|
|
4845
|
+
"name": "trending-up"
|
|
4697
4846
|
},
|
|
4698
4847
|
{
|
|
4699
|
-
"variant": "h2",
|
|
4700
4848
|
"content": "Progress",
|
|
4701
|
-
"type": "typography"
|
|
4849
|
+
"type": "typography",
|
|
4850
|
+
"variant": "h2"
|
|
4702
4851
|
}
|
|
4703
4852
|
],
|
|
4704
4853
|
"gap": "md",
|
|
4854
|
+
"type": "stack",
|
|
4705
4855
|
"direction": "horizontal"
|
|
4706
4856
|
},
|
|
4707
4857
|
{
|
|
4858
|
+
"type": "button",
|
|
4708
4859
|
"label": "Refresh",
|
|
4709
|
-
"action": "REFRESH",
|
|
4710
|
-
"icon": "refresh-cw",
|
|
4711
4860
|
"variant": "secondary",
|
|
4712
|
-
"
|
|
4861
|
+
"icon": "refresh-cw",
|
|
4862
|
+
"action": "REFRESH"
|
|
4713
4863
|
}
|
|
4714
|
-
]
|
|
4864
|
+
],
|
|
4865
|
+
"gap": "md",
|
|
4866
|
+
"type": "stack",
|
|
4867
|
+
"justify": "between",
|
|
4868
|
+
"direction": "horizontal"
|
|
4715
4869
|
},
|
|
4716
4870
|
{
|
|
4717
4871
|
"type": "divider"
|
|
@@ -4719,55 +4873,53 @@
|
|
|
4719
4873
|
{
|
|
4720
4874
|
"children": [
|
|
4721
4875
|
{
|
|
4876
|
+
"cols": 3.0,
|
|
4722
4877
|
"children": [
|
|
4723
4878
|
{
|
|
4724
4879
|
"type": "card",
|
|
4725
4880
|
"children": [
|
|
4726
4881
|
{
|
|
4727
|
-
"direction": "vertical",
|
|
4728
|
-
"gap": "sm",
|
|
4729
4882
|
"type": "stack",
|
|
4883
|
+
"gap": "sm",
|
|
4730
4884
|
"children": [
|
|
4731
4885
|
{
|
|
4886
|
+
"type": "typography",
|
|
4732
4887
|
"variant": "caption",
|
|
4733
|
-
"content": "CourseName"
|
|
4734
|
-
"type": "typography"
|
|
4888
|
+
"content": "CourseName"
|
|
4735
4889
|
},
|
|
4736
4890
|
{
|
|
4891
|
+
"variant": "h3",
|
|
4737
4892
|
"content": "@entity.courseName",
|
|
4738
|
-
"type": "typography"
|
|
4739
|
-
"variant": "h3"
|
|
4893
|
+
"type": "typography"
|
|
4740
4894
|
}
|
|
4741
|
-
]
|
|
4895
|
+
],
|
|
4896
|
+
"direction": "vertical"
|
|
4742
4897
|
}
|
|
4743
4898
|
]
|
|
4744
4899
|
},
|
|
4745
4900
|
{
|
|
4746
|
-
"
|
|
4901
|
+
"value": "@entity.lessonsCompleted",
|
|
4747
4902
|
"type": "stat-display",
|
|
4748
|
-
"
|
|
4903
|
+
"label": "LessonsCompleted"
|
|
4749
4904
|
},
|
|
4750
4905
|
{
|
|
4751
|
-
"type": "stat-display",
|
|
4752
4906
|
"label": "TotalLessons",
|
|
4907
|
+
"type": "stat-display",
|
|
4753
4908
|
"value": "@entity.totalLessons"
|
|
4754
4909
|
},
|
|
4755
4910
|
{
|
|
4911
|
+
"label": "PercentComplete",
|
|
4756
4912
|
"type": "stat-display",
|
|
4757
|
-
"value": "@entity.percentComplete"
|
|
4758
|
-
"label": "PercentComplete"
|
|
4913
|
+
"value": "@entity.percentComplete"
|
|
4759
4914
|
},
|
|
4760
4915
|
{
|
|
4761
|
-
"type": "card",
|
|
4762
4916
|
"children": [
|
|
4763
4917
|
{
|
|
4764
|
-
"direction": "vertical",
|
|
4765
|
-
"type": "stack",
|
|
4766
4918
|
"children": [
|
|
4767
4919
|
{
|
|
4768
4920
|
"content": "LastActivity",
|
|
4769
|
-
"
|
|
4770
|
-
"
|
|
4921
|
+
"type": "typography",
|
|
4922
|
+
"variant": "caption"
|
|
4771
4923
|
},
|
|
4772
4924
|
{
|
|
4773
4925
|
"variant": "h3",
|
|
@@ -4775,76 +4927,78 @@
|
|
|
4775
4927
|
"content": "@entity.lastActivity"
|
|
4776
4928
|
}
|
|
4777
4929
|
],
|
|
4930
|
+
"direction": "vertical",
|
|
4931
|
+
"type": "stack",
|
|
4778
4932
|
"gap": "sm"
|
|
4779
4933
|
}
|
|
4780
|
-
]
|
|
4934
|
+
],
|
|
4935
|
+
"type": "card"
|
|
4781
4936
|
}
|
|
4782
4937
|
],
|
|
4783
|
-
"type": "simple-grid"
|
|
4784
|
-
"cols": 3.0
|
|
4938
|
+
"type": "simple-grid"
|
|
4785
4939
|
}
|
|
4786
4940
|
],
|
|
4787
|
-
"
|
|
4788
|
-
"
|
|
4941
|
+
"type": "box",
|
|
4942
|
+
"padding": "md"
|
|
4789
4943
|
},
|
|
4790
4944
|
{
|
|
4791
4945
|
"type": "divider"
|
|
4792
4946
|
},
|
|
4793
4947
|
{
|
|
4948
|
+
"type": "grid",
|
|
4794
4949
|
"gap": "md",
|
|
4795
4950
|
"cols": 2.0,
|
|
4796
4951
|
"children": [
|
|
4797
4952
|
{
|
|
4798
|
-
"type": "card",
|
|
4799
4953
|
"children": [
|
|
4800
4954
|
{
|
|
4801
4955
|
"variant": "caption",
|
|
4802
4956
|
"type": "typography",
|
|
4803
4957
|
"content": "Chart View"
|
|
4804
4958
|
}
|
|
4805
|
-
]
|
|
4959
|
+
],
|
|
4960
|
+
"type": "card"
|
|
4806
4961
|
},
|
|
4807
4962
|
{
|
|
4808
|
-
"type": "card",
|
|
4809
4963
|
"children": [
|
|
4810
4964
|
{
|
|
4965
|
+
"content": "Graph View",
|
|
4811
4966
|
"type": "typography",
|
|
4812
|
-
"variant": "caption"
|
|
4813
|
-
"content": "Graph View"
|
|
4967
|
+
"variant": "caption"
|
|
4814
4968
|
}
|
|
4815
|
-
]
|
|
4969
|
+
],
|
|
4970
|
+
"type": "card"
|
|
4816
4971
|
}
|
|
4817
|
-
]
|
|
4818
|
-
"type": "grid"
|
|
4972
|
+
]
|
|
4819
4973
|
},
|
|
4820
4974
|
{
|
|
4821
|
-
"type": "line-chart",
|
|
4822
4975
|
"data": [
|
|
4823
4976
|
{
|
|
4824
4977
|
"value": 12.0,
|
|
4825
4978
|
"date": "Jan"
|
|
4826
4979
|
},
|
|
4827
4980
|
{
|
|
4828
|
-
"
|
|
4829
|
-
"
|
|
4981
|
+
"value": 19.0,
|
|
4982
|
+
"date": "Feb"
|
|
4830
4983
|
},
|
|
4831
4984
|
{
|
|
4832
|
-
"
|
|
4833
|
-
"
|
|
4985
|
+
"value": 15.0,
|
|
4986
|
+
"date": "Mar"
|
|
4834
4987
|
},
|
|
4835
4988
|
{
|
|
4836
|
-
"
|
|
4837
|
-
"
|
|
4989
|
+
"value": 25.0,
|
|
4990
|
+
"date": "Apr"
|
|
4838
4991
|
},
|
|
4839
4992
|
{
|
|
4840
|
-
"
|
|
4841
|
-
"
|
|
4993
|
+
"date": "May",
|
|
4994
|
+
"value": 22.0
|
|
4842
4995
|
},
|
|
4843
4996
|
{
|
|
4844
|
-
"
|
|
4845
|
-
"
|
|
4997
|
+
"date": "Jun",
|
|
4998
|
+
"value": 30.0
|
|
4846
4999
|
}
|
|
4847
|
-
]
|
|
5000
|
+
],
|
|
5001
|
+
"type": "line-chart"
|
|
4848
5002
|
},
|
|
4849
5003
|
{
|
|
4850
5004
|
"items": [
|
|
@@ -4860,6 +5014,7 @@
|
|
|
4860
5014
|
"type": "chart-legend"
|
|
4861
5015
|
},
|
|
4862
5016
|
{
|
|
5017
|
+
"type": "graph-view",
|
|
4863
5018
|
"nodes": [
|
|
4864
5019
|
{
|
|
4865
5020
|
"label": "Start",
|
|
@@ -4870,50 +5025,29 @@
|
|
|
4870
5025
|
"label": "Process"
|
|
4871
5026
|
},
|
|
4872
5027
|
{
|
|
4873
|
-
"
|
|
4874
|
-
"
|
|
5028
|
+
"label": "End",
|
|
5029
|
+
"id": "c"
|
|
4875
5030
|
}
|
|
4876
5031
|
],
|
|
4877
|
-
"width": 400.0,
|
|
4878
|
-
"type": "graph-view",
|
|
4879
5032
|
"edges": [
|
|
4880
5033
|
{
|
|
4881
|
-
"
|
|
4882
|
-
"
|
|
5034
|
+
"target": "b",
|
|
5035
|
+
"source": "a"
|
|
4883
5036
|
},
|
|
4884
5037
|
{
|
|
4885
5038
|
"source": "b",
|
|
4886
5039
|
"target": "c"
|
|
4887
5040
|
}
|
|
4888
5041
|
],
|
|
5042
|
+
"width": 400.0,
|
|
4889
5043
|
"height": 200.0
|
|
4890
5044
|
}
|
|
4891
5045
|
],
|
|
4892
|
-
"direction": "vertical",
|
|
4893
5046
|
"type": "stack"
|
|
4894
5047
|
}
|
|
4895
5048
|
],
|
|
4896
5049
|
"type": "scaled-diagram"
|
|
4897
5050
|
}
|
|
4898
|
-
],
|
|
4899
|
-
"appName": "LMS",
|
|
4900
|
-
"type": "dashboard-layout",
|
|
4901
|
-
"navItems": [
|
|
4902
|
-
{
|
|
4903
|
-
"icon": "book-open",
|
|
4904
|
-
"href": "/courses",
|
|
4905
|
-
"label": "Courses"
|
|
4906
|
-
},
|
|
4907
|
-
{
|
|
4908
|
-
"icon": "layout-list",
|
|
4909
|
-
"href": "/enroll",
|
|
4910
|
-
"label": "Enroll"
|
|
4911
|
-
},
|
|
4912
|
-
{
|
|
4913
|
-
"icon": "layout-list",
|
|
4914
|
-
"label": "Progress",
|
|
4915
|
-
"href": "/progress"
|
|
4916
|
-
}
|
|
4917
5051
|
]
|
|
4918
5052
|
}
|
|
4919
5053
|
]
|