reduce boilerplate when writing newspaper #18

Open
opened 2021-04-28 20:56:37 +02:00 by koalp · 0 comments
Owner

It would be nice to find ways to reduce boilerplate when writing a newspaper.

Several element may be written similarly almost everytime :

  • the newspaper builder (often with cookies or login)
  • filters

propospotion

This could be the target syntax :

const elements_to_remove: &[&str] = &[
    ".fb",
    ".navbar",
 ];
 
fn login(login: Login) {
}

#[derive(Newspaper)]
#[remove_elements(elements_to_remove)]
struct MyNewpaper {	
    #[cookie("LOGIN_ID")]
    login_id: String,
    #[login_function(login)]
    login: Login,
}
It would be nice to find ways to reduce boilerplate when writing a newspaper. Several element may be written similarly almost everytime : - the newspaper builder (often with cookies or login) - filters - … ### propospotion This could be the target syntax : ```rust const elements_to_remove: &[&str] = &[ ".fb", ".navbar", ]; fn login(login: Login) { } #[derive(Newspaper)] #[remove_elements(elements_to_remove)] struct MyNewpaper { #[cookie("LOGIN_ID")] login_id: String, #[login_function(login)] login: Login, } ```
koalp added this to the v0.1.1 - multiple bug resolution and enhancements milestone 2021-04-28 20:56:37 +02:00
koalp added the
status
review_needed
type
enhancement
labels 2021-04-28 20:56:37 +02:00
koalp added this to the 10 may - 21 may 2021 project 2021-05-13 20:44:00 +02:00
koalp modified the project from 10 may - 21 may 2021 to 1 juin - 13 juin 2021-06-01 16:06:10 +02:00
Sign in to join this conversation.
No description provided.