Some checks failed
actionlint check / actionlint check (pull_request) Successful in 7s
checkov check / checkov check (pull_request) Successful in 53s
conventional commit messages check / conventional commit messages check (pull_request) Successful in 4s
conventional pull request title check / conventional pull request title check (pull_request) Successful in 2s
dotenv-linter check / dotenv-linter check (pull_request) Successful in 6s
GitLeaks check / GitLeaks check (pull_request) Successful in 7s
hadolint check / hadolint check (pull_request) Successful in 9s
htmlhint check / htmlhint check (pull_request) Successful in 9s
markdownlint check / markdownlint check (pull_request) Successful in 9s
Prettier check / Prettier check (pull_request) Successful in 10s
Rust check / Rust check (pull_request) Failing after 7m40s
ShellCheck check / ShellCheck check (pull_request) Successful in 12s
Stylelint check / Stylelint check (pull_request) Successful in 11s
yamllint check / yamllint check (pull_request) Successful in 14s
108 lines
2.3 KiB
Rust
108 lines
2.3 KiB
Rust
#[cfg(feature = "server")]
|
|
use crate::models::task::Task;
|
|
#[cfg(feature = "server")]
|
|
use crate::schema::subtasks;
|
|
use chrono::NaiveDateTime;
|
|
#[cfg(feature = "server")]
|
|
use diesel::prelude::*;
|
|
use serde::{Deserialize, Serialize};
|
|
use std::cmp::Ordering;
|
|
use validator::Validate;
|
|
|
|
const TITLE_LENGTH_MIN: u64 = 1;
|
|
const TITLE_LENGTH_MAX: u64 = 255;
|
|
|
|
#[derive(Serialize, Deserialize, PartialEq, Clone, Debug)]
|
|
#[cfg_attr(
|
|
feature = "server",
|
|
derive(Queryable, Selectable, Identifiable, Associations)
|
|
)]
|
|
#[cfg_attr(
|
|
feature = "server",
|
|
diesel(
|
|
table_name = subtasks,
|
|
belongs_to(Task, foreign_key = task_id),
|
|
check_for_backend(diesel::pg::Pg)
|
|
)
|
|
)]
|
|
pub struct Subtask {
|
|
id: i32,
|
|
task_id: i32,
|
|
title: String,
|
|
is_completed: bool,
|
|
created_at: NaiveDateTime,
|
|
updated_at: NaiveDateTime,
|
|
}
|
|
|
|
impl Subtask {
|
|
pub fn id(&self) -> i32 {
|
|
self.id
|
|
}
|
|
|
|
pub fn task_id(&self) -> i32 {
|
|
self.task_id
|
|
}
|
|
|
|
pub fn title(&self) -> &str {
|
|
&self.title
|
|
}
|
|
|
|
pub fn is_completed(&self) -> bool {
|
|
self.is_completed
|
|
}
|
|
|
|
pub fn created_at(&self) -> NaiveDateTime {
|
|
self.created_at
|
|
}
|
|
|
|
pub fn updated_at(&self) -> NaiveDateTime {
|
|
self.updated_at
|
|
}
|
|
}
|
|
|
|
impl Eq for Subtask {}
|
|
|
|
impl PartialOrd<Self> for Subtask {
|
|
fn partial_cmp(&self, other: &Self) -> Option<Ordering> {
|
|
Some(self.cmp(other))
|
|
}
|
|
}
|
|
|
|
impl Ord for Subtask {
|
|
fn cmp(&self, other: &Self) -> Ordering {
|
|
self.is_completed()
|
|
.cmp(&other.is_completed())
|
|
.then(self.created_at().cmp(&other.created_at()))
|
|
}
|
|
}
|
|
|
|
#[derive(Serialize, Deserialize, Validate, Clone, Debug)]
|
|
#[cfg_attr(feature = "server", derive(Insertable))]
|
|
#[cfg_attr(feature = "server", diesel(table_name = subtasks))]
|
|
pub struct NewSubtask {
|
|
pub task_id: i32,
|
|
#[validate(length(
|
|
min = "TITLE_LENGTH_MIN",
|
|
max = "TITLE_LENGTH_MAX",
|
|
code = "title_length"
|
|
))]
|
|
pub title: String,
|
|
pub is_completed: bool,
|
|
}
|
|
|
|
impl NewSubtask {
|
|
pub fn new(task_id: i32, title: String, is_completed: bool) -> Self {
|
|
Self {
|
|
task_id,
|
|
title,
|
|
is_completed,
|
|
}
|
|
}
|
|
}
|
|
|
|
impl From<Subtask> for NewSubtask {
|
|
fn from(subtask: Subtask) -> Self {
|
|
Self::new(subtask.task_id, subtask.title, subtask.is_completed)
|
|
}
|
|
}
|