1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97
use std::borrow::Cow;
use serde::Deserialize;
#[derive(Debug, Clone, Deserialize)]
#[serde(rename_all = "camelCase")]
pub struct ReactOptions {
// Both Runtimes
//
/// Decides which runtime to use.
pub runtime: ReactJsxRuntime,
/// This toggles behavior specific to development, such as adding __source and __self.
///
/// Defaults to `true`.
#[serde(default = "default_as_true")]
pub development: bool,
/// Enables `@babel/plugin-transform-react-pure-annotations`.
///
/// It will mark top-level React method calls as pure for tree shaking.
///
/// Defaults to `true`.
#[serde(default = "default_as_true")]
pub pure: bool,
//
// React Automatic Runtime
//
/// Replaces the import source when importing functions.
///
/// Defaults to `react`.
#[serde(default = "default_for_import_source")]
pub import_source: Cow<'static, str>,
//
// React Classic Runtime
//
/// Replace the function used when compiling JSX expressions.
///
/// It should be a qualified name (e.g. React.createElement) or an identifier (e.g. createElement).
///
/// Note that the @jsx React.DOM pragma has been deprecated as of React v0.12
///
/// Defaults to `React.createElement`.
#[serde(default = "default_for_pragma")]
pub pragma: Cow<'static, str>,
/// Replace the component used when compiling JSX fragments. It should be a valid JSX tag name.
///
/// Defaults to `React.Fragment`.
#[serde(default = "default_for_pragma_frag")]
pub pragma_frag: Cow<'static, str>,
//
// `useBuiltIns` and `useSpread` are deprecated in babel 8.
}
impl Default for ReactOptions {
fn default() -> Self {
Self {
runtime: ReactJsxRuntime::default(),
development: default_as_true(),
pure: default_as_true(),
import_source: default_for_import_source(),
pragma: default_for_pragma(),
pragma_frag: default_for_pragma_frag(),
}
}
}
#[inline]
fn default_as_true() -> bool {
true
}
#[inline]
fn default_for_import_source() -> Cow<'static, str> {
Cow::Borrowed("react")
}
fn default_for_pragma() -> Cow<'static, str> {
Cow::Borrowed("React.createElement")
}
fn default_for_pragma_frag() -> Cow<'static, str> {
Cow::Borrowed("React.Fragment")
}
/// Decides which runtime to use.
///
/// Auto imports the functions that JSX transpiles to.
/// classic does not automatic import anything.
#[derive(Debug, Default, Clone, Deserialize)]
pub enum ReactJsxRuntime {
Classic,
/// The default runtime is switched to automatic in Babel 8.
#[default]
Automatic,
}