2018-12-06 17:54:16 +00:00
|
|
|
@use templates::base;
|
2019-03-22 18:51:36 +00:00
|
|
|
@use templates::partials::image_select;
|
2018-12-06 17:54:16 +00:00
|
|
|
@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(), {}, {}, {
|
2019-07-11 07:34:27 +00:00
|
|
|
<h1 id="plume-editor-title" dir="auto">@title</h1>
|
|
|
|
<div id="plume-editor" style="display: none;" dir="auto">
|
2019-03-15 15:06:10 +00:00
|
|
|
<header>
|
|
|
|
<button id="publish" class="button">@i18n!(ctx.1, "Publish")</button>
|
|
|
|
<p id="char-count">@content_len</p>
|
2019-04-06 13:20:12 +00:00
|
|
|
<a href="#" id="close-editor">@i18n!(ctx.1, "Classic editor (any changes will be lost)")</a>
|
2019-03-15 15:06:10 +00:00
|
|
|
</header>
|
|
|
|
</div>
|
2018-12-07 11:05:01 +00:00
|
|
|
@if let Some(article) = article {
|
2019-03-15 15:06:10 +00:00
|
|
|
<form id="plume-fallback-editor" 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-03-15 15:06:10 +00:00
|
|
|
<form id="plume-fallback-editor" 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
|
|
|
}
|
2019-08-27 14:50:24 +00:00
|
|
|
@(Input::new("title", i18n!(ctx.1, "Title"))
|
|
|
|
.default(&form.title)
|
|
|
|
.error(&errors)
|
|
|
|
.html(ctx.1))
|
|
|
|
@(Input::new("subtitle", i18n!(ctx.1, "Subtitle"))
|
|
|
|
.default(&form.subtitle)
|
|
|
|
.error(&errors)
|
|
|
|
.optional()
|
|
|
|
.html(ctx.1))
|
2018-12-06 17:54:16 +00:00
|
|
|
|
|
|
|
@if let Some(ValidationErrorsKind::Field(errs)) = errors.clone().errors().get("content") {
|
2019-03-19 13:37:56 +00:00
|
|
|
@format!(r#"<p class="error">{}</p>"#, errs[0].message.clone().unwrap_or_else(|| Cow::from("Unknown error")))
|
2018-12-06 17:54:16 +00:00
|
|
|
}
|
|
|
|
|
2019-07-11 07:34:27 +00:00
|
|
|
<label for="editor-content" dir="auto">@i18n!(ctx.1, "Content")<small>@i18n!(ctx.1, "Markdown syntax is supported")</small></label>
|
|
|
|
<textarea id="editor-content" name="content" rows="20" dir="auto">@Html(&form.content)</textarea>
|
|
|
|
<small id="editor-left" dir="auto">@content_len</small>
|
|
|
|
<p dir="auto">
|
2019-04-01 18:09:29 +00:00
|
|
|
@i18n!(ctx.1, "You can upload media to your gallery, and then copy their Markdown code into your articles to insert them.")
|
2019-03-06 13:11:36 +00:00
|
|
|
<a href="@uri!(medias::new)">@i18n!(ctx.1, "Upload media")</a>
|
|
|
|
</p>
|
2018-12-06 17:54:16 +00:00
|
|
|
|
2019-08-27 14:50:24 +00:00
|
|
|
@(Input::new("tags", i18n!(ctx.1, "Tags, separated by commas"))
|
|
|
|
.default(&form.tags)
|
|
|
|
.error(&errors)
|
|
|
|
.optional()
|
|
|
|
.html(ctx.1))
|
|
|
|
@(Input::new("license", i18n!(ctx.1, "License"))
|
|
|
|
.default(&form.license)
|
|
|
|
.error(&errors)
|
|
|
|
.optional()
|
|
|
|
.details("Leave it empty to reserve all rights")
|
|
|
|
.html(ctx.1))
|
2018-12-06 17:54:16 +00:00
|
|
|
|
2019-03-22 18:51:36 +00:00
|
|
|
@:image_select(ctx, "cover", i18n!(ctx.1, "Illustration"), true, medias, form.cover)
|
2018-12-06 17:54:16 +00:00
|
|
|
|
|
|
|
@if is_draft {
|
2019-07-11 07:34:27 +00:00
|
|
|
<label for="draft" dir="auto">
|
2018-12-06 17:54:16 +00:00
|
|
|
<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>
|
|
|
|
})
|