Commit Graph
63 Commits
Author SHA1 Message Date
joshuacoles e6dcd8e6ec Update sidekiq description
Build and Publish Docker Container / build (push) Successful in 5m6s
2023-10-06 22:14:56 +01:00
joshuacoles a4fd2b853a Update dashboard
Build and Publish Docker Container / build (push) Successful in 5m20s
2023-10-06 22:11:36 +01:00
joshuacoles 3540fa75f7 Remove attendances model 2023-10-06 22:09:38 +01:00
joshuacoles 84143c683f Add some naive filtering to the Toggl scraping job to ignore time entries that have already been tracked 2023-10-06 22:06:54 +01:00
joshuacoles 0cb03812cf Track associated toggl entry id for uniqueness, show stats for time spent in different parts of the lecture flow. 2023-10-06 22:00:01 +01:00
joshuacoles ef301f6592 Add extra kinds to the tracked_time_entry 2023-10-06 21:10:26 +01:00
joshuacoles a2dfad331b Create TrackedTimeEntry as more general replacement of Attendance to include preparation and review 2023-10-06 21:09:28 +01:00
joshuacoles c706aa2561 Add status symbols for upcoming prep and review entries 2023-10-06 21:04:34 +01:00
joshuacoles 927a9032d4 Fix issue with popover when lecture not attended 2023-10-06 20:54:15 +01:00
joshuacoles 9a2508bb34 Improve styling
Build and Publish Docker Container / build (push) Successful in 5m8s
2023-10-06 20:52:03 +01:00
joshuacoles 41e3eebe52 Add in lecture time popover 2023-10-06 20:49:53 +01:00
joshuacoles fda26e3b53 Add tailwind-stimulus-components 2023-10-06 20:31:24 +01:00
joshuacoles 6178b580b1 Disable sass to make tailwind work
Build and Publish Docker Container / build (push) Successful in 5m34s
2023-10-06 20:30:40 +01:00
joshuacoles e3199a097f Move recording to its own column 2023-10-06 20:19:44 +01:00
joshuacoles 5b74f1380b Fix bug in toggl scraping
Build and Publish Docker Container / build (push) Failing after 5m4s
2023-10-06 16:10:17 +01:00
joshuacoles 04e1496c04 Fix SASS build issue take 3???
Build and Publish Docker Container / build (push) Failing after 4m43s
2023-10-05 10:00:13 +01:00
joshuacoles 750b67fd2f Fix panopto scraping 2023-10-05 09:59:13 +01:00
joshuacoles 04caed2783 Add checkin notifications for starting lectures 2023-10-05 09:59:08 +01:00
joshuacoles 9e8cf93b1a Try fix the sass build issue
Build and Publish Docker Container / build (push) Failing after 4m30s
2023-10-04 17:20:58 +01:00
joshuacoles f3e4940d6b Upgrade Rails to 7.1 rc2 to allow SECRET_KEY_BASE to function
Build and Publish Docker Container / build (push) Failing after 4m29s
2023-10-04 17:03:44 +01:00
joshuacoles f7039fc42a Maybe?
Build and Publish Docker Container / build (push) Failing after 4m13s
2023-10-04 16:58:02 +01:00
joshuacoles 0281abfecb Add SECRET_KEY_BASE_DUMMY
Build and Publish Docker Container / build (push) Failing after 4m4s
2023-10-04 15:15:19 +01:00
joshuacoles 6c8d2544e0 Add review and prep actions
Build and Publish Docker Container / build (push) Has been cancelled
2023-10-04 15:14:19 +01:00
joshuacoles 9621f6fa24 Add linux x86 platform for build pipeline
Build and Publish Docker Container / build (push) Failing after 4m34s
2023-10-04 15:01:56 +01:00
joshuacoles 7c96b2c2bc Add ability to start lecture and redirect to recorded content. 2023-10-04 15:00:23 +01:00
joshuacoles 0e0d26d06d Move calendar scraping to a model method 2023-10-04 14:41:15 +01:00
joshuacoles ef3642678d Add services to Procfile 2023-10-04 14:36:57 +01:00
joshuacoles 3972ca868c Update README
Build and Publish Docker Container / build (push) Failing after 1m22s
2023-10-04 14:17:16 +01:00
joshuacoles acac71fd57 Add build script 2023-10-04 14:15:33 +01:00
joshuacoles 76f10abe76 An attempt at docker 2023-10-04 14:14:06 +01:00
joshuacoles fe15365524 Add lecture kinds 2023-10-02 16:37:52 +01:00
joshuacoles 9a5116f29e Add Toggl data to attendances, fix attendance creation for past lectures. Change styling a little. 2023-10-02 16:19:37 +01:00
joshuacoles 2530ee629a Improve styling 2023-10-02 13:26:12 +01:00
joshuacoles fcff7ca839 Add the rest of my modules 2023-10-02 11:13:31 +01:00
joshuacoles 58c1280309 Update Lecture-Recording relationship and add Lecture cancellation status
The commit introduces notable changes to the Lecture-Recording model relationship in our application and adds a new cancellation status to Lecture model.

Models Lecture and Recording previously had a belongs_to :recording and belongs_to :lecture relationship respectively. However, this setup was not reflecting the correct relationship between these two entities in the actual educational setup where a lecture can have a recording but a recording is always of a lecture. Thus, the relationship has been revised to has_one :recording in Lecture and belongs_to :lecture in Recording models.

Also, added the ability to mark a lecture as "cancelled". This addresses the requirement of representing real-world scenarios where lectures are sometimes cancelled. This cancellation status is then reflected in the Attendance Tracker view and is also handled in the ScrapePanoptoJob.

Additionally, new changes are reflected in the application's schema, migration files, admin dashboard, and stylesheets (for displaying cancelled lectures).
2023-10-02 09:47:46 +01:00
joshuacoles d8a6f27734 Customise dashboards 2023-10-01 20:00:23 +01:00
joshuacoles d44460df93 Add recordings dashboard 2023-10-01 19:50:00 +01:00
joshuacoles d9d182bc94 Update lecture properties and various migration changes
Modified code to remove 'status' field from lecture's table and added 'event_uuid' field. Also refined the 'start_time' field in recordings' table to handle datetime instead of strings. Further, made minor changes in scraping jobs and seeding logic. Implemented these changes to allow lectures to be associated with calendar events and streamlined various fields.
2023-10-01 19:44:20 +01:00
joshuacoles 070816f0a2 Rename job to be more inline with other jobs 2023-10-01 18:01:41 +01:00
joshuacoles 83bc134998 Add basic calendar scraping 2023-10-01 17:58:37 +01:00
joshuacoles 915ce5112d Fix week numbering being off by one and add custom semester starts per module 2023-10-01 17:57:03 +01:00
joshuacoles ef34d1c5b5 Update panopto scraping to separate lectures from recordings. Implement naive lecture creation on new recordings. 2023-10-01 17:51:05 +01:00
joshuacoles 9923067a17 Stash 2023-10-01 17:34:41 +01:00
joshuacoles 69a97a3fa9 Add Recording model 2023-10-01 17:16:08 +01:00
joshuacoles 3300017d98 Add administrate 2023-10-01 15:05:10 +01:00
joshuacoles 285cf78d63 Add sidekiq 2023-10-01 14:31:52 +01:00
joshuacoles 3c55c64b3f Add future styling 2023-09-29 21:40:52 +01:00
joshuacoles 211825faf8 Fix issue with link not displaying 2023-09-29 21:34:51 +01:00
joshuacoles 598c1204e3 Move the display to attendances 2023-09-29 21:32:28 +01:00
joshuacoles 2934d21f5f Rephrase toggl scraping in term of attendances 2023-09-29 21:19:43 +01:00
joshuacoles be4f3f75c3 Add toggl scraping 2023-09-29 21:06:33 +01:00
joshuacoles 0d97b5fdc0 Scraping work 2023-09-29 19:54:03 +01:00
joshuacoles 0e0c6694ac Initial work for import from panopto 2023-09-29 19:19:03 +01:00
joshuacoles 34c5f771ad Show multiple courses 2023-09-29 19:03:26 +01:00
joshuacoles a36284b73e Make the UI a little more complete 2023-09-29 19:01:35 +01:00
joshuacoles d14903fcb4 Some initial UI work 2023-09-29 18:53:43 +01:00
joshuacoles 376e80e385 Make lectures belong to courses 2023-09-29 18:20:43 +01:00
joshuacoles 38f48d1736 Create course model 2023-09-29 18:18:03 +01:00
joshuacoles a496965d81 Create lecture model 2023-09-29 18:14:31 +01:00
joshuacoles 86b8846f20 A basic UI template 2023-09-29 18:11:05 +01:00
joshuacoles 7cf23e872e Tailwind init 2023-09-29 17:52:01 +01:00
joshuacoles f49dd9a882 Add controller 2023-09-29 17:50:55 +01:00
joshuacoles 0d86f26613 Initial commit 2023-09-29 17:45:19 +01:00