move list func into macro
This commit is contained in:
parent
7648c4bced
commit
9923ae6a69
@ -6,34 +6,44 @@ pub fn derive_crud_fns(_input: proc_macro::TokenStream) -> proc_macro::TokenStre
|
|||||||
let expanded = quote! {
|
let expanded = quote! {
|
||||||
use std::convert::From;
|
use std::convert::From;
|
||||||
use async_trait::async_trait;
|
use async_trait::async_trait;
|
||||||
use std::pin::Pin;
|
use actix_web::{web, HttpResponse, HttpRequest, Error};
|
||||||
use actix_admin::{ ActixAdminModelTrait, ActixAdminModel };
|
use actix_admin::{ ActixAdminModelTrait, ActixAdminViewModelTrait, ActixAdminViewModel, ActixAdminModel, AppDataTrait };
|
||||||
|
|
||||||
// impl From<Entity> for ActixAdminModel {
|
impl From<Entity> for ActixAdminViewModel {
|
||||||
// fn from(entity: Entity) -> Self {
|
fn from(entity: Entity) -> Self {
|
||||||
// ActixAdminModel {
|
ActixAdminViewModel {
|
||||||
// fields: Vec::new()
|
entity_name: entity.table_name().to_string()
|
||||||
// }
|
}
|
||||||
// }
|
}
|
||||||
// }
|
}
|
||||||
|
|
||||||
// #[async_trait]
|
#[async_trait]
|
||||||
// impl ActixAdminModelTrait for Entity {
|
impl ActixAdminModelTrait for Entity {
|
||||||
// async fn list(&self, db: &DatabaseConnection, page: usize, posts_per_page: usize) -> Vec<&str> {
|
async fn list_db(db: &DatabaseConnection, page: usize, posts_per_page: usize) -> Vec<&str> {
|
||||||
// use sea_orm::{ query::* };
|
use sea_orm::{ query::* };
|
||||||
// let paginator = Entity::find()
|
let paginator = Entity::find()
|
||||||
// .order_by_asc(Column::Id)
|
.order_by_asc(Column::Id)
|
||||||
// .paginate(db, posts_per_page);
|
.paginate(db, posts_per_page);
|
||||||
// let entities = paginator
|
let entities = paginator
|
||||||
// .fetch_page(page - 1)
|
.fetch_page(page - 1)
|
||||||
// .await
|
.await
|
||||||
// .expect("could not retrieve entities");
|
.expect("could not retrieve entities");
|
||||||
// //entities to ActixAdminModel
|
//entities to ActixAdminModel
|
||||||
// vec![
|
vec![
|
||||||
|
|
||||||
// ]
|
]
|
||||||
// }
|
}
|
||||||
// }
|
}
|
||||||
|
|
||||||
|
#[async_trait(?Send)]
|
||||||
|
impl ActixAdminViewModelTrait for Entity {
|
||||||
|
async fn list<T: AppDataTrait>(req: HttpRequest, data: web::Data<T>) -> Result<HttpResponse, Error> {
|
||||||
|
let db = &data.get_db();
|
||||||
|
let entities = Entity::list_db(db, 1, 5);
|
||||||
|
let model = ActixAdminViewModel::from(Entity);
|
||||||
|
actix_admin::list_model(req, model)
|
||||||
|
}
|
||||||
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
proc_macro::TokenStream::from(expanded)
|
proc_macro::TokenStream::from(expanded)
|
||||||
|
@ -45,7 +45,7 @@ pub trait AppDataTrait {
|
|||||||
// ActixAdminModel
|
// ActixAdminModel
|
||||||
#[async_trait]
|
#[async_trait]
|
||||||
pub trait ActixAdminModelTrait: Clone {
|
pub trait ActixAdminModelTrait: Clone {
|
||||||
async fn list(db: &DatabaseConnection, page: usize, posts_per_page: usize) -> Vec<&str>;
|
async fn list_db(db: &DatabaseConnection, page: usize, posts_per_page: usize) -> Vec<&str>;
|
||||||
}
|
}
|
||||||
|
|
||||||
#[derive(Clone, Debug, Serialize)]
|
#[derive(Clone, Debug, Serialize)]
|
||||||
@ -54,8 +54,9 @@ pub struct ActixAdminModel {
|
|||||||
}
|
}
|
||||||
|
|
||||||
// ActixAdminViewModel
|
// ActixAdminViewModel
|
||||||
pub trait ActixAdminViewModelTrait: Clone {
|
#[async_trait(?Send)]
|
||||||
fn get_model_name(&self) -> &str;
|
pub trait ActixAdminViewModelTrait {
|
||||||
|
async fn list<T: AppDataTrait + Sync + Send>(req: HttpRequest, data: web::Data<T>) -> Result<HttpResponse, Error>;
|
||||||
}
|
}
|
||||||
|
|
||||||
#[derive(Clone, Debug, Serialize)]
|
#[derive(Clone, Debug, Serialize)]
|
||||||
@ -103,8 +104,10 @@ pub fn list_model(req: HttpRequest, view_model: ActixAdminViewModel) -> Result<H
|
|||||||
let columns: Vec<String> = Vec::new();
|
let columns: Vec<String> = Vec::new();
|
||||||
|
|
||||||
let entities: Vec<&str> = Vec::new(); // view_model.get_entities()
|
let entities: Vec<&str> = Vec::new(); // view_model.get_entities()
|
||||||
|
let view_models: Vec<&str> = Vec::new();
|
||||||
|
|
||||||
let mut ctx = Context::new();
|
let mut ctx = Context::new();
|
||||||
|
ctx.insert("view_models", &view_models);
|
||||||
ctx.insert("posts", &entities);
|
ctx.insert("posts", &entities);
|
||||||
ctx.insert("page", &page);
|
ctx.insert("page", &page);
|
||||||
ctx.insert("posts_per_page", &posts_per_page);
|
ctx.insert("posts_per_page", &posts_per_page);
|
||||||
@ -113,6 +116,6 @@ pub fn list_model(req: HttpRequest, view_model: ActixAdminViewModel) -> Result<H
|
|||||||
|
|
||||||
let body = TERA
|
let body = TERA
|
||||||
.render("list.html", &ctx)
|
.render("list.html", &ctx)
|
||||||
.map_err(|_| error::ErrorInternalServerError("Template error"))?;
|
.map_err(|err| error::ErrorInternalServerError(err))?;
|
||||||
Ok(HttpResponse::Ok().content_type("text/html").body(body))
|
Ok(HttpResponse::Ok().content_type("text/html").body(body))
|
||||||
}
|
}
|
@ -2,8 +2,4 @@
|
|||||||
|
|
||||||
{% block content %}
|
{% block content %}
|
||||||
Hello
|
Hello
|
||||||
<p>posts: {{ posts }}</p>
|
|
||||||
<p>page: {{ page }}</p>
|
|
||||||
<p>posts_per_page: {{ posts_per_page }}</p>
|
|
||||||
<p>num_pages: {{ num_pages }}</p>
|
|
||||||
{% endblock content %}
|
{% endblock content %}
|
@ -18,30 +18,3 @@ pub struct Model {
|
|||||||
pub enum Relation {}
|
pub enum Relation {}
|
||||||
|
|
||||||
impl ActiveModelBehavior for ActiveModel {}
|
impl ActiveModelBehavior for ActiveModel {}
|
||||||
|
|
||||||
|
|
||||||
impl From<Entity> for ActixAdminModel {
|
|
||||||
fn from(entity: Entity) -> Self {
|
|
||||||
ActixAdminModel {
|
|
||||||
fields: Vec::new()
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
#[async_trait]
|
|
||||||
impl ActixAdminModelTrait for Entity {
|
|
||||||
async fn list(&self, db: &DatabaseConnection, page: usize, posts_per_page: usize) -> Vec<&str> {
|
|
||||||
use sea_orm::{ query::* };
|
|
||||||
let paginator = Entity::find()
|
|
||||||
.order_by_asc(Column::Id)
|
|
||||||
.paginate(db, posts_per_page);
|
|
||||||
let entities = paginator
|
|
||||||
.fetch_page(page - 1)
|
|
||||||
.await
|
|
||||||
.expect("could not retrieve entities");
|
|
||||||
//entities to ActixAdminModel
|
|
||||||
vec![
|
|
||||||
|
|
||||||
]
|
|
||||||
}
|
|
||||||
}
|
|
@ -2,7 +2,9 @@
|
|||||||
use sea_orm::sea_query::{ColumnDef, TableCreateStatement};
|
use sea_orm::sea_query::{ColumnDef, TableCreateStatement};
|
||||||
use sea_orm::{error::*, sea_query, ConnectionTrait, DbConn, ExecResult};
|
use sea_orm::{error::*, sea_query, ConnectionTrait, DbConn, ExecResult};
|
||||||
pub mod post;
|
pub mod post;
|
||||||
|
pub mod comment;
|
||||||
pub use post::Entity as Post;
|
pub use post::Entity as Post;
|
||||||
|
pub use comment::Entity as Comment;
|
||||||
|
|
||||||
// setup
|
// setup
|
||||||
async fn create_table(db: &DbConn, stmt: &TableCreateStatement) -> Result<ExecResult, DbErr> {
|
async fn create_table(db: &DbConn, stmt: &TableCreateStatement) -> Result<ExecResult, DbErr> {
|
||||||
|
@ -1,7 +1,6 @@
|
|||||||
use sea_orm::entity::prelude::*;
|
use sea_orm::entity::prelude::*;
|
||||||
use serde::{Deserialize, Serialize};
|
use serde::{Deserialize, Serialize};
|
||||||
|
use actix_admin::{ DeriveActixAdminModel };
|
||||||
use actix_admin::{ DeriveActixAdminModel, ActixAdminViewModel };
|
|
||||||
|
|
||||||
#[derive(Clone, Debug, PartialEq, DeriveEntityModel, Deserialize, Serialize, DeriveActixAdminModel)]
|
#[derive(Clone, Debug, PartialEq, DeriveEntityModel, Deserialize, Serialize, DeriveActixAdminModel)]
|
||||||
#[sea_orm(table_name = "post")]
|
#[sea_orm(table_name = "post")]
|
||||||
@ -18,29 +17,3 @@ pub struct Model {
|
|||||||
pub enum Relation {}
|
pub enum Relation {}
|
||||||
|
|
||||||
impl ActiveModelBehavior for ActiveModel {}
|
impl ActiveModelBehavior for ActiveModel {}
|
||||||
|
|
||||||
impl From<Entity> for ActixAdminViewModel {
|
|
||||||
fn from(entity: Entity) -> Self {
|
|
||||||
ActixAdminViewModel {
|
|
||||||
entity_name: entity.table_name().to_string()
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
#[async_trait]
|
|
||||||
impl ActixAdminModelTrait for Entity {
|
|
||||||
async fn list(db: &DatabaseConnection, page: usize, posts_per_page: usize) -> Vec<&str> {
|
|
||||||
use sea_orm::{ query::* };
|
|
||||||
let paginator = Entity::find()
|
|
||||||
.order_by_asc(Column::Id)
|
|
||||||
.paginate(db, posts_per_page);
|
|
||||||
let entities = paginator
|
|
||||||
.fetch_page(page - 1)
|
|
||||||
.await
|
|
||||||
.expect("could not retrieve entities");
|
|
||||||
//entities to ActixAdminModel
|
|
||||||
vec![
|
|
||||||
|
|
||||||
]
|
|
||||||
}
|
|
||||||
}
|
|
16
src/main.rs
16
src/main.rs
@ -8,12 +8,12 @@ use oauth2::{ RedirectUrl };
|
|||||||
use std::time::{Duration};
|
use std::time::{Duration};
|
||||||
use std::env;
|
use std::env;
|
||||||
use sea_orm::{{ DatabaseConnection, ConnectOptions }};
|
use sea_orm::{{ DatabaseConnection, ConnectOptions }};
|
||||||
|
use std::any::Any;
|
||||||
use actix_admin::{ AppDataTrait as ActixAdminAppDataTrait, ActixAdminViewModel, ActixAdminModelTrait};
|
use actix_admin::{ AppDataTrait as ActixAdminAppDataTrait, ActixAdminViewModelTrait };
|
||||||
use azure_auth::{ AzureAuth, UserInfo, AppDataTrait as AzureAuthAppDataTrait };
|
use azure_auth::{ AzureAuth, UserInfo, AppDataTrait as AzureAuthAppDataTrait };
|
||||||
|
|
||||||
mod entity;
|
mod entity;
|
||||||
use entity::{ Post };
|
use entity::{ Post, Comment };
|
||||||
|
|
||||||
#[derive(Debug, Clone)]
|
#[derive(Debug, Clone)]
|
||||||
pub struct AppState {
|
pub struct AppState {
|
||||||
@ -92,7 +92,7 @@ async fn main() {
|
|||||||
actix_admin::ActixAdmin::new()
|
actix_admin::ActixAdmin::new()
|
||||||
.create_scope(&app_state)
|
.create_scope(&app_state)
|
||||||
.service(
|
.service(
|
||||||
web::scope(&format!("/{}", "posts")).route("/list", web::get().to(list)),
|
web::scope(&format!("/{}", "posts")).route("/list", web::get().to(Post::list::<AppState>)),
|
||||||
)
|
)
|
||||||
)
|
)
|
||||||
})
|
})
|
||||||
@ -102,11 +102,3 @@ async fn main() {
|
|||||||
.await
|
.await
|
||||||
.unwrap();
|
.unwrap();
|
||||||
}
|
}
|
||||||
|
|
||||||
// Actix admin Routes to be auto generated
|
|
||||||
async fn list(req: HttpRequest, data: web::Data<AppState>)-> Result<HttpResponse, Error> {
|
|
||||||
let db = &data.get_db();
|
|
||||||
let entities = Post::list(db, 1, 5);
|
|
||||||
let model = ActixAdminViewModel::from(Post);
|
|
||||||
actix_admin::list_model(req, model)
|
|
||||||
}
|
|
Loading…
Reference in New Issue
Block a user