mirror of
https://github.com/AppFlowy-IO/AppFlowy.git
synced 2024-08-30 18:12:39 +00:00
38 lines
839 B
Rust
38 lines
839 B
Rust
use crate::revision::{TrashRevision, TrashTypeRevision, ViewRevision};
|
|
use nanoid::nanoid;
|
|
use serde::{Deserialize, Serialize};
|
|
|
|
pub fn gen_app_id() -> String {
|
|
nanoid!(10)
|
|
}
|
|
#[derive(Default, Clone, Debug, Eq, PartialEq, Serialize, Deserialize)]
|
|
pub struct AppRevision {
|
|
pub id: String,
|
|
|
|
pub workspace_id: String,
|
|
|
|
pub name: String,
|
|
|
|
pub desc: String,
|
|
|
|
pub belongings: Vec<ViewRevision>,
|
|
|
|
pub version: i64,
|
|
|
|
pub modified_time: i64,
|
|
|
|
pub create_time: i64,
|
|
}
|
|
|
|
impl std::convert::From<AppRevision> for TrashRevision {
|
|
fn from(app_rev: AppRevision) -> Self {
|
|
TrashRevision {
|
|
id: app_rev.id,
|
|
name: app_rev.name,
|
|
modified_time: app_rev.modified_time,
|
|
create_time: app_rev.create_time,
|
|
ty: TrashTypeRevision::TrashApp,
|
|
}
|
|
}
|
|
}
|