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 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115
#[cfg(feature = "fp-bindgen")]
use fp_bindgen::prelude::Serializable;
use serde::{Deserialize, Serialize};
/// Defines a field that allows selection from a predefined list of options.
///
/// Values to be selected from can be either hard-coded in the schema, or
/// (only for query forms) fetched on-demand the same way as auto-suggestions.
#[derive(Clone, Debug, Default, Deserialize, Serialize, PartialEq)]
#[cfg_attr(
feature = "fp-bindgen",
derive(Serializable),
fp(rust_module = "fiberplane_models::providers")
)]
#[non_exhaustive]
#[serde(rename_all = "camelCase")]
pub struct SelectField {
/// Name of the field as it will be included in the encoded query or config
/// object.
pub name: String,
/// Suggested label to display along the field.
pub label: String,
/// Whether multiple values may be selected.
pub multiple: bool,
/// A list of options to select from.
///
/// In addition to the options in this list, the auto-suggest mechanism
/// can also fetch options when the user starts typing in this field. In
/// this case, `supports_suggestions` should be set to `true`.
pub options: Vec<String>,
/// Suggested placeholder to display when there is no value.
pub placeholder: String,
/// An optional list of fields that should be filled in before allowing the
/// user to fill in this field. This forces a certain ordering in the data
/// entry, which enables richer auto-suggestions, since the filled in
/// prerequisite fields can provide additional context.
pub prerequisites: Vec<String>,
/// Whether a value is required.
pub required: bool,
/// Whether the provider supports auto-suggestions for this field.
pub supports_suggestions: bool,
}
impl SelectField {
/// Creates a new select field with all default values.
pub fn new() -> Self {
Default::default()
}
/// Marks the field as allowing multiple values.
pub fn multiple(self) -> Self {
Self {
multiple: true,
..self
}
}
/// Marks the field as required.
pub fn required(self) -> Self {
Self {
required: true,
..self
}
}
pub fn with_label(self, label: impl Into<String>) -> Self {
Self {
label: label.into(),
..self
}
}
pub fn with_name(self, name: impl Into<String>) -> Self {
Self {
name: name.into(),
..self
}
}
pub fn with_options(self, options: impl Into<Vec<String>>) -> Self {
Self {
options: options.into(),
..self
}
}
pub fn with_placeholder(self, placeholder: impl Into<String>) -> Self {
Self {
placeholder: placeholder.into(),
..self
}
}
pub fn with_prerequisites(self, prerequisites: impl Into<Vec<String>>) -> Self {
Self {
prerequisites: prerequisites.into(),
..self
}
}
/// Marks the field as supporting auto-suggestions.
pub fn with_suggestions(self) -> Self {
Self {
supports_suggestions: true,
..self
}
}
}