From d11a11f66fab4120a431afe0a839e5b30b464676 Mon Sep 17 00:00:00 2001 From: Norm Rasmussen Date: Fri, 5 Aug 2022 10:32:42 -0400 Subject: [PATCH] Startpage Clean up --- CustomerNotes.md | 26 +++++++++++++++++++++++++- NP_Root_Startpage/app.js | 10 ++++++++++ NP_Root_Startpage/index.html | 27 +-------------------------- NP_Root_Startpage/styles.css | 20 ++++++++++++++++++++ 4 files changed, 56 insertions(+), 27 deletions(-) diff --git a/CustomerNotes.md b/CustomerNotes.md index d63f25d6..6a8e49d8 100644 --- a/CustomerNotes.md +++ b/CustomerNotes.md @@ -517,7 +517,8 @@ Educator - Teachers looking for PD requirements - [X] Check with SE if we can hide activities based on role - [ ] Create flow chart of how to create courses - [ ] Annotated version of diagram - remove details -- [ ] Go through Master Course and look for holes +- [ ] Go through Master Course and look for holes +- [ ] Review ## Integrations: @@ -726,6 +727,22 @@ Import errors from the SFDC side # Flink +* MCA COLUMN ORDER: + * School ID + * Learner Name + * Email + * SSO UID + * Groups + * Course Name + * Course Version + * Enrollment Day + * Attempt STart + * Attempt End + * Attempt Number + * Course Progress + * Last Activity + * Last Activity Date + ## Weekly Meetings with Camila and Soner Align on points of contact Concerns? They are the main contact for all back end structure and content @@ -1003,6 +1020,13 @@ And 500 complete (this is a good number) Molly wants to try... 500 people get a message saying "you're going to see messages, please ignore" 160 get invited to a group with the remaining courses +## Meeting with OpenSesame re: SCORM files +* Possibly missed events! +* Opensesame only sends complete/incomplete - values could be 0 or 1, or whatever the cmi.core.value are +* Communicated via API +* RPX now is OS' social sign on and SSO communication +* Osano is used by OS but not sure how it would factor in + # Mark43 We need Northapss to be able to parse the group id information in the JWT diff --git a/NP_Root_Startpage/app.js b/NP_Root_Startpage/app.js index 6e1fd8c1..d02f0c6c 100644 --- a/NP_Root_Startpage/app.js +++ b/NP_Root_Startpage/app.js @@ -37,6 +37,16 @@ const CARDS = [ icon: "ri-calendar-2-line", link: "https://northpass.na.chilipiper.com/book/me/norm-rasmussen", }, + { + name: "Looker - External", + icon: "ri-bubble-chart-line", + link: "https://northpass.looker.com/folders/4976" + }, + { + name: "Looker - Internal", + icon: "ri-bubble-chart-fill", + link: "https://northpasshq.looker.com/dashboards/21" + }, { name: "LinkedIn", icon: "ri-linkedin-fill", diff --git a/NP_Root_Startpage/index.html b/NP_Root_Startpage/index.html index 456ad978..7d9adb5d 100644 --- a/NP_Root_Startpage/index.html +++ b/NP_Root_Startpage/index.html @@ -21,7 +21,7 @@
-

Hello there, Norm!.

+

Hello, Norm!.

Today is Monday 1, January 2000.

00:00 PM

@@ -30,28 +30,3 @@ - \ No newline at end of file diff --git a/NP_Root_Startpage/styles.css b/NP_Root_Startpage/styles.css index 035644c7..1e269812 100644 --- a/NP_Root_Startpage/styles.css +++ b/NP_Root_Startpage/styles.css @@ -16,6 +16,14 @@ } body { + margin-bottom: 0; + flex-grow: 1; + background: linear-gradient(145deg, #179160, #096F8E, #F7BB17, #D64A28, #00283C); + background-size: 700% 550%; + animation: gradient 7s ease-in-out infinite; + height: 125vh; + margin-top: -100px; + padding-top: 100px; color: var(--text-light); font-family: 'Inter', sans-serif; @@ -25,6 +33,18 @@ body { box-sizing: border-box; } +@keyframes gradient { + 0% { + background-position: 0% 79%; + } + 50% { + background-position: 100% 22%; + } + 100% { + background-position: 0% 79%; + } +} + h1 { font-size: 4rem; font-weight: bold;