Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: switch component #273

Open
wants to merge 2 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion zero_true/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,4 +19,5 @@
from zt_backend.models.components.html import HTML, pygwalker
from zt_backend.models.state.state import state
from zt_backend.models.state.state import global_state
from zt_backend.models.components.chat_ui import chat_ui
from zt_backend.models.components.chat_ui import chat_ui
from zt_backend.models.components.switch import Switch
34 changes: 34 additions & 0 deletions zt_backend/models/components/switch.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
from typing import List, Optional,Union
from pydantic import Field, field_validator, validator
from zt_backend.models.components.zt_component import ZTComponent
from zt_backend.models.components.validations import validate_color
from zt_backend.models.state.user_state import UserContext

class Switch(ZTComponent):
"""A slider component that allows a user to select a range of values"""
component: str = Field("v-switch", description="Vue component name")
value: str = Field ('', description="The input text value")
hint: Optional[str] = Field('', description="Hint text for switch")
disabled: Optional[bool] = Field(None, description="If true, the input is disabled")
color: str = Field('primary', pre=True, description="Color of the switch. Can be custom or standard Material color")
label: Optional[str] = Field(None,description= 'A label for your switch')
multiple: Optional[bool] = Field(None, description="Determines if multiple selections are allowed")
width: Union[int,str] = Field('100%', description="Width of the switch")
triggerEvent: str = Field('update:modelValue',description="Trigger event for when to trigger a run")
readonly: Optional[bool] = Field(None, description="Determines if the Switch is read-only")

@field_validator('color')
def validate_color(cls, color):
return validate_color(color)

@validator('value', always=True) #TODO: debug and replace with field validator
def get_value_from_global_state(cls, value, values):
id = values['id'] # Get the id if it exists in the field values
execution_state = UserContext.get_state()
try:
if execution_state and id and id in execution_state.component_values: # Check if id exists in global_state
return execution_state.component_values[id] # Return the value associated with id in global_state
except Exception as e:
e
return value # If id doesn't exist in global_state, return the original value

5 changes: 4 additions & 1 deletion zt_backend/models/generate_schema.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@
from .components.timer import Timer
from .components.iframe import iFrame
from .components.html import HTML
from .components.switch import Switch
import json

def generate_json(model, name):
Expand Down Expand Up @@ -62,4 +63,6 @@ def generate_schema():
generate_json(Text,'text')
generate_json(Timer,'timer')
generate_json(iFrame,'iframe')
generate_json(HTML,'html')
generate_json(HTML,'html')
generate_json(Switch,'switch')

74 changes: 74 additions & 0 deletions zt_frontend/src/types/switch.d.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,74 @@
/* eslint-disable */
/**
* This file was automatically generated by json-schema-to-typescript.
* DO NOT MODIFY IT BY HAND. Instead, modify the source JSONSchema file,
* and run json-schema-to-typescript to regenerate this file.
*/

/**
* Unique id for a component
*/
export type Id = string;
/**
* Optional variable name associated with a component
*/
export type VariableName = string;
/**
* Vue component name
*/
export type Component = string;
/**
* The input text value
*/
export type Value = string;
/**
* Hint text for switch
*/
export type Hint = string | null;
/**
* If true, the input is disabled
*/
export type Disabled = boolean | null;
/**
* Color of the switch. Can be custom or standard Material color
*/
export type Color = string;
/**
* A label for your switch
*/
export type Label = string | null;
/**
* Determines if multiple selections are allowed
*/
export type Multiple = boolean | null;
/**
* Width of the switch
*/
export type Width = number | string;
/**
* Trigger event for when to trigger a run
*/
export type Triggerevent = string;
/**
* Determines if the Switch is read-only
*/
export type Readonly = boolean | null;

/**
* A slider component that allows a user to select a range of values
*/
export interface Switch {
id: Id;
variable_name?: VariableName;
component?: Component;
value?: Value;
hint?: Hint;
disabled?: Disabled;
color?: Color;
label?: Label;
multiple?: Multiple;
width?: Width;
triggerEvent?: Triggerevent;
readonly?: Readonly;
[k: string]: unknown;
}
Loading