2018-12-06 17:54:16 +00:00
|
|
|
@use templates::base;
|
|
|
|
@use template_utils::*;
|
|
|
|
@use validator::{ValidationErrors, ValidationErrorsKind};
|
|
|
|
@use std::borrow::Cow;
|
|
|
|
@use plume_models::medias::*;
|
2018-12-07 11:05:01 +00:00
|
|
|
@use plume_models::blogs::Blog;
|
|
|
|
@use plume_models::posts::Post;
|
2018-12-06 17:54:16 +00:00
|
|
|
@use routes::posts::NewPostForm;
|
2018-12-07 11:05:01 +00:00
|
|
|
@use routes::*;
|
2018-12-06 17:54:16 +00:00
|
|
|
|
2019-02-02 14:23:50 +00:00
|
|
|
@(ctx: BaseContext, title: String, blog: Blog, editing: bool, form: &NewPostForm, is_draft: bool, article: Option<Post>, errors: ValidationErrors, medias: Vec<Media>, content_len: u64)
|
2018-12-06 17:54:16 +00:00
|
|
|
|
2019-02-02 14:23:50 +00:00
|
|
|
@:base(ctx, title.clone(), {}, {}, {
|
|
|
|
<h1>@title</h1>
|
2018-12-07 11:05:01 +00:00
|
|
|
@if let Some(article) = article {
|
2019-01-27 09:55:22 +00:00
|
|
|
<form id="post-form" class="new-post" method="post" action="@uri!(posts::update: blog = blog.actor_id, slug = &article.slug)" content-size="@content_len">
|
2018-12-07 11:05:01 +00:00
|
|
|
} else {
|
2019-01-27 09:55:22 +00:00
|
|
|
<form id="post-form" class="new-post" method="post" action="@uri!(posts::new: blog = blog.actor_id)" content-size="@content_len">
|
2018-12-07 11:05:01 +00:00
|
|
|
}
|
2018-12-06 17:54:16 +00:00
|
|
|
@input!(ctx.1, title (text), "Title", form, errors.clone(), "required")
|
|
|
|
@input!(ctx.1, subtitle (optional text), "Subtitle", form, errors.clone(), "")
|
|
|
|
|
|
|
|
@if let Some(ValidationErrorsKind::Field(errs)) = errors.clone().errors().get("content") {
|
2019-02-02 14:23:50 +00:00
|
|
|
@format!(r#"<p class="error">{}</p>"#, errs[0].message.clone().unwrap_or(Cow::from("Unknown error")))
|
2018-12-06 17:54:16 +00:00
|
|
|
}
|
|
|
|
|
2018-12-25 14:55:48 +00:00
|
|
|
<label for="plume-editor">@i18n!(ctx.1, "Content")<small>@i18n!(ctx.1, "Markdown syntax is supported")</small></label>
|
2018-12-06 17:54:16 +00:00
|
|
|
<textarea id="plume-editor" name="content" rows="20">@form.content</textarea>
|
2019-01-27 09:55:22 +00:00
|
|
|
<small id="editor-left">@content_len</small>
|
2018-12-06 17:54:16 +00:00
|
|
|
|
|
|
|
@input!(ctx.1, tags (optional text), "Tags, separated by commas", form, errors.clone(), "")
|
|
|
|
|
2018-12-25 14:55:48 +00:00
|
|
|
@input!(ctx.1, license (optional text), "License", "Leave it empty to reserve all rights", form, errors, "")
|
2018-12-06 17:54:16 +00:00
|
|
|
|
|
|
|
<label for="cover">@i18n!(ctx.1, "Illustration")<small>@i18n!(ctx.1, "Optional")</small></label>
|
|
|
|
<select id="cover" name="cover">
|
|
|
|
<option value="none" @if form.cover.is_none() { selected }>@i18n!(ctx.1, "None")</option>
|
|
|
|
@for media in medias {
|
|
|
|
@if media.category() == MediaCategory::Image {
|
|
|
|
<option value="@media.id" @if form.cover.map(|c| c == media.id).unwrap_or(false) { selected }>
|
|
|
|
@if !media.alt_text.is_empty() {
|
|
|
|
@media.alt_text
|
|
|
|
} else {
|
|
|
|
@media.content_warning.unwrap_or_default()
|
|
|
|
}
|
|
|
|
</option>
|
|
|
|
}
|
|
|
|
}
|
|
|
|
</select>
|
|
|
|
|
|
|
|
@if is_draft {
|
|
|
|
<label for="draft">
|
|
|
|
<input type="checkbox" name="draft" id="draft" checked>
|
|
|
|
@i18n!(ctx.1, "This is a draft, don't publish it yet.")
|
|
|
|
</label>
|
|
|
|
}
|
|
|
|
|
|
|
|
@if editing {
|
|
|
|
<input type="submit" value="@i18n!(ctx.1, "Update")" />
|
|
|
|
} else {
|
|
|
|
@if is_draft {
|
2018-12-25 14:55:48 +00:00
|
|
|
<input type="submit" value="@i18n!(ctx.1, "Update, or publish")" />
|
2018-12-06 17:54:16 +00:00
|
|
|
} else {
|
2018-12-25 14:55:48 +00:00
|
|
|
<input type="submit" value="@i18n!(ctx.1, "Publish your post")" />
|
2018-12-06 17:54:16 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
</form>
|
|
|
|
})
|