forked from Anri/cal8tor
don't use special dependencie for table format
This commit is contained in:
parent
29117f7e28
commit
7e5461ed81
5 changed files with 3 additions and 66 deletions
42
Cargo.lock
generated
42
Cargo.lock
generated
|
@ -55,12 +55,6 @@ version = "3.10.0"
|
|||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "37ccbd214614c6783386c1af30caf03192f17891059cecc394b4fb119e363de3"
|
||||
|
||||
[[package]]
|
||||
name = "bytecount"
|
||||
version = "0.6.3"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "2c676a478f63e9fa2dd5368a42f28bba0d6c560b775f38583c8bbaa7fcd67c9c"
|
||||
|
||||
[[package]]
|
||||
name = "byteorder"
|
||||
version = "1.4.3"
|
||||
|
@ -83,7 +77,6 @@ dependencies = [
|
|||
"regex",
|
||||
"reqwest",
|
||||
"scraper",
|
||||
"tabled",
|
||||
"tokio",
|
||||
"uuid",
|
||||
]
|
||||
|
@ -773,17 +766,6 @@ version = "6.3.0"
|
|||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "9ff7415e9ae3fff1225851df9e0d9e4e5479f947619774677a63572e55e80eff"
|
||||
|
||||
[[package]]
|
||||
name = "papergrid"
|
||||
version = "0.5.1"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "453cf71f2a37af495a1a124bf30d4d7469cfbea58e9f2479be9d222396a518a2"
|
||||
dependencies = [
|
||||
"bytecount",
|
||||
"fnv",
|
||||
"unicode-width",
|
||||
]
|
||||
|
||||
[[package]]
|
||||
name = "parking_lot"
|
||||
version = "0.12.1"
|
||||
|
@ -1360,30 +1342,6 @@ dependencies = [
|
|||
"unicode-ident",
|
||||
]
|
||||
|
||||
[[package]]
|
||||
name = "tabled"
|
||||
version = "0.8.0"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "e5b2f8c37d26d87d2252187b0a45ea3cbf42baca10377c7e7eaaa2800fa9bf97"
|
||||
dependencies = [
|
||||
"papergrid",
|
||||
"tabled_derive",
|
||||
"unicode-width",
|
||||
]
|
||||
|
||||
[[package]]
|
||||
name = "tabled_derive"
|
||||
version = "0.4.0"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "f9ee618502f497abf593e1c5c9577f34775b111480009ffccd7ad70d23fcaba8"
|
||||
dependencies = [
|
||||
"heck",
|
||||
"proc-macro-error",
|
||||
"proc-macro2",
|
||||
"quote",
|
||||
"syn",
|
||||
]
|
||||
|
||||
[[package]]
|
||||
name = "tempfile"
|
||||
version = "3.3.0"
|
||||
|
|
|
@ -18,4 +18,3 @@ chrono = ">=0.4.20"
|
|||
ics = "0.5"
|
||||
uuid = { version = "1.1", features = ["v4", "fast-rng"] }
|
||||
clap = { version = "3.2", features = ["derive"] }
|
||||
tabled = "0.8"
|
||||
|
|
|
@ -1,7 +1,6 @@
|
|||
use chrono::{Datelike, Duration, TimeZone, Utc};
|
||||
use regex::Regex;
|
||||
use scraper::{Html, Selector};
|
||||
use tabled::{Table, Style};
|
||||
pub mod models;
|
||||
|
||||
/// Fetch the timetable for a class
|
||||
|
@ -322,6 +321,4 @@ fn get_semester(semester: Option<i8>, letter: Option<char>) -> i8 {
|
|||
}
|
||||
|
||||
/// Display the timetable
|
||||
pub fn display(timetable: (Vec<String>, (usize, Vec<models::Day>))) {
|
||||
println!("{}", Table::new(timetable.1 .1).with(Style::modern()).to_string());
|
||||
}
|
||||
pub fn display(timetable: (Vec<String>, (usize, Vec<models::Day>))) {}
|
||||
|
|
|
@ -1,13 +1,9 @@
|
|||
use tabled::Tabled;
|
||||
|
||||
#[derive(Tabled, Clone, Debug)]
|
||||
#[tabled(rename_all = "CamelCase")]
|
||||
#[derive(Clone, Debug)]
|
||||
pub struct Course {
|
||||
/// Course's name
|
||||
pub name: String,
|
||||
|
||||
/// Professor's name
|
||||
#[tabled(display_with = "crate::utils::display_option")]
|
||||
pub professor: Option<String>,
|
||||
|
||||
/// List of rooms where the course takes place
|
||||
|
@ -17,29 +13,24 @@ pub struct Course {
|
|||
/// - 0 => first possible class of the day
|
||||
/// - 1 => second possible class of the day
|
||||
/// - etc.
|
||||
#[tabled(skip)]
|
||||
pub start: usize,
|
||||
|
||||
/// Number of time slots the course takes up in the timetable
|
||||
#[tabled(skip)]
|
||||
pub size: usize,
|
||||
|
||||
/// Datetime when the course start
|
||||
/// Filled only when building for the ICS
|
||||
#[tabled(skip)]
|
||||
pub dtstart: Option<chrono::DateTime<chrono::Utc>>,
|
||||
|
||||
/// Datetime when the course end
|
||||
/// Filled only when building for the ICS
|
||||
#[tabled(skip)]
|
||||
pub dtend: Option<chrono::DateTime<chrono::Utc>>,
|
||||
}
|
||||
|
||||
#[derive(Tabled, Debug)]
|
||||
#[derive(Debug)]
|
||||
pub struct Day {
|
||||
/// Day's name
|
||||
pub name: String,
|
||||
/// Ordered list of all the courses of the day
|
||||
#[tabled(skip)]
|
||||
pub courses: Vec<Option<Course>>,
|
||||
}
|
||||
|
|
|
@ -13,11 +13,3 @@ pub fn check_errors(html: &String, loc: &str) {
|
|||
fn err_code(code: i32) -> String {
|
||||
format!("HTTP Code : {}", code)
|
||||
}
|
||||
|
||||
/// Return the string if exists, otherwise return empty string
|
||||
pub fn display_option(o: &Option<String>) -> String {
|
||||
match o {
|
||||
Some(s) => s.to_string(),
|
||||
None => String::new(),
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue