Skip to main content

Screen

Struct Screen 

Source
pub struct Screen { /* private fields */ }
Expand description

A rendered Script Filter result screen.

Screen wraps the parsed JSON output from an Alfred workflow invocation, providing read-only accessors for inspecting items and their properties. When created by a Simulator, it also carries graph context for action routing.

§Example

use alfrusco::simulator::Screen;

let json = r#"{"items":[{"title":"Hello","arg":"world","valid":true}]}"#;
let screen = Screen::from_json(json).unwrap();
assert_eq!(screen.items().len(), 1);
assert_eq!(screen.items()[0].title(), "Hello");
assert_eq!(screen.items()[0].arg(), Some("world"));
assert!(screen.items()[0].is_valid());

Implementations§

Source§

impl Screen

Source

pub fn from_json(json: &str) -> Result<Self, ScreenError>

Parses a JSON string (Alfred Script Filter output) into a Screen.

A Screen created this way has no graph context; Screen::action will return None. Use Simulator to get action-routable screens.

§Errors

Returns an error if the JSON is invalid or missing the items array.

Source

pub fn with_context(self, graph: Arc<WorkflowGraph>, source_uid: String) -> Self

Creates a screen with graph context for action routing.

This is useful for testing action resolution without a full Simulator setup — parse JSON via Screen::from_json, then attach a graph.

Source

pub fn items(&self) -> &[ScreenItem]

Returns the items on this screen.

Source

pub fn len(&self) -> usize

Returns the number of items on this screen.

Source

pub fn is_empty(&self) -> bool

Returns true if there are no items on this screen.

Source

pub fn raw_json(&self) -> &Value

Returns the raw JSON value of the entire response.

Source

pub fn assert_renders(&self)

Asserts that this screen renders at least one item.

§Panics

Panics if the screen has no items.

Source

pub fn action(&self, index: usize) -> Option<ActionResult>

Determines the action result for the item at the given index.

Walks the workflow graph from the source Script Filter to determine what would happen if the user actioned this item (with the given modifier bitmask, defaulting to 0 for no modifiers).

Returns None if this screen has no graph context (created via Screen::from_json rather than a Simulator).

§Panics

Panics if index is out of bounds.

Source

pub fn action_first(&self) -> Option<ActionResult>

Determines the action result for the first item on this screen.

Convenience wrapper around Screen::action with index 0.

Returns None if this screen has no graph context or is empty.

Source

pub fn action_with_modifiers( &self, index: usize, modifiers: u64, ) -> Option<ActionResult>

Determines the action result for the item at the given index with a specific modifier bitmask.

Alfred modifier bitmasks: Cmd=1048576, Alt=524288, Ctrl=262144, Shift=131072, Fn=8388608. Combine with bitwise OR.

Returns None if this screen has no graph context.

§Panics

Panics if index is out of bounds.

Trait Implementations§

Source§

impl Clone for Screen

Source§

fn clone(&self) -> Screen

Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
Source§

impl Debug for Screen

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more

Auto Trait Implementations§

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> CloneToUninit for T
where T: Clone,

Source§

unsafe fn clone_to_uninit(&self, dest: *mut u8)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dest. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T> IntoEither for T

Source§

fn into_either(self, into_left: bool) -> Either<Self, Self>

Converts self into a Left variant of Either<Self, Self> if into_left is true. Converts self into a Right variant of Either<Self, Self> otherwise. Read more
Source§

fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
where F: FnOnce(&Self) -> bool,

Converts self into a Left variant of Either<Self, Self> if into_left(&self) returns true. Converts self into a Right variant of Either<Self, Self> otherwise. Read more
Source§

impl<T> Pointable for T

Source§

const ALIGN: usize

The alignment of pointer.
Source§

type Init = T

The type for initializers.
Source§

unsafe fn init(init: <T as Pointable>::Init) -> usize

Initializes a with the given initializer. Read more
Source§

unsafe fn deref<'a>(ptr: usize) -> &'a T

Dereferences the given pointer. Read more
Source§

unsafe fn deref_mut<'a>(ptr: usize) -> &'a mut T

Mutably dereferences the given pointer. Read more
Source§

unsafe fn drop(ptr: usize)

Drops the object pointed to by the given pointer. Read more
Source§

impl<T> ToOwned for T
where T: Clone,

Source§

type Owned = T

The resulting type after obtaining ownership.
Source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
Source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.