2023-10-27 10:23:05 -04:00
|
|
|
use crate::error::CustomError;
|
2023-10-29 18:26:52 -04:00
|
|
|
use crate::intermediate::macros::iitem;
|
2023-10-27 10:23:05 -04:00
|
|
|
|
2023-10-27 17:48:19 -04:00
|
|
|
use super::angle_link::IAngleLink;
|
|
|
|
use super::bold::IBold;
|
|
|
|
use super::citation::ICitation;
|
|
|
|
use super::citation_reference::ICitationReference;
|
|
|
|
use super::code::ICode;
|
|
|
|
use super::entity::IEntity;
|
|
|
|
use super::export_snippet::IExportSnippet;
|
|
|
|
use super::footnote_reference::IFootnoteReference;
|
|
|
|
use super::inline_babel_call::IInlineBabelCall;
|
|
|
|
use super::inline_source_block::IInlineSourceBlock;
|
|
|
|
use super::italic::IItalic;
|
|
|
|
use super::latex_fragment::ILatexFragment;
|
|
|
|
use super::line_break::ILineBreak;
|
2023-10-29 17:29:16 -04:00
|
|
|
use super::macros::iselector;
|
2023-10-27 17:48:19 -04:00
|
|
|
use super::org_macro::IOrgMacro;
|
|
|
|
use super::plain_link::IPlainLink;
|
2023-10-27 13:05:34 -04:00
|
|
|
use super::plain_text::IPlainText;
|
2023-10-27 17:48:19 -04:00
|
|
|
use super::radio_link::IRadioLink;
|
|
|
|
use super::radio_target::IRadioTarget;
|
2023-10-27 14:43:06 -04:00
|
|
|
use super::registry::Registry;
|
2023-10-27 17:48:19 -04:00
|
|
|
use super::regular_link::IRegularLink;
|
|
|
|
use super::statistics_cookie::IStatisticsCookie;
|
|
|
|
use super::strike_through::IStrikeThrough;
|
|
|
|
use super::subscript::ISubscript;
|
|
|
|
use super::superscript::ISuperscript;
|
|
|
|
use super::timestamp::ITimestamp;
|
|
|
|
use super::underline::IUnderline;
|
|
|
|
use super::verbatim::IVerbatim;
|
2023-10-27 14:54:54 -04:00
|
|
|
use super::ITarget;
|
2023-10-27 19:53:18 -04:00
|
|
|
use futures::future::{BoxFuture, FutureExt};
|
2023-10-27 10:23:05 -04:00
|
|
|
|
2023-10-29 15:36:15 -04:00
|
|
|
#[derive(Debug, Clone)]
|
2023-10-27 13:05:34 -04:00
|
|
|
pub(crate) enum IObject {
|
2023-10-27 17:48:19 -04:00
|
|
|
Bold(IBold),
|
|
|
|
Italic(IItalic),
|
|
|
|
Underline(IUnderline),
|
|
|
|
StrikeThrough(IStrikeThrough),
|
|
|
|
Code(ICode),
|
|
|
|
Verbatim(IVerbatim),
|
2023-10-27 13:05:34 -04:00
|
|
|
PlainText(IPlainText),
|
2023-10-27 17:48:19 -04:00
|
|
|
RegularLink(IRegularLink),
|
|
|
|
RadioLink(IRadioLink),
|
|
|
|
RadioTarget(IRadioTarget),
|
|
|
|
PlainLink(IPlainLink),
|
|
|
|
AngleLink(IAngleLink),
|
|
|
|
OrgMacro(IOrgMacro),
|
|
|
|
Entity(IEntity),
|
|
|
|
LatexFragment(ILatexFragment),
|
|
|
|
ExportSnippet(IExportSnippet),
|
|
|
|
FootnoteReference(IFootnoteReference),
|
|
|
|
Citation(ICitation),
|
|
|
|
CitationReference(ICitationReference),
|
|
|
|
InlineBabelCall(IInlineBabelCall),
|
|
|
|
InlineSourceBlock(IInlineSourceBlock),
|
|
|
|
LineBreak(ILineBreak),
|
2023-10-27 14:54:54 -04:00
|
|
|
Target(ITarget),
|
2023-10-27 17:48:19 -04:00
|
|
|
StatisticsCookie(IStatisticsCookie),
|
|
|
|
Subscript(ISubscript),
|
|
|
|
Superscript(ISuperscript),
|
|
|
|
Timestamp(ITimestamp),
|
2023-10-27 10:23:05 -04:00
|
|
|
}
|
|
|
|
|
2023-10-29 18:54:50 -04:00
|
|
|
iselector!(IObject, Object, original, registry, {
|
2023-10-29 18:26:52 -04:00
|
|
|
iitem!(
|
|
|
|
registry,
|
|
|
|
original,
|
|
|
|
(organic::types::Object::Bold, IObject::Bold, IBold),
|
|
|
|
(organic::types::Object::Italic, IObject::Italic, IItalic),
|
|
|
|
(
|
|
|
|
organic::types::Object::Underline,
|
|
|
|
IObject::Underline,
|
|
|
|
IUnderline
|
|
|
|
),
|
|
|
|
(
|
|
|
|
organic::types::Object::StrikeThrough,
|
|
|
|
IObject::StrikeThrough,
|
|
|
|
IStrikeThrough
|
|
|
|
),
|
|
|
|
(organic::types::Object::Code, IObject::Code, ICode),
|
|
|
|
(
|
|
|
|
organic::types::Object::Verbatim,
|
|
|
|
IObject::Verbatim,
|
|
|
|
IVerbatim
|
|
|
|
),
|
|
|
|
(
|
|
|
|
organic::types::Object::PlainText,
|
|
|
|
IObject::PlainText,
|
|
|
|
IPlainText
|
|
|
|
),
|
|
|
|
(
|
|
|
|
organic::types::Object::RegularLink,
|
|
|
|
IObject::RegularLink,
|
|
|
|
IRegularLink
|
|
|
|
),
|
|
|
|
(
|
|
|
|
organic::types::Object::RadioLink,
|
|
|
|
IObject::RadioLink,
|
|
|
|
IRadioLink
|
|
|
|
),
|
|
|
|
(
|
|
|
|
organic::types::Object::RadioTarget,
|
|
|
|
IObject::RadioTarget,
|
|
|
|
IRadioTarget
|
|
|
|
),
|
|
|
|
(
|
|
|
|
organic::types::Object::PlainLink,
|
|
|
|
IObject::PlainLink,
|
|
|
|
IPlainLink
|
|
|
|
),
|
|
|
|
(
|
|
|
|
organic::types::Object::AngleLink,
|
|
|
|
IObject::AngleLink,
|
|
|
|
IAngleLink
|
|
|
|
),
|
|
|
|
(
|
|
|
|
organic::types::Object::OrgMacro,
|
|
|
|
IObject::OrgMacro,
|
|
|
|
IOrgMacro
|
|
|
|
),
|
|
|
|
(organic::types::Object::Entity, IObject::Entity, IEntity),
|
|
|
|
(
|
|
|
|
organic::types::Object::LatexFragment,
|
|
|
|
IObject::LatexFragment,
|
|
|
|
ILatexFragment
|
|
|
|
),
|
|
|
|
(
|
|
|
|
organic::types::Object::ExportSnippet,
|
|
|
|
IObject::ExportSnippet,
|
|
|
|
IExportSnippet
|
|
|
|
),
|
|
|
|
(
|
|
|
|
organic::types::Object::FootnoteReference,
|
|
|
|
IObject::FootnoteReference,
|
|
|
|
IFootnoteReference
|
|
|
|
),
|
|
|
|
(
|
|
|
|
organic::types::Object::Citation,
|
|
|
|
IObject::Citation,
|
|
|
|
ICitation
|
|
|
|
),
|
|
|
|
(
|
|
|
|
organic::types::Object::CitationReference,
|
|
|
|
IObject::CitationReference,
|
|
|
|
ICitationReference
|
|
|
|
),
|
|
|
|
(
|
|
|
|
organic::types::Object::InlineBabelCall,
|
|
|
|
IObject::InlineBabelCall,
|
|
|
|
IInlineBabelCall
|
|
|
|
),
|
|
|
|
(
|
|
|
|
organic::types::Object::InlineSourceBlock,
|
|
|
|
IObject::InlineSourceBlock,
|
|
|
|
IInlineSourceBlock
|
|
|
|
),
|
|
|
|
(
|
|
|
|
organic::types::Object::LineBreak,
|
|
|
|
IObject::LineBreak,
|
|
|
|
ILineBreak
|
|
|
|
),
|
|
|
|
(organic::types::Object::Target, IObject::Target, ITarget),
|
|
|
|
(
|
|
|
|
organic::types::Object::StatisticsCookie,
|
|
|
|
IObject::StatisticsCookie,
|
|
|
|
IStatisticsCookie
|
|
|
|
),
|
|
|
|
(
|
|
|
|
organic::types::Object::Subscript,
|
|
|
|
IObject::Subscript,
|
|
|
|
ISubscript
|
|
|
|
),
|
|
|
|
(
|
|
|
|
organic::types::Object::Superscript,
|
|
|
|
IObject::Superscript,
|
|
|
|
ISuperscript
|
|
|
|
),
|
|
|
|
(
|
|
|
|
organic::types::Object::Timestamp,
|
|
|
|
IObject::Timestamp,
|
|
|
|
ITimestamp
|
|
|
|
),
|
|
|
|
)
|
2023-10-29 17:29:16 -04:00
|
|
|
});
|