mirror of
https://github.com/robertwayne/axum-htmx
synced 2024-11-24 04:12:50 +01:00
Added helper methods to HxLocation
This commit is contained in:
parent
d7a8ee55b1
commit
523cbb0371
1 changed files with 51 additions and 2 deletions
|
@ -27,6 +27,7 @@ pub struct HxLocation {
|
||||||
}
|
}
|
||||||
|
|
||||||
impl HxLocation {
|
impl HxLocation {
|
||||||
|
/// Creates location from [`Uri`] without any options.
|
||||||
pub fn from_uri(uri: Uri) -> Self {
|
pub fn from_uri(uri: Uri) -> Self {
|
||||||
Self {
|
Self {
|
||||||
#[cfg(feature = "serde")]
|
#[cfg(feature = "serde")]
|
||||||
|
@ -35,12 +36,36 @@ impl HxLocation {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/// Creates location from [`Uri`] and options.
|
||||||
#[cfg(feature = "serde")]
|
#[cfg(feature = "serde")]
|
||||||
#[cfg_attr(feature = "unstable", doc(cfg(feature = "serde")))]
|
#[cfg_attr(feature = "unstable", doc(cfg(feature = "serde")))]
|
||||||
pub fn from_uri_with_options(uri: Uri, options: LocationOptions) -> Self {
|
pub fn from_uri_with_options(uri: Uri, options: LocationOptions) -> Self {
|
||||||
Self { uri, options }
|
Self { uri, options }
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/// Parses `uri` and sets it as location.
|
||||||
|
#[allow(clippy::should_implement_trait)]
|
||||||
|
pub fn from_str(uri: impl AsRef<str>) -> Result<Self, http::uri::InvalidUri> {
|
||||||
|
Ok(Self {
|
||||||
|
#[cfg(feature = "serde")]
|
||||||
|
options: LocationOptions::default(),
|
||||||
|
uri: uri.as_ref().parse::<Uri>()?,
|
||||||
|
})
|
||||||
|
}
|
||||||
|
|
||||||
|
/// Parses `uri` and sets it as location with additional options.
|
||||||
|
#[cfg(feature = "serde")]
|
||||||
|
#[cfg_attr(feature = "unstable", doc(cfg(feature = "serde")))]
|
||||||
|
pub fn from_str_with_options(
|
||||||
|
uri: impl AsRef<str>,
|
||||||
|
options: LocationOptions,
|
||||||
|
) -> Result<Self, http::uri::InvalidUri> {
|
||||||
|
Ok(Self {
|
||||||
|
options,
|
||||||
|
uri: uri.as_ref().parse::<Uri>()?,
|
||||||
|
})
|
||||||
|
}
|
||||||
|
|
||||||
#[cfg(feature = "serde")]
|
#[cfg(feature = "serde")]
|
||||||
fn into_header_with_options(self) -> Result<String, HxError> {
|
fn into_header_with_options(self) -> Result<String, HxError> {
|
||||||
if self.options.is_default() {
|
if self.options.is_default() {
|
||||||
|
@ -62,11 +87,35 @@ impl HxLocation {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
impl From<Uri> for HxLocation {
|
||||||
|
fn from(uri: Uri) -> Self {
|
||||||
|
Self::from_uri(uri)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
#[cfg(feature = "serde")]
|
||||||
|
#[cfg_attr(feature = "unstable", doc(cfg(feature = "serde")))]
|
||||||
|
impl From<(Uri, LocationOptions)> for HxLocation {
|
||||||
|
fn from((uri, options): (Uri, LocationOptions)) -> Self {
|
||||||
|
Self::from_uri_with_options(uri, options)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
impl<'a> TryFrom<&'a str> for HxLocation {
|
impl<'a> TryFrom<&'a str> for HxLocation {
|
||||||
type Error = <Uri as FromStr>::Err;
|
type Error = <Uri as FromStr>::Err;
|
||||||
|
|
||||||
fn try_from(value: &'a str) -> Result<Self, Self::Error> {
|
fn try_from(uri: &'a str) -> Result<Self, Self::Error> {
|
||||||
Ok(Self::from_uri(Uri::from_str(value)?))
|
Self::from_str(uri)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
#[cfg(feature = "serde")]
|
||||||
|
#[cfg_attr(feature = "unstable", doc(cfg(feature = "serde")))]
|
||||||
|
impl<'a> TryFrom<(&'a str, LocationOptions)> for HxLocation {
|
||||||
|
type Error = <Uri as FromStr>::Err;
|
||||||
|
|
||||||
|
fn try_from((uri, options): (&'a str, LocationOptions)) -> Result<Self, Self::Error> {
|
||||||
|
Self::from_str_with_options(uri, options)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue