diff --git a/api/configs/middleware/__init__.py b/api/configs/middleware/__init__.py index 4e228ab932..ba8bbc7135 100644 --- a/api/configs/middleware/__init__.py +++ b/api/configs/middleware/__init__.py @@ -144,7 +144,8 @@ class DatabaseConfig(BaseSettings): default="postgresql", ) - @computed_field + @computed_field # type: ignore[misc] + @property def SQLALCHEMY_DATABASE_URI(self) -> str: db_extras = ( f"{self.DB_EXTRAS}&client_encoding={self.DB_CHARSET}" if self.DB_CHARSET else self.DB_EXTRAS diff --git a/api/core/app/apps/advanced_chat/generate_task_pipeline.py b/api/core/app/apps/advanced_chat/generate_task_pipeline.py index abb8db34de..5db7539926 100644 --- a/api/core/app/apps/advanced_chat/generate_task_pipeline.py +++ b/api/core/app/apps/advanced_chat/generate_task_pipeline.py @@ -568,7 +568,7 @@ class AdvancedChatAppGenerateTaskPipeline: ) yield workflow_finish_resp - self._base_task_pipeline._queue_manager.publish(QueueAdvancedChatMessageEndEvent(), PublishFrom.TASK_PIPELINE) + self._base_task_pipeline.queue_manager.publish(QueueAdvancedChatMessageEndEvent(), PublishFrom.TASK_PIPELINE) def _handle_workflow_partial_success_event( self, @@ -600,7 +600,7 @@ class AdvancedChatAppGenerateTaskPipeline: ) yield workflow_finish_resp - self._base_task_pipeline._queue_manager.publish(QueueAdvancedChatMessageEndEvent(), PublishFrom.TASK_PIPELINE) + self._base_task_pipeline.queue_manager.publish(QueueAdvancedChatMessageEndEvent(), PublishFrom.TASK_PIPELINE) def _handle_workflow_failed_event( self, @@ -845,7 +845,7 @@ class AdvancedChatAppGenerateTaskPipeline: # Initialize graph runtime state graph_runtime_state: Optional[GraphRuntimeState] = None - for queue_message in self._base_task_pipeline._queue_manager.listen(): + for queue_message in self._base_task_pipeline.queue_manager.listen(): event = queue_message.event match event: @@ -959,11 +959,11 @@ class AdvancedChatAppGenerateTaskPipeline: if self._base_task_pipeline._output_moderation_handler: if self._base_task_pipeline._output_moderation_handler.should_direct_output(): self._task_state.answer = self._base_task_pipeline._output_moderation_handler.get_final_output() - self._base_task_pipeline._queue_manager.publish( + self._base_task_pipeline.queue_manager.publish( QueueTextChunkEvent(text=self._task_state.answer), PublishFrom.TASK_PIPELINE ) - self._base_task_pipeline._queue_manager.publish( + self._base_task_pipeline.queue_manager.publish( QueueStopEvent(stopped_by=QueueStopEvent.StopBy.OUTPUT_MODERATION), PublishFrom.TASK_PIPELINE ) return True diff --git a/api/core/app/apps/workflow/generate_task_pipeline.py b/api/core/app/apps/workflow/generate_task_pipeline.py index b1e9a340bd..537c070adf 100644 --- a/api/core/app/apps/workflow/generate_task_pipeline.py +++ b/api/core/app/apps/workflow/generate_task_pipeline.py @@ -711,7 +711,7 @@ class WorkflowAppGenerateTaskPipeline: # Initialize graph runtime state graph_runtime_state = None - for queue_message in self._base_task_pipeline._queue_manager.listen(): + for queue_message in self._base_task_pipeline.queue_manager.listen(): event = queue_message.event match event: diff --git a/api/core/app/entities/app_invoke_entities.py b/api/core/app/entities/app_invoke_entities.py index 65ed267959..11f37c4baa 100644 --- a/api/core/app/entities/app_invoke_entities.py +++ b/api/core/app/entities/app_invoke_entities.py @@ -9,7 +9,6 @@ from core.app.app_config.entities import EasyUIBasedAppConfig, WorkflowUIBasedAp from core.entities.provider_configuration import ProviderModelBundle from core.file import File, FileUploadConfig from core.model_runtime.entities.model_entities import AIModelEntity -from core.ops.ops_trace_manager import TraceQueueManager class InvokeFrom(Enum): @@ -114,7 +113,8 @@ class AppGenerateEntity(BaseModel): extras: dict[str, Any] = Field(default_factory=dict) # tracing instance - trace_manager: Optional[TraceQueueManager] = None + # Using Any to avoid circular import with TraceQueueManager + trace_manager: Optional[Any] = None class EasyUIBasedAppGenerateEntity(AppGenerateEntity): diff --git a/api/core/app/task_pipeline/based_generate_task_pipeline.py b/api/core/app/task_pipeline/based_generate_task_pipeline.py index 3ed0c3352f..014c7fd4f5 100644 --- a/api/core/app/task_pipeline/based_generate_task_pipeline.py +++ b/api/core/app/task_pipeline/based_generate_task_pipeline.py @@ -37,7 +37,7 @@ class BasedGenerateTaskPipeline: stream: bool, ) -> None: self._application_generate_entity = application_generate_entity - self._queue_manager = queue_manager + self.queue_manager = queue_manager self._start_at = time.perf_counter() self._output_moderation_handler = self._init_output_moderation() self._stream = stream @@ -113,7 +113,7 @@ class BasedGenerateTaskPipeline: tenant_id=app_config.tenant_id, app_id=app_config.app_id, rule=ModerationRule(type=sensitive_word_avoidance.type, config=sensitive_word_avoidance.config), - queue_manager=self._queue_manager, + queue_manager=self.queue_manager, ) return None diff --git a/api/core/app/task_pipeline/easy_ui_based_generate_task_pipeline.py b/api/core/app/task_pipeline/easy_ui_based_generate_task_pipeline.py index 888434798a..56131d99c9 100644 --- a/api/core/app/task_pipeline/easy_ui_based_generate_task_pipeline.py +++ b/api/core/app/task_pipeline/easy_ui_based_generate_task_pipeline.py @@ -257,7 +257,7 @@ class EasyUIBasedGenerateTaskPipeline(BasedGenerateTaskPipeline): Process stream response. :return: """ - for message in self._queue_manager.listen(): + for message in self.queue_manager.listen(): if publisher: publisher.publish(message) event = message.event @@ -499,7 +499,7 @@ class EasyUIBasedGenerateTaskPipeline(BasedGenerateTaskPipeline): if self._output_moderation_handler.should_direct_output(): # stop subscribe new token when output moderation should direct output self._task_state.llm_result.message.content = self._output_moderation_handler.get_final_output() - self._queue_manager.publish( + self.queue_manager.publish( QueueLLMChunkEvent( chunk=LLMResultChunk( model=self._task_state.llm_result.model, @@ -513,7 +513,7 @@ class EasyUIBasedGenerateTaskPipeline(BasedGenerateTaskPipeline): PublishFrom.TASK_PIPELINE, ) - self._queue_manager.publish( + self.queue_manager.publish( QueueStopEvent(stopped_by=QueueStopEvent.StopBy.OUTPUT_MODERATION), PublishFrom.TASK_PIPELINE ) return True diff --git a/api/core/memory/token_buffer_memory.py b/api/core/memory/token_buffer_memory.py index 91f17568b6..2a76b1f41a 100644 --- a/api/core/memory/token_buffer_memory.py +++ b/api/core/memory/token_buffer_memory.py @@ -99,13 +99,13 @@ class TokenBufferMemory: prompt_messages.append(UserPromptMessage(content=message.query)) else: prompt_message_contents: list[PromptMessageContentUnionTypes] = [] - prompt_message_contents.append(TextPromptMessageContent(data=message.query)) for file in file_objs: prompt_message = file_manager.to_prompt_message_content( file, image_detail_config=detail, ) prompt_message_contents.append(prompt_message) + prompt_message_contents.append(TextPromptMessageContent(data=message.query)) prompt_messages.append(UserPromptMessage(content=prompt_message_contents)) diff --git a/api/core/model_runtime/model_providers/model_provider_factory.py b/api/core/model_runtime/model_providers/model_provider_factory.py index ad46f64ec3..f8590b38f8 100644 --- a/api/core/model_runtime/model_providers/model_provider_factory.py +++ b/api/core/model_runtime/model_providers/model_provider_factory.py @@ -257,11 +257,6 @@ class ModelProviderFactory: # scan all providers plugin_model_provider_entities = self.get_plugin_model_providers() - # convert provider_configs to dict - provider_credentials_dict = {} - for provider_config in provider_configs: - provider_credentials_dict[provider_config.provider] = provider_config.credentials - # traverse all model_provider_extensions providers = [] for plugin_model_provider_entity in plugin_model_provider_entities: diff --git a/api/core/model_runtime/schema_validators/common_validator.py b/api/core/model_runtime/schema_validators/common_validator.py index 810a7c4c44..b689007401 100644 --- a/api/core/model_runtime/schema_validators/common_validator.py +++ b/api/core/model_runtime/schema_validators/common_validator.py @@ -68,7 +68,7 @@ class CommonValidator: if credential_form_schema.max_length: if len(value) > credential_form_schema.max_length: raise ValueError( - f"Variable {credential_form_schema.variable} length should not" + f"Variable {credential_form_schema.variable} length should not be" f" greater than {credential_form_schema.max_length}" ) diff --git a/api/core/model_runtime/utils/helper.py b/api/core/model_runtime/utils/helper.py deleted file mode 100644 index 5e8a723ec7..0000000000 --- a/api/core/model_runtime/utils/helper.py +++ /dev/null @@ -1,10 +0,0 @@ -import pydantic -from pydantic import BaseModel - - -def dump_model(model: BaseModel) -> dict: - if hasattr(pydantic, "model_dump"): - # FIXME mypy error, try to fix it instead of using type: ignore - return pydantic.model_dump(model) # type: ignore - else: - return model.model_dump() diff --git a/api/core/rag/datasource/vdb/oracle/oraclevector.py b/api/core/rag/datasource/vdb/oracle/oraclevector.py index d1c8142b3d..303c3fe31c 100644 --- a/api/core/rag/datasource/vdb/oracle/oraclevector.py +++ b/api/core/rag/datasource/vdb/oracle/oraclevector.py @@ -109,8 +109,19 @@ class OracleVector(BaseVector): ) def _get_connection(self) -> Connection: - connection = oracledb.connect(user=self.config.user, password=self.config.password, dsn=self.config.dsn) - return connection + if self.config.is_autonomous: + connection = oracledb.connect( + user=self.config.user, + password=self.config.password, + dsn=self.config.dsn, + config_dir=self.config.config_dir, + wallet_location=self.config.wallet_location, + wallet_password=self.config.wallet_password, + ) + return connection + else: + connection = oracledb.connect(user=self.config.user, password=self.config.password, dsn=self.config.dsn) + return connection def _create_connection_pool(self, config: OracleVectorConfig): pool_params = { diff --git a/api/core/variables/consts.py b/api/core/variables/consts.py index 03b277d619..8f3f78f740 100644 --- a/api/core/variables/consts.py +++ b/api/core/variables/consts.py @@ -4,4 +4,4 @@ # # If the selector length is more than 2, the remaining parts are the keys / indexes paths used # to extract part of the variable value. -MIN_SELECTORS_LENGTH = 2 +SELECTORS_LENGTH = 2 diff --git a/api/core/workflow/entities/variable_pool.py b/api/core/workflow/entities/variable_pool.py index fbb8df6b01..fb0794844e 100644 --- a/api/core/workflow/entities/variable_pool.py +++ b/api/core/workflow/entities/variable_pool.py @@ -7,8 +7,8 @@ from pydantic import BaseModel, Field from core.file import File, FileAttribute, file_manager from core.variables import Segment, SegmentGroup, Variable -from core.variables.consts import MIN_SELECTORS_LENGTH -from core.variables.segments import FileSegment, NoneSegment +from core.variables.consts import SELECTORS_LENGTH +from core.variables.segments import FileSegment, ObjectSegment from core.variables.variables import VariableUnion from core.workflow.constants import CONVERSATION_VARIABLE_NODE_ID, ENVIRONMENT_VARIABLE_NODE_ID, SYSTEM_VARIABLE_NODE_ID from core.workflow.system_variable import SystemVariable @@ -24,7 +24,7 @@ class VariablePool(BaseModel): # The first element of the selector is the node id, it's the first-level key in the dictionary. # Other elements of the selector are the keys in the second-level dictionary. To get the key, we hash the # elements of the selector except the first one. - variable_dictionary: defaultdict[str, Annotated[dict[int, VariableUnion], Field(default_factory=dict)]] = Field( + variable_dictionary: defaultdict[str, Annotated[dict[str, VariableUnion], Field(default_factory=dict)]] = Field( description="Variables mapping", default=defaultdict(dict), ) @@ -36,6 +36,7 @@ class VariablePool(BaseModel): ) system_variables: SystemVariable = Field( description="System variables", + default_factory=SystemVariable.empty, ) environment_variables: Sequence[VariableUnion] = Field( description="Environment variables.", @@ -58,23 +59,29 @@ class VariablePool(BaseModel): def add(self, selector: Sequence[str], value: Any, /) -> None: """ - Adds a variable to the variable pool. + Add a variable to the variable pool. - NOTE: You should not add a non-Segment value to the variable pool - even if it is allowed now. + This method accepts a selector path and a value, converting the value + to a Variable object if necessary before storing it in the pool. Args: - selector (Sequence[str]): The selector for the variable. - value (VariableValue): The value of the variable. + selector: A two-element sequence containing [node_id, variable_name]. + The selector must have exactly 2 elements to be valid. + value: The value to store. Can be a Variable, Segment, or any value + that can be converted to a Segment (str, int, float, dict, list, File). Raises: - ValueError: If the selector is invalid. + ValueError: If selector length is not exactly 2 elements. - Returns: - None + Note: + While non-Segment values are currently accepted and automatically + converted, it's recommended to pass Segment or Variable objects directly. """ - if len(selector) < MIN_SELECTORS_LENGTH: - raise ValueError("Invalid selector") + if len(selector) != SELECTORS_LENGTH: + raise ValueError( + f"Invalid selector: expected {SELECTORS_LENGTH} elements (node_id, variable_name), " + f"got {len(selector)} elements" + ) if isinstance(value, Variable): variable = value @@ -84,57 +91,85 @@ class VariablePool(BaseModel): segment = variable_factory.build_segment(value) variable = variable_factory.segment_to_variable(segment=segment, selector=selector) - key, hash_key = self._selector_to_keys(selector) + node_id, name = self._selector_to_keys(selector) # Based on the definition of `VariableUnion`, # `list[Variable]` can be safely used as `list[VariableUnion]` since they are compatible. - self.variable_dictionary[key][hash_key] = cast(VariableUnion, variable) + self.variable_dictionary[node_id][name] = cast(VariableUnion, variable) @classmethod - def _selector_to_keys(cls, selector: Sequence[str]) -> tuple[str, int]: - return selector[0], hash(tuple(selector[1:])) + def _selector_to_keys(cls, selector: Sequence[str]) -> tuple[str, str]: + return selector[0], selector[1] def _has(self, selector: Sequence[str]) -> bool: - key, hash_key = self._selector_to_keys(selector) - if key not in self.variable_dictionary: + node_id, name = self._selector_to_keys(selector) + if node_id not in self.variable_dictionary: return False - if hash_key not in self.variable_dictionary[key]: + if name not in self.variable_dictionary[node_id]: return False return True def get(self, selector: Sequence[str], /) -> Segment | None: """ - Retrieves the value from the variable pool based on the given selector. + Retrieve a variable's value from the pool as a Segment. + + This method supports both simple selectors [node_id, variable_name] and + extended selectors that include attribute access for FileSegment and + ObjectSegment types. Args: - selector (Sequence[str]): The selector used to identify the variable. + selector: A sequence with at least 2 elements: + - [node_id, variable_name]: Returns the full segment + - [node_id, variable_name, attr, ...]: Returns a nested value + from FileSegment (e.g., 'url', 'name') or ObjectSegment Returns: - Any: The value associated with the given selector. + The Segment associated with the selector, or None if not found. + Returns None if selector has fewer than 2 elements. Raises: - ValueError: If the selector is invalid. + ValueError: If attempting to access an invalid FileAttribute. """ - if len(selector) < MIN_SELECTORS_LENGTH: + if len(selector) < SELECTORS_LENGTH: return None - key, hash_key = self._selector_to_keys(selector) - value: Segment | None = self.variable_dictionary[key].get(hash_key) + node_id, name = self._selector_to_keys(selector) + segment: Segment | None = self.variable_dictionary[node_id].get(name) - if value is None: - selector, attr = selector[:-1], selector[-1] + if segment is None: + return None + + if len(selector) == 2: + return segment + + if isinstance(segment, FileSegment): + attr = selector[2] # Python support `attr in FileAttribute` after 3.12 if attr not in {item.value for item in FileAttribute}: return None - value = self.get(selector) - if not isinstance(value, FileSegment | NoneSegment): - return None - if isinstance(value, FileSegment): - attr = FileAttribute(attr) - attr_value = file_manager.get_attr(file=value.value, attr=attr) - return variable_factory.build_segment(attr_value) - return value + attr = FileAttribute(attr) + attr_value = file_manager.get_attr(file=segment.value, attr=attr) + return variable_factory.build_segment(attr_value) - return value + # Navigate through nested attributes + result: Any = segment + for attr in selector[2:]: + result = self._extract_value(result) + result = self._get_nested_attribute(result, attr) + if result is None: + return None + + # Return result as Segment + return result if isinstance(result, Segment) else variable_factory.build_segment(result) + + def _extract_value(self, obj: Any) -> Any: + """Extract the actual value from an ObjectSegment.""" + return obj.value if isinstance(obj, ObjectSegment) else obj + + def _get_nested_attribute(self, obj: Mapping[str, Any], attr: str) -> Any: + """Get a nested attribute from a dictionary-like object.""" + if not isinstance(obj, dict): + return None + return obj.get(attr) def remove(self, selector: Sequence[str], /): """ diff --git a/api/core/workflow/graph_engine/graph_engine.py b/api/core/workflow/graph_engine/graph_engine.py index ef13277e0c..b9663d32f7 100644 --- a/api/core/workflow/graph_engine/graph_engine.py +++ b/api/core/workflow/graph_engine/graph_engine.py @@ -15,7 +15,7 @@ from configs import dify_config from core.app.apps.exc import GenerateTaskStoppedError from core.app.entities.app_invoke_entities import InvokeFrom from core.workflow.entities.node_entities import AgentNodeStrategyInit, NodeRunResult -from core.workflow.entities.variable_pool import VariablePool, VariableValue +from core.workflow.entities.variable_pool import VariablePool from core.workflow.entities.workflow_node_execution import WorkflowNodeExecutionMetadataKey, WorkflowNodeExecutionStatus from core.workflow.graph_engine.condition_handlers.condition_manager import ConditionManager from core.workflow.graph_engine.entities.event import ( @@ -51,7 +51,6 @@ from core.workflow.nodes.base import BaseNode from core.workflow.nodes.end.end_stream_processor import EndStreamProcessor from core.workflow.nodes.enums import ErrorStrategy, FailBranchSourceHandle from core.workflow.nodes.event import RunCompletedEvent, RunRetrieverResourceEvent, RunStreamChunkEvent -from core.workflow.utils import variable_utils from libs.flask_utils import preserve_flask_contexts from models.enums import UserFrom from models.workflow import WorkflowType @@ -701,11 +700,9 @@ class GraphEngine: route_node_state.status = RouteNodeState.Status.EXCEPTION if run_result.outputs: for variable_key, variable_value in run_result.outputs.items(): - # append variables to variable pool recursively - self._append_variables_recursively( - node_id=node.node_id, - variable_key_list=[variable_key], - variable_value=variable_value, + # Add variables to variable pool + self.graph_runtime_state.variable_pool.add( + [node.node_id, variable_key], variable_value ) yield NodeRunExceptionEvent( error=run_result.error or "System Error", @@ -758,11 +755,9 @@ class GraphEngine: # append node output variables to variable pool if run_result.outputs: for variable_key, variable_value in run_result.outputs.items(): - # append variables to variable pool recursively - self._append_variables_recursively( - node_id=node.node_id, - variable_key_list=[variable_key], - variable_value=variable_value, + # Add variables to variable pool + self.graph_runtime_state.variable_pool.add( + [node.node_id, variable_key], variable_value ) # When setting metadata, convert to dict first @@ -851,21 +846,6 @@ class GraphEngine: logger.exception("Node %s run failed", node.title) raise e - def _append_variables_recursively(self, node_id: str, variable_key_list: list[str], variable_value: VariableValue): - """ - Append variables recursively - :param node_id: node id - :param variable_key_list: variable key list - :param variable_value: variable value - :return: - """ - variable_utils.append_variables_recursively( - self.graph_runtime_state.variable_pool, - node_id, - variable_key_list, - variable_value, - ) - def _is_timed_out(self, start_at: float, max_execution_time: int) -> bool: """ Check timeout diff --git a/api/core/workflow/nodes/variable_assigner/common/helpers.py b/api/core/workflow/nodes/variable_assigner/common/helpers.py index 0d2822233e..48deda724a 100644 --- a/api/core/workflow/nodes/variable_assigner/common/helpers.py +++ b/api/core/workflow/nodes/variable_assigner/common/helpers.py @@ -4,7 +4,7 @@ from typing import Any, TypeVar from pydantic import BaseModel from core.variables import Segment -from core.variables.consts import MIN_SELECTORS_LENGTH +from core.variables.consts import SELECTORS_LENGTH from core.variables.types import SegmentType # Use double underscore (`__`) prefix for internal variables @@ -23,7 +23,7 @@ _T = TypeVar("_T", bound=MutableMapping[str, Any]) def variable_to_processed_data(selector: Sequence[str], seg: Segment) -> UpdatedVariable: - if len(selector) < MIN_SELECTORS_LENGTH: + if len(selector) < SELECTORS_LENGTH: raise Exception("selector too short") node_id, var_name = selector[:2] return UpdatedVariable( diff --git a/api/core/workflow/nodes/variable_assigner/v2/node.py b/api/core/workflow/nodes/variable_assigner/v2/node.py index c0215cae71..00ee921cee 100644 --- a/api/core/workflow/nodes/variable_assigner/v2/node.py +++ b/api/core/workflow/nodes/variable_assigner/v2/node.py @@ -4,7 +4,7 @@ from typing import Any, Optional, cast from core.app.entities.app_invoke_entities import InvokeFrom from core.variables import SegmentType, Variable -from core.variables.consts import MIN_SELECTORS_LENGTH +from core.variables.consts import SELECTORS_LENGTH from core.workflow.constants import CONVERSATION_VARIABLE_NODE_ID from core.workflow.conversation_variable_updater import ConversationVariableUpdater from core.workflow.entities.node_entities import NodeRunResult @@ -46,7 +46,7 @@ def _source_mapping_from_item(mapping: MutableMapping[str, Sequence[str]], node_ selector = item.value if not isinstance(selector, list): raise InvalidDataError(f"selector is not a list, {node_id=}, {item=}") - if len(selector) < MIN_SELECTORS_LENGTH: + if len(selector) < SELECTORS_LENGTH: raise InvalidDataError(f"selector too short, {node_id=}, {item=}") selector_str = ".".join(selector) key = f"{node_id}.#{selector_str}#" diff --git a/api/core/workflow/utils/variable_utils.py b/api/core/workflow/utils/variable_utils.py deleted file mode 100644 index 868868315b..0000000000 --- a/api/core/workflow/utils/variable_utils.py +++ /dev/null @@ -1,29 +0,0 @@ -from core.variables.segments import ObjectSegment, Segment -from core.workflow.entities.variable_pool import VariablePool, VariableValue - - -def append_variables_recursively( - pool: VariablePool, node_id: str, variable_key_list: list[str], variable_value: VariableValue | Segment -): - """ - Append variables recursively - :param pool: variable pool to append variables to - :param node_id: node id - :param variable_key_list: variable key list - :param variable_value: variable value - :return: - """ - pool.add([node_id] + variable_key_list, variable_value) - - # if variable_value is a dict, then recursively append variables - if isinstance(variable_value, ObjectSegment): - variable_dict = variable_value.value - elif isinstance(variable_value, dict): - variable_dict = variable_value - else: - return - - for key, value in variable_dict.items(): - # construct new key list - new_key_list = variable_key_list + [key] - append_variables_recursively(pool, node_id=node_id, variable_key_list=new_key_list, variable_value=value) diff --git a/api/core/workflow/variable_loader.py b/api/core/workflow/variable_loader.py index 1e13871d0a..a35215855e 100644 --- a/api/core/workflow/variable_loader.py +++ b/api/core/workflow/variable_loader.py @@ -3,9 +3,8 @@ from collections.abc import Mapping, Sequence from typing import Any, Protocol from core.variables import Variable -from core.variables.consts import MIN_SELECTORS_LENGTH +from core.variables.consts import SELECTORS_LENGTH from core.workflow.entities.variable_pool import VariablePool -from core.workflow.utils import variable_utils class VariableLoader(Protocol): @@ -78,7 +77,7 @@ def load_into_variable_pool( variables_to_load.append(list(selector)) loaded = variable_loader.load_variables(variables_to_load) for var in loaded: - assert len(var.selector) >= MIN_SELECTORS_LENGTH, f"Invalid variable {var}" - variable_utils.append_variables_recursively( - variable_pool, node_id=var.selector[0], variable_key_list=list(var.selector[1:]), variable_value=var - ) + assert len(var.selector) >= SELECTORS_LENGTH, f"Invalid variable {var}" + # Add variable directly to the pool + # The variable pool expects 2-element selectors [node_id, variable_name] + variable_pool.add([var.selector[0], var.selector[1]], var) diff --git a/api/pyproject.toml b/api/pyproject.toml index a86ec7ee6b..4b395276ef 100644 --- a/api/pyproject.toml +++ b/api/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "dify-api" -version = "1.7.1" +version = "1.7.2" requires-python = ">=3.11,<3.13" dependencies = [ diff --git a/api/repositories/factory.py b/api/repositories/factory.py index 070cdd46dd..1f0320054c 100644 --- a/api/repositories/factory.py +++ b/api/repositories/factory.py @@ -48,7 +48,6 @@ class DifyAPIRepositoryFactory(DifyCoreRepositoryFactory): RepositoryImportError: If the configured repository cannot be imported or instantiated """ class_path = dify_config.API_WORKFLOW_NODE_EXECUTION_REPOSITORY - logger.debug("Creating DifyAPIWorkflowNodeExecutionRepository from: %s", class_path) try: repository_class = cls._import_class(class_path) @@ -86,7 +85,6 @@ class DifyAPIRepositoryFactory(DifyCoreRepositoryFactory): RepositoryImportError: If the configured repository cannot be imported or instantiated """ class_path = dify_config.API_WORKFLOW_RUN_REPOSITORY - logger.debug("Creating APIWorkflowRunRepository from: %s", class_path) try: repository_class = cls._import_class(class_path) diff --git a/api/services/workflow_draft_variable_service.py b/api/services/workflow_draft_variable_service.py index 6bbb3bca04..b52f4924ba 100644 --- a/api/services/workflow_draft_variable_service.py +++ b/api/services/workflow_draft_variable_service.py @@ -13,7 +13,7 @@ from sqlalchemy.sql.expression import and_, or_ from core.app.entities.app_invoke_entities import InvokeFrom from core.file.models import File from core.variables import Segment, StringSegment, Variable -from core.variables.consts import MIN_SELECTORS_LENGTH +from core.variables.consts import SELECTORS_LENGTH from core.variables.segments import ArrayFileSegment, FileSegment from core.variables.types import SegmentType from core.workflow.constants import CONVERSATION_VARIABLE_NODE_ID, ENVIRONMENT_VARIABLE_NODE_ID, SYSTEM_VARIABLE_NODE_ID @@ -147,7 +147,7 @@ class WorkflowDraftVariableService: ) -> list[WorkflowDraftVariable]: ors = [] for selector in selectors: - assert len(selector) >= MIN_SELECTORS_LENGTH, f"Invalid selector to get: {selector}" + assert len(selector) >= SELECTORS_LENGTH, f"Invalid selector to get: {selector}" node_id, name = selector[:2] ors.append(and_(WorkflowDraftVariable.node_id == node_id, WorkflowDraftVariable.name == name)) @@ -608,7 +608,7 @@ class DraftVariableSaver: for item in updated_variables: selector = item.selector - if len(selector) < MIN_SELECTORS_LENGTH: + if len(selector) < SELECTORS_LENGTH: raise Exception("selector too short") # NOTE(QuantumGhost): only the following two kinds of variable could be updated by # VariableAssigner: ConversationVariable and iteration variable. diff --git a/api/tasks/clean_dataset_task.py b/api/tasks/clean_dataset_task.py index 69e5df0253..9a45115b05 100644 --- a/api/tasks/clean_dataset_task.py +++ b/api/tasks/clean_dataset_task.py @@ -56,19 +56,29 @@ def clean_dataset_task( documents = db.session.query(Document).where(Document.dataset_id == dataset_id).all() segments = db.session.query(DocumentSegment).where(DocumentSegment.dataset_id == dataset_id).all() - # Fix: Always clean vector database resources regardless of document existence - # This ensures all 33 vector databases properly drop tables/collections/indices - if doc_form is None: - # Use default paragraph index type for empty datasets to enable vector database cleanup + # Enhanced validation: Check if doc_form is None, empty string, or contains only whitespace + # This ensures all invalid doc_form values are properly handled + if doc_form is None or (isinstance(doc_form, str) and not doc_form.strip()): + # Use default paragraph index type for empty/invalid datasets to enable vector database cleanup from core.rag.index_processor.constant.index_type import IndexType doc_form = IndexType.PARAGRAPH_INDEX logging.info( - click.style(f"No documents found, using default index type for cleanup: {doc_form}", fg="yellow") + click.style(f"Invalid doc_form detected, using default index type for cleanup: {doc_form}", fg="yellow") ) - index_processor = IndexProcessorFactory(doc_form).init_index_processor() - index_processor.clean(dataset, None, with_keywords=True, delete_child_chunks=True) + # Add exception handling around IndexProcessorFactory.clean() to prevent single point of failure + # This ensures Document/Segment deletion can continue even if vector database cleanup fails + try: + index_processor = IndexProcessorFactory(doc_form).init_index_processor() + index_processor.clean(dataset, None, with_keywords=True, delete_child_chunks=True) + logging.info(click.style(f"Successfully cleaned vector database for dataset: {dataset_id}", fg="green")) + except Exception as index_cleanup_error: + logging.exception(click.style(f"Failed to clean vector database for dataset {dataset_id}", fg="red")) + # Continue with document and segment deletion even if vector cleanup fails + logging.info( + click.style(f"Continuing with document and segment deletion for dataset: {dataset_id}", fg="yellow") + ) if documents is None or len(documents) == 0: logging.info(click.style(f"No documents found for dataset: {dataset_id}", fg="green")) @@ -128,6 +138,14 @@ def clean_dataset_task( click.style(f"Cleaned dataset when dataset deleted: {dataset_id} latency: {end_at - start_at}", fg="green") ) except Exception: + # Add rollback to prevent dirty session state in case of exceptions + # This ensures the database session is properly cleaned up + try: + db.session.rollback() + logging.info(click.style(f"Rolled back database session for dataset: {dataset_id}", fg="yellow")) + except Exception as rollback_error: + logging.exception("Failed to rollback database session") + logging.exception("Cleaned dataset when dataset deleted failed") finally: db.session.close() diff --git a/api/tests/integration_tests/workflow/nodes/test_code.py b/api/tests/integration_tests/workflow/nodes/test_code.py index 707b28e6d8..4f659c5e13 100644 --- a/api/tests/integration_tests/workflow/nodes/test_code.py +++ b/api/tests/integration_tests/workflow/nodes/test_code.py @@ -55,8 +55,8 @@ def init_code_node(code_config: dict): environment_variables=[], conversation_variables=[], ) - variable_pool.add(["code", "123", "args1"], 1) - variable_pool.add(["code", "123", "args2"], 2) + variable_pool.add(["code", "args1"], 1) + variable_pool.add(["code", "args2"], 2) node = CodeNode( id=str(uuid.uuid4()), @@ -96,9 +96,9 @@ def test_execute_code(setup_code_executor_mock): "variables": [ { "variable": "args1", - "value_selector": ["1", "123", "args1"], + "value_selector": ["1", "args1"], }, - {"variable": "args2", "value_selector": ["1", "123", "args2"]}, + {"variable": "args2", "value_selector": ["1", "args2"]}, ], "answer": "123", "code_language": "python3", @@ -107,8 +107,8 @@ def test_execute_code(setup_code_executor_mock): } node = init_code_node(code_config) - node.graph_runtime_state.variable_pool.add(["1", "123", "args1"], 1) - node.graph_runtime_state.variable_pool.add(["1", "123", "args2"], 2) + node.graph_runtime_state.variable_pool.add(["1", "args1"], 1) + node.graph_runtime_state.variable_pool.add(["1", "args2"], 2) # execute node result = node._run() @@ -142,9 +142,9 @@ def test_execute_code_output_validator(setup_code_executor_mock): "variables": [ { "variable": "args1", - "value_selector": ["1", "123", "args1"], + "value_selector": ["1", "args1"], }, - {"variable": "args2", "value_selector": ["1", "123", "args2"]}, + {"variable": "args2", "value_selector": ["1", "args2"]}, ], "answer": "123", "code_language": "python3", @@ -153,8 +153,8 @@ def test_execute_code_output_validator(setup_code_executor_mock): } node = init_code_node(code_config) - node.graph_runtime_state.variable_pool.add(["1", "123", "args1"], 1) - node.graph_runtime_state.variable_pool.add(["1", "123", "args2"], 2) + node.graph_runtime_state.variable_pool.add(["1", "args1"], 1) + node.graph_runtime_state.variable_pool.add(["1", "args2"], 2) # execute node result = node._run() @@ -217,9 +217,9 @@ def test_execute_code_output_validator_depth(): "variables": [ { "variable": "args1", - "value_selector": ["1", "123", "args1"], + "value_selector": ["1", "args1"], }, - {"variable": "args2", "value_selector": ["1", "123", "args2"]}, + {"variable": "args2", "value_selector": ["1", "args2"]}, ], "answer": "123", "code_language": "python3", @@ -307,9 +307,9 @@ def test_execute_code_output_object_list(): "variables": [ { "variable": "args1", - "value_selector": ["1", "123", "args1"], + "value_selector": ["1", "args1"], }, - {"variable": "args2", "value_selector": ["1", "123", "args2"]}, + {"variable": "args2", "value_selector": ["1", "args2"]}, ], "answer": "123", "code_language": "python3", diff --git a/api/tests/integration_tests/workflow/nodes/test_http.py b/api/tests/integration_tests/workflow/nodes/test_http.py index d7856129a3..344539d51a 100644 --- a/api/tests/integration_tests/workflow/nodes/test_http.py +++ b/api/tests/integration_tests/workflow/nodes/test_http.py @@ -49,8 +49,8 @@ def init_http_node(config: dict): environment_variables=[], conversation_variables=[], ) - variable_pool.add(["a", "b123", "args1"], 1) - variable_pool.add(["a", "b123", "args2"], 2) + variable_pool.add(["a", "args1"], 1) + variable_pool.add(["a", "args2"], 2) node = HttpRequestNode( id=str(uuid.uuid4()), @@ -171,7 +171,7 @@ def test_template(setup_http_mock): "title": "http", "desc": "", "method": "get", - "url": "http://example.com/{{#a.b123.args2#}}", + "url": "http://example.com/{{#a.args2#}}", "authorization": { "type": "api-key", "config": { @@ -180,8 +180,8 @@ def test_template(setup_http_mock): "header": "api-key", }, }, - "headers": "X-Header:123\nX-Header2:{{#a.b123.args2#}}", - "params": "A:b\nTemplate:{{#a.b123.args2#}}", + "headers": "X-Header:123\nX-Header2:{{#a.args2#}}", + "params": "A:b\nTemplate:{{#a.args2#}}", "body": None, }, } @@ -223,7 +223,7 @@ def test_json(setup_http_mock): { "key": "", "type": "text", - "value": '{"a": "{{#a.b123.args1#}}"}', + "value": '{"a": "{{#a.args1#}}"}', }, ], }, @@ -264,12 +264,12 @@ def test_x_www_form_urlencoded(setup_http_mock): { "key": "a", "type": "text", - "value": "{{#a.b123.args1#}}", + "value": "{{#a.args1#}}", }, { "key": "b", "type": "text", - "value": "{{#a.b123.args2#}}", + "value": "{{#a.args2#}}", }, ], }, @@ -310,12 +310,12 @@ def test_form_data(setup_http_mock): { "key": "a", "type": "text", - "value": "{{#a.b123.args1#}}", + "value": "{{#a.args1#}}", }, { "key": "b", "type": "text", - "value": "{{#a.b123.args2#}}", + "value": "{{#a.args2#}}", }, ], }, @@ -436,3 +436,87 @@ def test_multi_colons_parse(setup_http_mock): assert 'form-data; name="Redirect"\r\n\r\nhttp://example6.com' in result.process_data.get("request", "") # resp = result.outputs # assert "http://example3.com" == resp.get("headers", {}).get("referer") + + +@pytest.mark.parametrize("setup_http_mock", [["none"]], indirect=True) +def test_nested_object_variable_selector(setup_http_mock): + """Test variable selector functionality with nested object properties.""" + # Create independent test setup without affecting other tests + graph_config = { + "edges": [ + { + "id": "start-source-next-target", + "source": "start", + "target": "1", + }, + ], + "nodes": [ + {"data": {"type": "start"}, "id": "start"}, + { + "id": "1", + "data": { + "title": "http", + "desc": "", + "method": "get", + "url": "http://example.com/{{#a.args2#}}/{{#a.args3.nested#}}", + "authorization": { + "type": "api-key", + "config": { + "type": "basic", + "api_key": "ak-xxx", + "header": "api-key", + }, + }, + "headers": "X-Header:{{#a.args3.nested#}}", + "params": "nested_param:{{#a.args3.nested#}}", + "body": None, + }, + }, + ], + } + + graph = Graph.init(graph_config=graph_config) + + init_params = GraphInitParams( + tenant_id="1", + app_id="1", + workflow_type=WorkflowType.WORKFLOW, + workflow_id="1", + graph_config=graph_config, + user_id="1", + user_from=UserFrom.ACCOUNT, + invoke_from=InvokeFrom.DEBUGGER, + call_depth=0, + ) + + # Create independent variable pool for this test only + variable_pool = VariablePool( + system_variables=SystemVariable(user_id="aaa", files=[]), + user_inputs={}, + environment_variables=[], + conversation_variables=[], + ) + variable_pool.add(["a", "args1"], 1) + variable_pool.add(["a", "args2"], 2) + variable_pool.add(["a", "args3"], {"nested": "nested_value"}) # Only for this test + + node = HttpRequestNode( + id=str(uuid.uuid4()), + graph_init_params=init_params, + graph=graph, + graph_runtime_state=GraphRuntimeState(variable_pool=variable_pool, start_at=time.perf_counter()), + config=graph_config["nodes"][1], + ) + + # Initialize node data + if "data" in graph_config["nodes"][1]: + node.init_node_data(graph_config["nodes"][1]["data"]) + + result = node._run() + assert result.process_data is not None + data = result.process_data.get("request", "") + + # Verify nested object property is correctly resolved + assert "/2/nested_value" in data # URL path should contain resolved nested value + assert "X-Header: nested_value" in data # Header should contain nested value + assert "nested_param=nested_value" in data # Param should contain nested value diff --git a/api/tests/integration_tests/workflow/nodes/test_parameter_extractor.py b/api/tests/integration_tests/workflow/nodes/test_parameter_extractor.py index edd70193a8..ef373d968d 100644 --- a/api/tests/integration_tests/workflow/nodes/test_parameter_extractor.py +++ b/api/tests/integration_tests/workflow/nodes/test_parameter_extractor.py @@ -71,8 +71,8 @@ def init_parameter_extractor_node(config: dict): environment_variables=[], conversation_variables=[], ) - variable_pool.add(["a", "b123", "args1"], 1) - variable_pool.add(["a", "b123", "args2"], 2) + variable_pool.add(["a", "args1"], 1) + variable_pool.add(["a", "args2"], 2) node = ParameterExtractorNode( id=str(uuid.uuid4()), diff --git a/api/tests/integration_tests/workflow/nodes/test_template_transform.py b/api/tests/integration_tests/workflow/nodes/test_template_transform.py index f71a5ee140..56265c6b95 100644 --- a/api/tests/integration_tests/workflow/nodes/test_template_transform.py +++ b/api/tests/integration_tests/workflow/nodes/test_template_transform.py @@ -26,9 +26,9 @@ def test_execute_code(setup_code_executor_mock): "variables": [ { "variable": "args1", - "value_selector": ["1", "123", "args1"], + "value_selector": ["1", "args1"], }, - {"variable": "args2", "value_selector": ["1", "123", "args2"]}, + {"variable": "args2", "value_selector": ["1", "args2"]}, ], "template": code, }, @@ -66,8 +66,8 @@ def test_execute_code(setup_code_executor_mock): environment_variables=[], conversation_variables=[], ) - variable_pool.add(["1", "123", "args1"], 1) - variable_pool.add(["1", "123", "args2"], 3) + variable_pool.add(["1", "args1"], 1) + variable_pool.add(["1", "args2"], 3) node = TemplateTransformNode( id=str(uuid.uuid4()), diff --git a/api/tests/integration_tests/workflow/nodes/test_tool.py b/api/tests/integration_tests/workflow/nodes/test_tool.py index 8476c1f874..19a9b36350 100644 --- a/api/tests/integration_tests/workflow/nodes/test_tool.py +++ b/api/tests/integration_tests/workflow/nodes/test_tool.py @@ -81,7 +81,7 @@ def test_tool_variable_invoke(): ToolParameterConfigurationManager.decrypt_tool_parameters = MagicMock(return_value={"format": "%Y-%m-%d %H:%M:%S"}) - node.graph_runtime_state.variable_pool.add(["1", "123", "args1"], "1+1") + node.graph_runtime_state.variable_pool.add(["1", "args1"], "1+1") # execute node result = node._run() diff --git a/api/tests/test_containers_integration_tests/services/test_message_service.py b/api/tests/test_containers_integration_tests/services/test_message_service.py new file mode 100644 index 0000000000..25ba0d03ef --- /dev/null +++ b/api/tests/test_containers_integration_tests/services/test_message_service.py @@ -0,0 +1,775 @@ +from unittest.mock import patch + +import pytest +from faker import Faker + +from models.model import MessageFeedback +from services.app_service import AppService +from services.errors.message import ( + FirstMessageNotExistsError, + LastMessageNotExistsError, + MessageNotExistsError, + SuggestedQuestionsAfterAnswerDisabledError, +) +from services.message_service import MessageService + + +class TestMessageService: + """Integration tests for MessageService using testcontainers.""" + + @pytest.fixture + def mock_external_service_dependencies(self): + """Mock setup for external service dependencies.""" + with ( + patch("services.account_service.FeatureService") as mock_account_feature_service, + patch("services.message_service.ModelManager") as mock_model_manager, + patch("services.message_service.WorkflowService") as mock_workflow_service, + patch("services.message_service.AdvancedChatAppConfigManager") as mock_app_config_manager, + patch("services.message_service.LLMGenerator") as mock_llm_generator, + patch("services.message_service.TraceQueueManager") as mock_trace_manager_class, + patch("services.message_service.TokenBufferMemory") as mock_token_buffer_memory, + ): + # Setup default mock returns + mock_account_feature_service.get_features.return_value.billing.enabled = False + + # Mock ModelManager + mock_model_instance = mock_model_manager.return_value.get_default_model_instance.return_value + mock_model_instance.get_tts_voices.return_value = [{"value": "test-voice"}] + + # Mock get_model_instance method as well + mock_model_manager.return_value.get_model_instance.return_value = mock_model_instance + + # Mock WorkflowService + mock_workflow = mock_workflow_service.return_value.get_published_workflow.return_value + mock_workflow_service.return_value.get_draft_workflow.return_value = mock_workflow + + # Mock AdvancedChatAppConfigManager + mock_app_config = mock_app_config_manager.get_app_config.return_value + mock_app_config.additional_features.suggested_questions_after_answer = True + + # Mock LLMGenerator + mock_llm_generator.generate_suggested_questions_after_answer.return_value = ["Question 1", "Question 2"] + + # Mock TraceQueueManager + mock_trace_manager_instance = mock_trace_manager_class.return_value + + # Mock TokenBufferMemory + mock_memory_instance = mock_token_buffer_memory.return_value + mock_memory_instance.get_history_prompt_text.return_value = "Mocked history prompt" + + yield { + "account_feature_service": mock_account_feature_service, + "model_manager": mock_model_manager, + "workflow_service": mock_workflow_service, + "app_config_manager": mock_app_config_manager, + "llm_generator": mock_llm_generator, + "trace_manager_class": mock_trace_manager_class, + "trace_manager_instance": mock_trace_manager_instance, + "token_buffer_memory": mock_token_buffer_memory, + # "current_user": mock_current_user, + } + + def _create_test_app_and_account(self, db_session_with_containers, mock_external_service_dependencies): + """ + Helper method to create a test app and account for testing. + + Args: + db_session_with_containers: Database session from testcontainers infrastructure + mock_external_service_dependencies: Mock dependencies + + Returns: + tuple: (app, account) - Created app and account instances + """ + fake = Faker() + + # Setup mocks for account creation + mock_external_service_dependencies[ + "account_feature_service" + ].get_system_features.return_value.is_allow_register = True + + # Create account and tenant first + from services.account_service import AccountService, TenantService + + account = AccountService.create_account( + email=fake.email(), + name=fake.name(), + interface_language="en-US", + password=fake.password(length=12), + ) + TenantService.create_owner_tenant_if_not_exist(account, name=fake.company()) + tenant = account.current_tenant + + # Setup app creation arguments + app_args = { + "name": fake.company(), + "description": fake.text(max_nb_chars=100), + "mode": "advanced-chat", # Use advanced-chat mode to use mocked workflow + "icon_type": "emoji", + "icon": "🤖", + "icon_background": "#FF6B6B", + "api_rph": 100, + "api_rpm": 10, + } + + # Create app + app_service = AppService() + app = app_service.create_app(tenant.id, app_args, account) + + # Setup current_user mock + self._mock_current_user(mock_external_service_dependencies, account.id, tenant.id) + + return app, account + + def _mock_current_user(self, mock_external_service_dependencies, account_id, tenant_id): + """ + Helper method to mock the current user for testing. + """ + # mock_external_service_dependencies["current_user"].id = account_id + # mock_external_service_dependencies["current_user"].current_tenant_id = tenant_id + + def _create_test_conversation(self, app, account, fake): + """ + Helper method to create a test conversation with all required fields. + """ + from extensions.ext_database import db + from models.model import Conversation + + conversation = Conversation( + app_id=app.id, + app_model_config_id=None, + model_provider=None, + model_id="", + override_model_configs=None, + mode=app.mode, + name=fake.sentence(), + inputs={}, + introduction="", + system_instruction="", + system_instruction_tokens=0, + status="normal", + invoke_from="console", + from_source="console", + from_end_user_id=None, + from_account_id=account.id, + ) + + db.session.add(conversation) + db.session.flush() + return conversation + + def _create_test_message(self, app, conversation, account, fake): + """ + Helper method to create a test message with all required fields. + """ + import json + + from extensions.ext_database import db + from models.model import Message + + message = Message( + app_id=app.id, + model_provider=None, + model_id="", + override_model_configs=None, + conversation_id=conversation.id, + inputs={}, + query=fake.sentence(), + message=json.dumps([{"role": "user", "text": fake.sentence()}]), + message_tokens=0, + message_unit_price=0, + message_price_unit=0.001, + answer=fake.text(max_nb_chars=200), + answer_tokens=0, + answer_unit_price=0, + answer_price_unit=0.001, + parent_message_id=None, + provider_response_latency=0, + total_price=0, + currency="USD", + invoke_from="console", + from_source="console", + from_end_user_id=None, + from_account_id=account.id, + ) + + db.session.add(message) + db.session.commit() + return message + + def test_pagination_by_first_id_success(self, db_session_with_containers, mock_external_service_dependencies): + """ + Test successful pagination by first ID. + """ + fake = Faker() + app, account = self._create_test_app_and_account(db_session_with_containers, mock_external_service_dependencies) + + # Create a conversation and multiple messages + conversation = self._create_test_conversation(app, account, fake) + messages = [] + for i in range(5): + message = self._create_test_message(app, conversation, account, fake) + messages.append(message) + + # Test pagination by first ID + result = MessageService.pagination_by_first_id( + app_model=app, + user=account, + conversation_id=conversation.id, + first_id=messages[2].id, # Use middle message as first_id + limit=2, + order="asc", + ) + + # Verify results + assert result.limit == 2 + assert len(result.data) == 2 + # total 5, from the middle, no more + assert result.has_more is False + # Verify messages are in ascending order + assert result.data[0].created_at <= result.data[1].created_at + + def test_pagination_by_first_id_no_user(self, db_session_with_containers, mock_external_service_dependencies): + """ + Test pagination by first ID when no user is provided. + """ + fake = Faker() + app, account = self._create_test_app_and_account(db_session_with_containers, mock_external_service_dependencies) + + # Test pagination with no user + result = MessageService.pagination_by_first_id( + app_model=app, user=None, conversation_id=fake.uuid4(), first_id=None, limit=10 + ) + + # Verify empty result + assert result.limit == 10 + assert len(result.data) == 0 + assert result.has_more is False + + def test_pagination_by_first_id_no_conversation_id( + self, db_session_with_containers, mock_external_service_dependencies + ): + """ + Test pagination by first ID when no conversation ID is provided. + """ + fake = Faker() + app, account = self._create_test_app_and_account(db_session_with_containers, mock_external_service_dependencies) + + # Test pagination with no conversation ID + result = MessageService.pagination_by_first_id( + app_model=app, user=account, conversation_id="", first_id=None, limit=10 + ) + + # Verify empty result + assert result.limit == 10 + assert len(result.data) == 0 + assert result.has_more is False + + def test_pagination_by_first_id_invalid_first_id( + self, db_session_with_containers, mock_external_service_dependencies + ): + """ + Test pagination by first ID with invalid first_id. + """ + fake = Faker() + app, account = self._create_test_app_and_account(db_session_with_containers, mock_external_service_dependencies) + + # Create a conversation and message + conversation = self._create_test_conversation(app, account, fake) + self._create_test_message(app, conversation, account, fake) + + # Test pagination with invalid first_id + with pytest.raises(FirstMessageNotExistsError): + MessageService.pagination_by_first_id( + app_model=app, + user=account, + conversation_id=conversation.id, + first_id=fake.uuid4(), # Non-existent message ID + limit=10, + ) + + def test_pagination_by_last_id_success(self, db_session_with_containers, mock_external_service_dependencies): + """ + Test successful pagination by last ID. + """ + fake = Faker() + app, account = self._create_test_app_and_account(db_session_with_containers, mock_external_service_dependencies) + + # Create a conversation and multiple messages + conversation = self._create_test_conversation(app, account, fake) + messages = [] + for i in range(5): + message = self._create_test_message(app, conversation, account, fake) + messages.append(message) + + # Test pagination by last ID + result = MessageService.pagination_by_last_id( + app_model=app, + user=account, + last_id=messages[2].id, # Use middle message as last_id + limit=2, + conversation_id=conversation.id, + ) + + # Verify results + assert result.limit == 2 + assert len(result.data) == 2 + # total 5, from the middle, no more + assert result.has_more is False + # Verify messages are in descending order + assert result.data[0].created_at >= result.data[1].created_at + + def test_pagination_by_last_id_with_include_ids( + self, db_session_with_containers, mock_external_service_dependencies + ): + """ + Test pagination by last ID with include_ids filter. + """ + fake = Faker() + app, account = self._create_test_app_and_account(db_session_with_containers, mock_external_service_dependencies) + + # Create a conversation and multiple messages + conversation = self._create_test_conversation(app, account, fake) + messages = [] + for i in range(5): + message = self._create_test_message(app, conversation, account, fake) + messages.append(message) + + # Test pagination with include_ids + include_ids = [messages[0].id, messages[1].id, messages[2].id] + result = MessageService.pagination_by_last_id( + app_model=app, user=account, last_id=messages[1].id, limit=2, include_ids=include_ids + ) + + # Verify results + assert result.limit == 2 + assert len(result.data) <= 2 + # Verify all returned messages are in include_ids + for message in result.data: + assert message.id in include_ids + + def test_pagination_by_last_id_no_user(self, db_session_with_containers, mock_external_service_dependencies): + """ + Test pagination by last ID when no user is provided. + """ + fake = Faker() + app, account = self._create_test_app_and_account(db_session_with_containers, mock_external_service_dependencies) + + # Test pagination with no user + result = MessageService.pagination_by_last_id(app_model=app, user=None, last_id=None, limit=10) + + # Verify empty result + assert result.limit == 10 + assert len(result.data) == 0 + assert result.has_more is False + + def test_pagination_by_last_id_invalid_last_id( + self, db_session_with_containers, mock_external_service_dependencies + ): + """ + Test pagination by last ID with invalid last_id. + """ + fake = Faker() + app, account = self._create_test_app_and_account(db_session_with_containers, mock_external_service_dependencies) + + # Create a conversation and message + conversation = self._create_test_conversation(app, account, fake) + self._create_test_message(app, conversation, account, fake) + + # Test pagination with invalid last_id + with pytest.raises(LastMessageNotExistsError): + MessageService.pagination_by_last_id( + app_model=app, + user=account, + last_id=fake.uuid4(), # Non-existent message ID + limit=10, + conversation_id=conversation.id, + ) + + def test_create_feedback_success(self, db_session_with_containers, mock_external_service_dependencies): + """ + Test successful creation of feedback. + """ + fake = Faker() + app, account = self._create_test_app_and_account(db_session_with_containers, mock_external_service_dependencies) + + # Create a conversation and message + conversation = self._create_test_conversation(app, account, fake) + message = self._create_test_message(app, conversation, account, fake) + + # Create feedback + rating = "like" + content = fake.text(max_nb_chars=100) + feedback = MessageService.create_feedback( + app_model=app, message_id=message.id, user=account, rating=rating, content=content + ) + + # Verify feedback was created correctly + assert feedback.app_id == app.id + assert feedback.conversation_id == conversation.id + assert feedback.message_id == message.id + assert feedback.rating == rating + assert feedback.content == content + assert feedback.from_source == "admin" + assert feedback.from_account_id == account.id + assert feedback.from_end_user_id is None + + def test_create_feedback_no_user(self, db_session_with_containers, mock_external_service_dependencies): + """ + Test creating feedback when no user is provided. + """ + fake = Faker() + app, account = self._create_test_app_and_account(db_session_with_containers, mock_external_service_dependencies) + + # Create a conversation and message + conversation = self._create_test_conversation(app, account, fake) + message = self._create_test_message(app, conversation, account, fake) + + # Test creating feedback with no user + with pytest.raises(ValueError, match="user cannot be None"): + MessageService.create_feedback( + app_model=app, message_id=message.id, user=None, rating="like", content=fake.text(max_nb_chars=100) + ) + + def test_create_feedback_update_existing(self, db_session_with_containers, mock_external_service_dependencies): + """ + Test updating existing feedback. + """ + fake = Faker() + app, account = self._create_test_app_and_account(db_session_with_containers, mock_external_service_dependencies) + + # Create a conversation and message + conversation = self._create_test_conversation(app, account, fake) + message = self._create_test_message(app, conversation, account, fake) + + # Create initial feedback + initial_rating = "like" + initial_content = fake.text(max_nb_chars=100) + feedback = MessageService.create_feedback( + app_model=app, message_id=message.id, user=account, rating=initial_rating, content=initial_content + ) + + # Update feedback + updated_rating = "dislike" + updated_content = fake.text(max_nb_chars=100) + updated_feedback = MessageService.create_feedback( + app_model=app, message_id=message.id, user=account, rating=updated_rating, content=updated_content + ) + + # Verify feedback was updated correctly + assert updated_feedback.id == feedback.id + assert updated_feedback.rating == updated_rating + assert updated_feedback.content == updated_content + assert updated_feedback.rating != initial_rating + assert updated_feedback.content != initial_content + + def test_create_feedback_delete_existing(self, db_session_with_containers, mock_external_service_dependencies): + """ + Test deleting existing feedback by setting rating to None. + """ + fake = Faker() + app, account = self._create_test_app_and_account(db_session_with_containers, mock_external_service_dependencies) + + # Create a conversation and message + conversation = self._create_test_conversation(app, account, fake) + message = self._create_test_message(app, conversation, account, fake) + + # Create initial feedback + feedback = MessageService.create_feedback( + app_model=app, message_id=message.id, user=account, rating="like", content=fake.text(max_nb_chars=100) + ) + + # Delete feedback by setting rating to None + MessageService.create_feedback(app_model=app, message_id=message.id, user=account, rating=None, content=None) + + # Verify feedback was deleted + from extensions.ext_database import db + + deleted_feedback = db.session.query(MessageFeedback).filter(MessageFeedback.id == feedback.id).first() + assert deleted_feedback is None + + def test_create_feedback_no_rating_when_not_exists( + self, db_session_with_containers, mock_external_service_dependencies + ): + """ + Test creating feedback with no rating when feedback doesn't exist. + """ + fake = Faker() + app, account = self._create_test_app_and_account(db_session_with_containers, mock_external_service_dependencies) + + # Create a conversation and message + conversation = self._create_test_conversation(app, account, fake) + message = self._create_test_message(app, conversation, account, fake) + + # Test creating feedback with no rating when no feedback exists + with pytest.raises(ValueError, match="rating cannot be None when feedback not exists"): + MessageService.create_feedback( + app_model=app, message_id=message.id, user=account, rating=None, content=None + ) + + def test_get_all_messages_feedbacks_success(self, db_session_with_containers, mock_external_service_dependencies): + """ + Test successful retrieval of all message feedbacks. + """ + fake = Faker() + app, account = self._create_test_app_and_account(db_session_with_containers, mock_external_service_dependencies) + + # Create multiple conversations and messages with feedbacks + feedbacks = [] + for i in range(3): + conversation = self._create_test_conversation(app, account, fake) + message = self._create_test_message(app, conversation, account, fake) + + feedback = MessageService.create_feedback( + app_model=app, + message_id=message.id, + user=account, + rating="like" if i % 2 == 0 else "dislike", + content=f"Feedback {i}: {fake.text(max_nb_chars=50)}", + ) + feedbacks.append(feedback) + + # Get all feedbacks + result = MessageService.get_all_messages_feedbacks(app, page=1, limit=10) + + # Verify results + assert len(result) == 3 + + # Verify feedbacks are ordered by created_at desc + for i in range(len(result) - 1): + assert result[i]["created_at"] >= result[i + 1]["created_at"] + + def test_get_all_messages_feedbacks_pagination( + self, db_session_with_containers, mock_external_service_dependencies + ): + """ + Test pagination of message feedbacks. + """ + fake = Faker() + app, account = self._create_test_app_and_account(db_session_with_containers, mock_external_service_dependencies) + + # Create multiple conversations and messages with feedbacks + for i in range(5): + conversation = self._create_test_conversation(app, account, fake) + message = self._create_test_message(app, conversation, account, fake) + + MessageService.create_feedback( + app_model=app, message_id=message.id, user=account, rating="like", content=f"Feedback {i}" + ) + + # Get feedbacks with pagination + result_page_1 = MessageService.get_all_messages_feedbacks(app, page=1, limit=3) + result_page_2 = MessageService.get_all_messages_feedbacks(app, page=2, limit=3) + + # Verify pagination results + assert len(result_page_1) == 3 + assert len(result_page_2) == 2 + + # Verify no overlap between pages + page_1_ids = {feedback["id"] for feedback in result_page_1} + page_2_ids = {feedback["id"] for feedback in result_page_2} + assert len(page_1_ids.intersection(page_2_ids)) == 0 + + def test_get_message_success(self, db_session_with_containers, mock_external_service_dependencies): + """ + Test successful retrieval of message. + """ + fake = Faker() + app, account = self._create_test_app_and_account(db_session_with_containers, mock_external_service_dependencies) + + # Create a conversation and message + conversation = self._create_test_conversation(app, account, fake) + message = self._create_test_message(app, conversation, account, fake) + + # Get message + retrieved_message = MessageService.get_message(app_model=app, user=account, message_id=message.id) + + # Verify message was retrieved correctly + assert retrieved_message.id == message.id + assert retrieved_message.app_id == app.id + assert retrieved_message.conversation_id == conversation.id + assert retrieved_message.from_source == "console" + assert retrieved_message.from_account_id == account.id + + def test_get_message_not_exists(self, db_session_with_containers, mock_external_service_dependencies): + """ + Test getting message that doesn't exist. + """ + fake = Faker() + app, account = self._create_test_app_and_account(db_session_with_containers, mock_external_service_dependencies) + + # Test getting non-existent message + with pytest.raises(MessageNotExistsError): + MessageService.get_message(app_model=app, user=account, message_id=fake.uuid4()) + + def test_get_message_wrong_user(self, db_session_with_containers, mock_external_service_dependencies): + """ + Test getting message with wrong user (different account). + """ + fake = Faker() + app, account = self._create_test_app_and_account(db_session_with_containers, mock_external_service_dependencies) + + # Create a conversation and message + conversation = self._create_test_conversation(app, account, fake) + message = self._create_test_message(app, conversation, account, fake) + + # Create another account + from services.account_service import AccountService, TenantService + + other_account = AccountService.create_account( + email=fake.email(), + name=fake.name(), + interface_language="en-US", + password=fake.password(length=12), + ) + TenantService.create_owner_tenant_if_not_exist(other_account, name=fake.company()) + + # Test getting message with different user + with pytest.raises(MessageNotExistsError): + MessageService.get_message(app_model=app, user=other_account, message_id=message.id) + + def test_get_suggested_questions_after_answer_success( + self, db_session_with_containers, mock_external_service_dependencies + ): + """ + Test successful generation of suggested questions after answer. + """ + fake = Faker() + app, account = self._create_test_app_and_account(db_session_with_containers, mock_external_service_dependencies) + + # Create a conversation and message + conversation = self._create_test_conversation(app, account, fake) + message = self._create_test_message(app, conversation, account, fake) + + # Mock the LLMGenerator to return specific questions + mock_questions = ["What is AI?", "How does machine learning work?", "Tell me about neural networks"] + mock_external_service_dependencies[ + "llm_generator" + ].generate_suggested_questions_after_answer.return_value = mock_questions + + # Get suggested questions + from core.app.entities.app_invoke_entities import InvokeFrom + + result = MessageService.get_suggested_questions_after_answer( + app_model=app, user=account, message_id=message.id, invoke_from=InvokeFrom.SERVICE_API + ) + + # Verify results + assert result == mock_questions + + # Verify LLMGenerator was called + mock_external_service_dependencies[ + "llm_generator" + ].generate_suggested_questions_after_answer.assert_called_once() + + # Verify TraceQueueManager was called + mock_external_service_dependencies["trace_manager_instance"].add_trace_task.assert_called_once() + + def test_get_suggested_questions_after_answer_no_user( + self, db_session_with_containers, mock_external_service_dependencies + ): + """ + Test getting suggested questions when no user is provided. + """ + fake = Faker() + app, account = self._create_test_app_and_account(db_session_with_containers, mock_external_service_dependencies) + + # Create a conversation and message + conversation = self._create_test_conversation(app, account, fake) + message = self._create_test_message(app, conversation, account, fake) + + # Test getting suggested questions with no user + from core.app.entities.app_invoke_entities import InvokeFrom + + with pytest.raises(ValueError, match="user cannot be None"): + MessageService.get_suggested_questions_after_answer( + app_model=app, user=None, message_id=message.id, invoke_from=InvokeFrom.SERVICE_API + ) + + def test_get_suggested_questions_after_answer_disabled( + self, db_session_with_containers, mock_external_service_dependencies + ): + """ + Test getting suggested questions when feature is disabled. + """ + fake = Faker() + app, account = self._create_test_app_and_account(db_session_with_containers, mock_external_service_dependencies) + + # Create a conversation and message + conversation = self._create_test_conversation(app, account, fake) + message = self._create_test_message(app, conversation, account, fake) + + # Mock the feature to be disabled + mock_external_service_dependencies[ + "app_config_manager" + ].get_app_config.return_value.additional_features.suggested_questions_after_answer = False + + # Test getting suggested questions when feature is disabled + from core.app.entities.app_invoke_entities import InvokeFrom + + with pytest.raises(SuggestedQuestionsAfterAnswerDisabledError): + MessageService.get_suggested_questions_after_answer( + app_model=app, user=account, message_id=message.id, invoke_from=InvokeFrom.SERVICE_API + ) + + def test_get_suggested_questions_after_answer_no_workflow( + self, db_session_with_containers, mock_external_service_dependencies + ): + """ + Test getting suggested questions when no workflow exists. + """ + fake = Faker() + app, account = self._create_test_app_and_account(db_session_with_containers, mock_external_service_dependencies) + + # Create a conversation and message + conversation = self._create_test_conversation(app, account, fake) + message = self._create_test_message(app, conversation, account, fake) + + # Mock no workflow + mock_external_service_dependencies["workflow_service"].return_value.get_published_workflow.return_value = None + + # Get suggested questions (should return empty list) + from core.app.entities.app_invoke_entities import InvokeFrom + + result = MessageService.get_suggested_questions_after_answer( + app_model=app, user=account, message_id=message.id, invoke_from=InvokeFrom.SERVICE_API + ) + + # Verify empty result + assert result == [] + + def test_get_suggested_questions_after_answer_debugger_mode( + self, db_session_with_containers, mock_external_service_dependencies + ): + """ + Test getting suggested questions in debugger mode. + """ + fake = Faker() + app, account = self._create_test_app_and_account(db_session_with_containers, mock_external_service_dependencies) + + # Create a conversation and message + conversation = self._create_test_conversation(app, account, fake) + message = self._create_test_message(app, conversation, account, fake) + + # Mock questions + mock_questions = ["Debug question 1", "Debug question 2"] + mock_external_service_dependencies[ + "llm_generator" + ].generate_suggested_questions_after_answer.return_value = mock_questions + + # Get suggested questions in debugger mode + from core.app.entities.app_invoke_entities import InvokeFrom + + result = MessageService.get_suggested_questions_after_answer( + app_model=app, user=account, message_id=message.id, invoke_from=InvokeFrom.DEBUGGER + ) + + # Verify results + assert result == mock_questions + + # Verify draft workflow was used instead of published workflow + mock_external_service_dependencies["workflow_service"].return_value.get_draft_workflow.assert_called_once_with( + app_model=app + ) + + # Verify TraceQueueManager was called + mock_external_service_dependencies["trace_manager_instance"].add_trace_task.assert_called_once() diff --git a/api/tests/test_containers_integration_tests/services/test_workflow_draft_variable_service.py b/api/tests/test_containers_integration_tests/services/test_workflow_draft_variable_service.py index 85a9355c79..d73fb7e4be 100644 --- a/api/tests/test_containers_integration_tests/services/test_workflow_draft_variable_service.py +++ b/api/tests/test_containers_integration_tests/services/test_workflow_draft_variable_service.py @@ -12,6 +12,10 @@ from services.workflow_draft_variable_service import ( ) +def _get_random_variable_name(fake: Faker): + return "".join(fake.random_letters(length=10)) + + class TestWorkflowDraftVariableService: """ Comprehensive integration tests for WorkflowDraftVariableService using testcontainers. @@ -112,7 +116,14 @@ class TestWorkflowDraftVariableService: return workflow def _create_test_variable( - self, db_session_with_containers, app_id, node_id, name, value, variable_type="conversation", fake=None + self, + db_session_with_containers, + app_id, + node_id, + name, + value, + variable_type: DraftVariableType = DraftVariableType.CONVERSATION, + fake=None, ): """ Helper method to create a test workflow draft variable with proper configuration. @@ -227,7 +238,13 @@ class TestWorkflowDraftVariableService: db_session_with_containers, app.id, CONVERSATION_VARIABLE_NODE_ID, "var2", var2_value, fake=fake ) var3 = self._create_test_variable( - db_session_with_containers, app.id, "test_node_1", "var3", var3_value, "node", fake=fake + db_session_with_containers, + app.id, + "test_node_1", + "var3", + var3_value, + variable_type=DraftVariableType.NODE, + fake=fake, ) selectors = [ [CONVERSATION_VARIABLE_NODE_ID, "var1"], @@ -263,9 +280,14 @@ class TestWorkflowDraftVariableService: fake = Faker() app = self._create_test_app(db_session_with_containers, mock_external_service_dependencies, fake=fake) for i in range(5): - test_value = StringSegment(value=fake.numerify("value##")) + test_value = StringSegment(value=fake.numerify("value######")) self._create_test_variable( - db_session_with_containers, app.id, CONVERSATION_VARIABLE_NODE_ID, fake.word(), test_value, fake=fake + db_session_with_containers, + app.id, + CONVERSATION_VARIABLE_NODE_ID, + _get_random_variable_name(fake), + test_value, + fake=fake, ) service = WorkflowDraftVariableService(db_session_with_containers) result = service.list_variables_without_values(app.id, page=1, limit=3) @@ -291,10 +313,32 @@ class TestWorkflowDraftVariableService: var1_value = StringSegment(value=fake.word()) var2_value = StringSegment(value=fake.word()) var3_value = StringSegment(value=fake.word()) - self._create_test_variable(db_session_with_containers, app.id, node_id, "var1", var1_value, "node", fake=fake) - self._create_test_variable(db_session_with_containers, app.id, node_id, "var2", var3_value, "node", fake=fake) self._create_test_variable( - db_session_with_containers, app.id, "other_node", "var3", var2_value, "node", fake=fake + db_session_with_containers, + app.id, + node_id, + "var1", + var1_value, + variable_type=DraftVariableType.NODE, + fake=fake, + ) + self._create_test_variable( + db_session_with_containers, + app.id, + node_id, + "var2", + var3_value, + variable_type=DraftVariableType.NODE, + fake=fake, + ) + self._create_test_variable( + db_session_with_containers, + app.id, + "other_node", + "var3", + var2_value, + variable_type=DraftVariableType.NODE, + fake=fake, ) service = WorkflowDraftVariableService(db_session_with_containers) result = service.list_node_variables(app.id, node_id) @@ -328,7 +372,13 @@ class TestWorkflowDraftVariableService: ) sys_var_value = StringSegment(value=fake.word()) self._create_test_variable( - db_session_with_containers, app.id, SYSTEM_VARIABLE_NODE_ID, "sys_var", sys_var_value, "system", fake=fake + db_session_with_containers, + app.id, + SYSTEM_VARIABLE_NODE_ID, + "sys_var", + sys_var_value, + variable_type=DraftVariableType.SYS, + fake=fake, ) service = WorkflowDraftVariableService(db_session_with_containers) result = service.list_conversation_variables(app.id) @@ -480,14 +530,24 @@ class TestWorkflowDraftVariableService: fake = Faker() app = self._create_test_app(db_session_with_containers, mock_external_service_dependencies, fake=fake) for i in range(3): - test_value = StringSegment(value=fake.numerify("value##")) + test_value = StringSegment(value=fake.numerify("value######")) self._create_test_variable( - db_session_with_containers, app.id, CONVERSATION_VARIABLE_NODE_ID, fake.word(), test_value, fake=fake + db_session_with_containers, + app.id, + CONVERSATION_VARIABLE_NODE_ID, + _get_random_variable_name(fake), + test_value, + fake=fake, ) other_app = self._create_test_app(db_session_with_containers, mock_external_service_dependencies, fake=fake) other_value = StringSegment(value=fake.word()) self._create_test_variable( - db_session_with_containers, other_app.id, CONVERSATION_VARIABLE_NODE_ID, fake.word(), other_value, fake=fake + db_session_with_containers, + other_app.id, + CONVERSATION_VARIABLE_NODE_ID, + _get_random_variable_name(fake), + other_value, + fake=fake, ) from extensions.ext_database import db @@ -515,17 +575,34 @@ class TestWorkflowDraftVariableService: app = self._create_test_app(db_session_with_containers, mock_external_service_dependencies, fake=fake) node_id = fake.word() for i in range(2): - test_value = StringSegment(value=fake.numerify("node_value##")) + test_value = StringSegment(value=fake.numerify("node_value######")) self._create_test_variable( - db_session_with_containers, app.id, node_id, fake.word(), test_value, "node", fake=fake + db_session_with_containers, + app.id, + node_id, + _get_random_variable_name(fake), + test_value, + variable_type=DraftVariableType.NODE, + fake=fake, ) other_node_value = StringSegment(value=fake.word()) self._create_test_variable( - db_session_with_containers, app.id, "other_node", fake.word(), other_node_value, "node", fake=fake + db_session_with_containers, + app.id, + "other_node", + _get_random_variable_name(fake), + other_node_value, + variable_type=DraftVariableType.NODE, + fake=fake, ) conv_value = StringSegment(value=fake.word()) self._create_test_variable( - db_session_with_containers, app.id, CONVERSATION_VARIABLE_NODE_ID, fake.word(), conv_value, fake=fake + db_session_with_containers, + app.id, + CONVERSATION_VARIABLE_NODE_ID, + _get_random_variable_name(fake), + conv_value, + fake=fake, ) from extensions.ext_database import db @@ -627,7 +704,7 @@ class TestWorkflowDraftVariableService: SYSTEM_VARIABLE_NODE_ID, "conversation_id", conv_id_value, - "system", + variable_type=DraftVariableType.SYS, fake=fake, ) service = WorkflowDraftVariableService(db_session_with_containers) @@ -664,10 +741,22 @@ class TestWorkflowDraftVariableService: sys_var1_value = StringSegment(value=fake.word()) sys_var2_value = StringSegment(value=fake.word()) sys_var1 = self._create_test_variable( - db_session_with_containers, app.id, SYSTEM_VARIABLE_NODE_ID, "sys_var1", sys_var1_value, "system", fake=fake + db_session_with_containers, + app.id, + SYSTEM_VARIABLE_NODE_ID, + "sys_var1", + sys_var1_value, + variable_type=DraftVariableType.SYS, + fake=fake, ) sys_var2 = self._create_test_variable( - db_session_with_containers, app.id, SYSTEM_VARIABLE_NODE_ID, "sys_var2", sys_var2_value, "system", fake=fake + db_session_with_containers, + app.id, + SYSTEM_VARIABLE_NODE_ID, + "sys_var2", + sys_var2_value, + variable_type=DraftVariableType.SYS, + fake=fake, ) conv_var_value = StringSegment(value=fake.word()) self._create_test_variable( @@ -701,10 +790,22 @@ class TestWorkflowDraftVariableService: db_session_with_containers, app.id, CONVERSATION_VARIABLE_NODE_ID, "test_conv_var", test_value, fake=fake ) sys_var = self._create_test_variable( - db_session_with_containers, app.id, SYSTEM_VARIABLE_NODE_ID, "test_sys_var", test_value, "system", fake=fake + db_session_with_containers, + app.id, + SYSTEM_VARIABLE_NODE_ID, + "test_sys_var", + test_value, + variable_type=DraftVariableType.SYS, + fake=fake, ) node_var = self._create_test_variable( - db_session_with_containers, app.id, "test_node", "test_node_var", test_value, "node", fake=fake + db_session_with_containers, + app.id, + "test_node", + "test_node_var", + test_value, + variable_type=DraftVariableType.NODE, + fake=fake, ) service = WorkflowDraftVariableService(db_session_with_containers) retrieved_conv_var = service.get_conversation_variable(app.id, "test_conv_var") diff --git a/api/tests/unit_tests/core/app/features/rate_limiting/conftest.py b/api/tests/unit_tests/core/app/features/rate_limiting/conftest.py new file mode 100644 index 0000000000..9557e78150 --- /dev/null +++ b/api/tests/unit_tests/core/app/features/rate_limiting/conftest.py @@ -0,0 +1,124 @@ +import time +from unittest.mock import MagicMock, patch + +import pytest + +from core.app.features.rate_limiting.rate_limit import RateLimit + + +@pytest.fixture +def mock_redis(): + """Mock Redis client with realistic behavior for rate limiting tests.""" + mock_client = MagicMock() + + # Redis data storage for simulation + mock_data = {} + mock_hashes = {} + mock_expiry = {} + + def mock_setex(key, ttl, value): + mock_data[key] = str(value) + mock_expiry[key] = time.time() + ttl.total_seconds() if hasattr(ttl, "total_seconds") else time.time() + ttl + return True + + def mock_get(key): + if key in mock_data and (key not in mock_expiry or time.time() < mock_expiry[key]): + return mock_data[key].encode("utf-8") + return None + + def mock_exists(key): + return key in mock_data or key in mock_hashes + + def mock_expire(key, ttl): + if key in mock_data or key in mock_hashes: + mock_expiry[key] = time.time() + ttl.total_seconds() if hasattr(ttl, "total_seconds") else time.time() + ttl + return True + + def mock_hset(key, field, value): + if key not in mock_hashes: + mock_hashes[key] = {} + mock_hashes[key][field] = str(value).encode("utf-8") + return True + + def mock_hgetall(key): + return mock_hashes.get(key, {}) + + def mock_hdel(key, *fields): + if key in mock_hashes: + count = 0 + for field in fields: + if field in mock_hashes[key]: + del mock_hashes[key][field] + count += 1 + return count + return 0 + + def mock_hlen(key): + return len(mock_hashes.get(key, {})) + + # Configure mock methods + mock_client.setex = mock_setex + mock_client.get = mock_get + mock_client.exists = mock_exists + mock_client.expire = mock_expire + mock_client.hset = mock_hset + mock_client.hgetall = mock_hgetall + mock_client.hdel = mock_hdel + mock_client.hlen = mock_hlen + + # Store references for test verification + mock_client._mock_data = mock_data + mock_client._mock_hashes = mock_hashes + mock_client._mock_expiry = mock_expiry + + return mock_client + + +@pytest.fixture +def mock_time(): + """Mock time.time() for deterministic tests.""" + mock_time_val = 1000.0 + + def increment_time(seconds=1): + nonlocal mock_time_val + mock_time_val += seconds + return mock_time_val + + with patch("time.time", return_value=mock_time_val) as mock: + mock.increment = increment_time + yield mock + + +@pytest.fixture +def sample_generator(): + """Sample generator for testing RateLimitGenerator.""" + + def _create_generator(items=None, raise_error=False): + items = items or ["item1", "item2", "item3"] + for item in items: + if raise_error and item == "item2": + raise ValueError("Test error") + yield item + + return _create_generator + + +@pytest.fixture +def sample_mapping(): + """Sample mapping for testing RateLimitGenerator.""" + return {"key1": "value1", "key2": "value2"} + + +@pytest.fixture(autouse=True) +def reset_rate_limit_instances(): + """Clear RateLimit singleton instances between tests.""" + RateLimit._instance_dict.clear() + yield + RateLimit._instance_dict.clear() + + +@pytest.fixture +def redis_patch(): + """Patch redis_client globally for rate limit tests.""" + with patch("core.app.features.rate_limiting.rate_limit.redis_client") as mock: + yield mock diff --git a/api/tests/unit_tests/core/app/features/rate_limiting/test_rate_limit.py b/api/tests/unit_tests/core/app/features/rate_limiting/test_rate_limit.py new file mode 100644 index 0000000000..3db10c1c72 --- /dev/null +++ b/api/tests/unit_tests/core/app/features/rate_limiting/test_rate_limit.py @@ -0,0 +1,569 @@ +import threading +import time +from datetime import timedelta +from unittest.mock import patch + +import pytest + +from core.app.features.rate_limiting.rate_limit import RateLimit +from core.errors.error import AppInvokeQuotaExceededError + + +class TestRateLimit: + """Core rate limiting functionality tests.""" + + def test_should_return_same_instance_for_same_client_id(self, redis_patch): + """Test singleton behavior for same client ID.""" + redis_patch.configure_mock( + **{ + "exists.return_value": False, + "setex.return_value": True, + } + ) + + rate_limit1 = RateLimit("client1", 5) + rate_limit2 = RateLimit("client1", 10) # Second instance with different limit + + assert rate_limit1 is rate_limit2 + # Current implementation: last constructor call overwrites max_active_requests + # This reflects the actual behavior where __init__ always sets max_active_requests + assert rate_limit1.max_active_requests == 10 + + def test_should_create_different_instances_for_different_client_ids(self, redis_patch): + """Test different instances for different client IDs.""" + redis_patch.configure_mock( + **{ + "exists.return_value": False, + "setex.return_value": True, + } + ) + + rate_limit1 = RateLimit("client1", 5) + rate_limit2 = RateLimit("client2", 10) + + assert rate_limit1 is not rate_limit2 + assert rate_limit1.client_id == "client1" + assert rate_limit2.client_id == "client2" + + def test_should_initialize_with_valid_parameters(self, redis_patch): + """Test normal initialization.""" + redis_patch.configure_mock( + **{ + "exists.return_value": False, + "setex.return_value": True, + } + ) + + rate_limit = RateLimit("test_client", 5) + + assert rate_limit.client_id == "test_client" + assert rate_limit.max_active_requests == 5 + assert hasattr(rate_limit, "initialized") + redis_patch.setex.assert_called_once() + + def test_should_skip_initialization_if_disabled(self): + """Test no initialization when rate limiting is disabled.""" + rate_limit = RateLimit("test_client", 0) + + assert rate_limit.disabled() + assert not hasattr(rate_limit, "initialized") + + def test_should_skip_reinitialization_of_existing_instance(self, redis_patch): + """Test that existing instance doesn't reinitialize.""" + redis_patch.configure_mock( + **{ + "exists.return_value": False, + "setex.return_value": True, + } + ) + + RateLimit("client1", 5) + redis_patch.reset_mock() + + RateLimit("client1", 10) + + redis_patch.setex.assert_not_called() + + def test_should_be_disabled_when_max_requests_is_zero_or_negative(self): + """Test disabled state for zero or negative limits.""" + rate_limit_zero = RateLimit("client1", 0) + rate_limit_negative = RateLimit("client2", -5) + + assert rate_limit_zero.disabled() + assert rate_limit_negative.disabled() + + def test_should_set_redis_keys_on_first_flush(self, redis_patch): + """Test Redis keys are set correctly on initial flush.""" + redis_patch.configure_mock( + **{ + "exists.return_value": False, + "setex.return_value": True, + } + ) + + rate_limit = RateLimit("test_client", 5) + + expected_max_key = "dify:rate_limit:test_client:max_active_requests" + redis_patch.setex.assert_called_with(expected_max_key, timedelta(days=1), 5) + + def test_should_sync_max_requests_from_redis_on_subsequent_flush(self, redis_patch): + """Test max requests syncs from Redis when key exists.""" + redis_patch.configure_mock( + **{ + "exists.return_value": True, + "get.return_value": b"10", + "expire.return_value": True, + } + ) + + rate_limit = RateLimit("test_client", 5) + rate_limit.flush_cache() + + assert rate_limit.max_active_requests == 10 + + @patch("time.time") + def test_should_clean_timeout_requests_from_active_list(self, mock_time, redis_patch): + """Test cleanup of timed-out requests.""" + current_time = 1000.0 + mock_time.return_value = current_time + + # Setup mock Redis with timed-out requests + timeout_requests = { + b"req1": str(current_time - 700).encode(), # 700 seconds ago (timeout) + b"req2": str(current_time - 100).encode(), # 100 seconds ago (active) + } + + redis_patch.configure_mock( + **{ + "exists.return_value": True, + "get.return_value": b"5", + "expire.return_value": True, + "hgetall.return_value": timeout_requests, + "hdel.return_value": 1, + } + ) + + rate_limit = RateLimit("test_client", 5) + redis_patch.reset_mock() # Reset to avoid counting initialization calls + rate_limit.flush_cache() + + # Verify timeout request was cleaned up + redis_patch.hdel.assert_called_once() + call_args = redis_patch.hdel.call_args[0] + assert call_args[0] == "dify:rate_limit:test_client:active_requests" + assert b"req1" in call_args # Timeout request should be removed + assert b"req2" not in call_args # Active request should remain + + +class TestRateLimitEnterExit: + """Rate limiting enter/exit logic tests.""" + + def test_should_allow_request_within_limit(self, redis_patch): + """Test allowing requests within the rate limit.""" + redis_patch.configure_mock( + **{ + "exists.return_value": False, + "setex.return_value": True, + "hlen.return_value": 2, + "hset.return_value": True, + } + ) + + rate_limit = RateLimit("test_client", 5) + request_id = rate_limit.enter() + + assert request_id != RateLimit._UNLIMITED_REQUEST_ID + redis_patch.hset.assert_called_once() + + def test_should_generate_request_id_if_not_provided(self, redis_patch): + """Test auto-generation of request ID.""" + redis_patch.configure_mock( + **{ + "exists.return_value": False, + "setex.return_value": True, + "hlen.return_value": 0, + "hset.return_value": True, + } + ) + + rate_limit = RateLimit("test_client", 5) + request_id = rate_limit.enter() + + assert len(request_id) == 36 # UUID format + + def test_should_use_provided_request_id(self, redis_patch): + """Test using provided request ID.""" + redis_patch.configure_mock( + **{ + "exists.return_value": False, + "setex.return_value": True, + "hlen.return_value": 0, + "hset.return_value": True, + } + ) + + rate_limit = RateLimit("test_client", 5) + custom_id = "custom_request_123" + request_id = rate_limit.enter(custom_id) + + assert request_id == custom_id + + def test_should_remove_request_on_exit(self, redis_patch): + """Test request removal on exit.""" + redis_patch.configure_mock( + **{ + "hdel.return_value": 1, + } + ) + + rate_limit = RateLimit("test_client", 5) + rate_limit.exit("test_request_id") + + redis_patch.hdel.assert_called_once_with("dify:rate_limit:test_client:active_requests", "test_request_id") + + def test_should_raise_quota_exceeded_when_at_limit(self, redis_patch): + """Test quota exceeded error when at limit.""" + redis_patch.configure_mock( + **{ + "exists.return_value": False, + "setex.return_value": True, + "hlen.return_value": 5, # At limit + } + ) + + rate_limit = RateLimit("test_client", 5) + + with pytest.raises(AppInvokeQuotaExceededError) as exc_info: + rate_limit.enter() + + assert "Too many requests" in str(exc_info.value) + assert "test_client" in str(exc_info.value) + + def test_should_allow_request_after_previous_exit(self, redis_patch): + """Test allowing new request after previous exit.""" + redis_patch.configure_mock( + **{ + "exists.return_value": False, + "setex.return_value": True, + "hlen.return_value": 4, # Under limit after exit + "hset.return_value": True, + "hdel.return_value": 1, + } + ) + + rate_limit = RateLimit("test_client", 5) + + request_id = rate_limit.enter() + rate_limit.exit(request_id) + + new_request_id = rate_limit.enter() + assert new_request_id is not None + + @patch("time.time") + def test_should_flush_cache_when_interval_exceeded(self, mock_time, redis_patch): + """Test cache flush when time interval exceeded.""" + redis_patch.configure_mock( + **{ + "exists.return_value": False, + "setex.return_value": True, + "hlen.return_value": 0, + } + ) + + mock_time.return_value = 1000.0 + rate_limit = RateLimit("test_client", 5) + + # Advance time beyond flush interval + mock_time.return_value = 1400.0 # 400 seconds later + redis_patch.reset_mock() + + rate_limit.enter() + + # Should have called setex again due to cache flush + redis_patch.setex.assert_called() + + def test_should_return_unlimited_id_when_disabled(self): + """Test unlimited ID return when rate limiting disabled.""" + rate_limit = RateLimit("test_client", 0) + request_id = rate_limit.enter() + + assert request_id == RateLimit._UNLIMITED_REQUEST_ID + + def test_should_ignore_exit_for_unlimited_requests(self, redis_patch): + """Test ignoring exit for unlimited requests.""" + rate_limit = RateLimit("test_client", 0) + rate_limit.exit(RateLimit._UNLIMITED_REQUEST_ID) + + redis_patch.hdel.assert_not_called() + + +class TestRateLimitGenerator: + """Rate limit generator wrapper tests.""" + + def test_should_wrap_generator_and_iterate_normally(self, redis_patch, sample_generator): + """Test normal generator iteration with rate limit wrapper.""" + redis_patch.configure_mock( + **{ + "exists.return_value": False, + "setex.return_value": True, + "hdel.return_value": 1, + } + ) + + rate_limit = RateLimit("test_client", 5) + generator = sample_generator() + request_id = "test_request" + + wrapped_gen = rate_limit.generate(generator, request_id) + result = list(wrapped_gen) + + assert result == ["item1", "item2", "item3"] + redis_patch.hdel.assert_called_once_with("dify:rate_limit:test_client:active_requests", request_id) + + def test_should_handle_mapping_input_directly(self, sample_mapping): + """Test direct return of mapping input.""" + rate_limit = RateLimit("test_client", 0) # Disabled + result = rate_limit.generate(sample_mapping, "test_request") + + assert result is sample_mapping + + def test_should_cleanup_on_exception_during_iteration(self, redis_patch, sample_generator): + """Test cleanup when exception occurs during iteration.""" + redis_patch.configure_mock( + **{ + "exists.return_value": False, + "setex.return_value": True, + "hdel.return_value": 1, + } + ) + + rate_limit = RateLimit("test_client", 5) + generator = sample_generator(raise_error=True) + request_id = "test_request" + + wrapped_gen = rate_limit.generate(generator, request_id) + + with pytest.raises(ValueError): + list(wrapped_gen) + + redis_patch.hdel.assert_called_once_with("dify:rate_limit:test_client:active_requests", request_id) + + def test_should_cleanup_on_explicit_close(self, redis_patch, sample_generator): + """Test cleanup on explicit generator close.""" + redis_patch.configure_mock( + **{ + "exists.return_value": False, + "setex.return_value": True, + "hdel.return_value": 1, + } + ) + + rate_limit = RateLimit("test_client", 5) + generator = sample_generator() + request_id = "test_request" + + wrapped_gen = rate_limit.generate(generator, request_id) + wrapped_gen.close() + + redis_patch.hdel.assert_called_once() + + def test_should_handle_generator_without_close_method(self, redis_patch): + """Test handling generator without close method.""" + redis_patch.configure_mock( + **{ + "exists.return_value": False, + "setex.return_value": True, + "hdel.return_value": 1, + } + ) + + # Create a generator-like object without close method + class SimpleGenerator: + def __init__(self): + self.items = ["test"] + self.index = 0 + + def __iter__(self): + return self + + def __next__(self): + if self.index >= len(self.items): + raise StopIteration + item = self.items[self.index] + self.index += 1 + return item + + rate_limit = RateLimit("test_client", 5) + generator = SimpleGenerator() + + wrapped_gen = rate_limit.generate(generator, "test_request") + wrapped_gen.close() # Should not raise error + + redis_patch.hdel.assert_called_once() + + def test_should_prevent_iteration_after_close(self, redis_patch, sample_generator): + """Test StopIteration after generator is closed.""" + redis_patch.configure_mock( + **{ + "exists.return_value": False, + "setex.return_value": True, + "hdel.return_value": 1, + } + ) + + rate_limit = RateLimit("test_client", 5) + generator = sample_generator() + + wrapped_gen = rate_limit.generate(generator, "test_request") + wrapped_gen.close() + + with pytest.raises(StopIteration): + next(wrapped_gen) + + +class TestRateLimitConcurrency: + """Concurrent access safety tests.""" + + def test_should_handle_concurrent_instance_creation(self, redis_patch): + """Test thread-safe singleton instance creation.""" + redis_patch.configure_mock( + **{ + "exists.return_value": False, + "setex.return_value": True, + } + ) + + instances = [] + errors = [] + + def create_instance(): + try: + instance = RateLimit("concurrent_client", 5) + instances.append(instance) + except Exception as e: + errors.append(e) + + threads = [threading.Thread(target=create_instance) for _ in range(10)] + + for t in threads: + t.start() + for t in threads: + t.join() + + assert len(errors) == 0 + assert len({id(inst) for inst in instances}) == 1 # All same instance + + def test_should_handle_concurrent_enter_requests(self, redis_patch): + """Test concurrent enter requests handling.""" + # Setup mock to simulate realistic Redis behavior + request_count = 0 + + def mock_hlen(key): + nonlocal request_count + return request_count + + def mock_hset(key, field, value): + nonlocal request_count + request_count += 1 + return True + + redis_patch.configure_mock( + **{ + "exists.return_value": False, + "setex.return_value": True, + "hlen.side_effect": mock_hlen, + "hset.side_effect": mock_hset, + } + ) + + rate_limit = RateLimit("concurrent_client", 3) + results = [] + errors = [] + + def try_enter(): + try: + request_id = rate_limit.enter() + results.append(request_id) + except AppInvokeQuotaExceededError as e: + errors.append(e) + + threads = [threading.Thread(target=try_enter) for _ in range(5)] + + for t in threads: + t.start() + for t in threads: + t.join() + + # Should have some successful requests and some quota exceeded + assert len(results) + len(errors) == 5 + assert len(errors) > 0 # Some should be rejected + + @patch("time.time") + def test_should_maintain_accurate_count_under_load(self, mock_time, redis_patch): + """Test accurate count maintenance under concurrent load.""" + mock_time.return_value = 1000.0 + + # Use real mock_redis fixture for better simulation + mock_client = self._create_mock_redis() + redis_patch.configure_mock(**mock_client) + + rate_limit = RateLimit("load_test_client", 10) + active_requests = [] + + def enter_and_exit(): + try: + request_id = rate_limit.enter() + active_requests.append(request_id) + time.sleep(0.01) # Simulate some work + rate_limit.exit(request_id) + active_requests.remove(request_id) + except AppInvokeQuotaExceededError: + pass # Expected under load + + threads = [threading.Thread(target=enter_and_exit) for _ in range(20)] + + for t in threads: + t.start() + for t in threads: + t.join() + + # All requests should have been cleaned up + assert len(active_requests) == 0 + + def _create_mock_redis(self): + """Create a thread-safe mock Redis for concurrency tests.""" + import threading + + lock = threading.Lock() + data = {} + hashes = {} + + def mock_hlen(key): + with lock: + return len(hashes.get(key, {})) + + def mock_hset(key, field, value): + with lock: + if key not in hashes: + hashes[key] = {} + hashes[key][field] = str(value).encode("utf-8") + return True + + def mock_hdel(key, *fields): + with lock: + if key in hashes: + count = 0 + for field in fields: + if field in hashes[key]: + del hashes[key][field] + count += 1 + return count + return 0 + + return { + "exists.return_value": False, + "setex.return_value": True, + "hlen.side_effect": mock_hlen, + "hset.side_effect": mock_hset, + "hdel.side_effect": mock_hdel, + } diff --git a/api/tests/unit_tests/core/workflow/test_variable_pool.py b/api/tests/unit_tests/core/workflow/test_variable_pool.py index c65b60cb4d..c0330b9441 100644 --- a/api/tests/unit_tests/core/workflow/test_variable_pool.py +++ b/api/tests/unit_tests/core/workflow/test_variable_pool.py @@ -69,8 +69,12 @@ def test_get_file_attribute(pool, file): def test_use_long_selector(pool): - pool.add(("node_1", "part_1", "part_2"), StringSegment(value="test_value")) + # The add method now only accepts 2-element selectors (node_id, variable_name) + # Store nested data as an ObjectSegment instead + nested_data = {"part_2": "test_value"} + pool.add(("node_1", "part_1"), ObjectSegment(value=nested_data)) + # The get method supports longer selectors for nested access result = pool.get(("node_1", "part_1", "part_2")) assert result is not None assert result.value == "test_value" @@ -280,8 +284,10 @@ class TestVariablePoolSerialization: pool.add((self._NODE2_ID, "array_file"), ArrayFileSegment(value=[test_file])) pool.add((self._NODE2_ID, "array_any"), ArrayAnySegment(value=["mixed", 123, {"key": "value"}])) - # Add nested variables - pool.add((self._NODE3_ID, "nested", "deep", "var"), StringSegment(value="deep_value")) + # Add nested variables as ObjectSegment + # The add method only accepts 2-element selectors + nested_obj = {"deep": {"var": "deep_value"}} + pool.add((self._NODE3_ID, "nested"), ObjectSegment(value=nested_obj)) def test_system_variables(self): sys_vars = SystemVariable( diff --git a/api/tests/unit_tests/core/workflow/utils/test_variable_utils.py b/api/tests/unit_tests/core/workflow/utils/test_variable_utils.py deleted file mode 100644 index 54bf6558bf..0000000000 --- a/api/tests/unit_tests/core/workflow/utils/test_variable_utils.py +++ /dev/null @@ -1,148 +0,0 @@ -from typing import Any - -from core.variables.segments import ObjectSegment, StringSegment -from core.workflow.entities.variable_pool import VariablePool -from core.workflow.utils.variable_utils import append_variables_recursively - - -class TestAppendVariablesRecursively: - """Test cases for append_variables_recursively function""" - - def test_append_simple_dict_value(self): - """Test appending a simple dictionary value""" - pool = VariablePool.empty() - node_id = "test_node" - variable_key_list = ["output"] - variable_value = {"name": "John", "age": 30} - - append_variables_recursively(pool, node_id, variable_key_list, variable_value) - - # Check that the main variable is added - main_var = pool.get([node_id] + variable_key_list) - assert main_var is not None - assert main_var.value == variable_value - - # Check that nested variables are added recursively - name_var = pool.get([node_id] + variable_key_list + ["name"]) - assert name_var is not None - assert name_var.value == "John" - - age_var = pool.get([node_id] + variable_key_list + ["age"]) - assert age_var is not None - assert age_var.value == 30 - - def test_append_object_segment_value(self): - """Test appending an ObjectSegment value""" - pool = VariablePool.empty() - node_id = "test_node" - variable_key_list = ["result"] - - # Create an ObjectSegment - obj_data = {"status": "success", "code": 200} - variable_value = ObjectSegment(value=obj_data) - - append_variables_recursively(pool, node_id, variable_key_list, variable_value) - - # Check that the main variable is added - main_var = pool.get([node_id] + variable_key_list) - assert main_var is not None - assert isinstance(main_var, ObjectSegment) - assert main_var.value == obj_data - - # Check that nested variables are added recursively - status_var = pool.get([node_id] + variable_key_list + ["status"]) - assert status_var is not None - assert status_var.value == "success" - - code_var = pool.get([node_id] + variable_key_list + ["code"]) - assert code_var is not None - assert code_var.value == 200 - - def test_append_nested_dict_value(self): - """Test appending a nested dictionary value""" - pool = VariablePool.empty() - node_id = "test_node" - variable_key_list = ["data"] - - variable_value = { - "user": { - "profile": {"name": "Alice", "email": "alice@example.com"}, - "settings": {"theme": "dark", "notifications": True}, - }, - "metadata": {"version": "1.0", "timestamp": 1234567890}, - } - - append_variables_recursively(pool, node_id, variable_key_list, variable_value) - - # Check deeply nested variables - name_var = pool.get([node_id] + variable_key_list + ["user", "profile", "name"]) - assert name_var is not None - assert name_var.value == "Alice" - - email_var = pool.get([node_id] + variable_key_list + ["user", "profile", "email"]) - assert email_var is not None - assert email_var.value == "alice@example.com" - - theme_var = pool.get([node_id] + variable_key_list + ["user", "settings", "theme"]) - assert theme_var is not None - assert theme_var.value == "dark" - - notifications_var = pool.get([node_id] + variable_key_list + ["user", "settings", "notifications"]) - assert notifications_var is not None - assert notifications_var.value == 1 # Boolean True is converted to integer 1 - - version_var = pool.get([node_id] + variable_key_list + ["metadata", "version"]) - assert version_var is not None - assert version_var.value == "1.0" - - def test_append_non_dict_value(self): - """Test appending a non-dictionary value (should not recurse)""" - pool = VariablePool.empty() - node_id = "test_node" - variable_key_list = ["simple"] - variable_value = "simple_string" - - append_variables_recursively(pool, node_id, variable_key_list, variable_value) - - # Check that only the main variable is added - main_var = pool.get([node_id] + variable_key_list) - assert main_var is not None - assert main_var.value == variable_value - - # Ensure no additional variables are created - assert len(pool.variable_dictionary[node_id]) == 1 - - def test_append_segment_non_object_value(self): - """Test appending a Segment that is not ObjectSegment (should not recurse)""" - pool = VariablePool.empty() - node_id = "test_node" - variable_key_list = ["text"] - variable_value = StringSegment(value="Hello World") - - append_variables_recursively(pool, node_id, variable_key_list, variable_value) - - # Check that only the main variable is added - main_var = pool.get([node_id] + variable_key_list) - assert main_var is not None - assert isinstance(main_var, StringSegment) - assert main_var.value == "Hello World" - - # Ensure no additional variables are created - assert len(pool.variable_dictionary[node_id]) == 1 - - def test_append_empty_dict_value(self): - """Test appending an empty dictionary value""" - pool = VariablePool.empty() - node_id = "test_node" - variable_key_list = ["empty"] - variable_value: dict[str, Any] = {} - - append_variables_recursively(pool, node_id, variable_key_list, variable_value) - - # Check that the main variable is added - main_var = pool.get([node_id] + variable_key_list) - assert main_var is not None - assert main_var.value == {} - - # Ensure only the main variable is created (no recursion for empty dict) - assert len(pool.variable_dictionary[node_id]) == 1 diff --git a/api/uv.lock b/api/uv.lock index 16624dc8fd..ea2c1bef5b 100644 --- a/api/uv.lock +++ b/api/uv.lock @@ -1236,7 +1236,7 @@ wheels = [ [[package]] name = "dify-api" -version = "1.7.1" +version = "1.7.2" source = { virtual = "." } dependencies = [ { name = "arize-phoenix-otel" }, diff --git a/docker/.env.example b/docker/.env.example index 1b1e9cad7b..ed19fa6099 100644 --- a/docker/.env.example +++ b/docker/.env.example @@ -907,6 +907,9 @@ TEXT_GENERATION_TIMEOUT_MS=60000 # Allow rendering unsafe URLs which have "data:" scheme. ALLOW_UNSAFE_DATA_SCHEME=false +# Maximum number of tree depth in the workflow +MAX_TREE_DEPTH=50 + # ------------------------------ # Environment Variables for db Service # ------------------------------ diff --git a/docker/docker-compose-template.yaml b/docker/docker-compose-template.yaml index b5ae4a425c..6494087a4a 100644 --- a/docker/docker-compose-template.yaml +++ b/docker/docker-compose-template.yaml @@ -2,7 +2,7 @@ x-shared-env: &shared-api-worker-env services: # API service api: - image: langgenius/dify-api:1.7.1 + image: langgenius/dify-api:1.7.2 restart: always environment: # Use the shared environment variables. @@ -31,7 +31,7 @@ services: # worker service # The Celery worker for processing the queue. worker: - image: langgenius/dify-api:1.7.1 + image: langgenius/dify-api:1.7.2 restart: always environment: # Use the shared environment variables. @@ -58,7 +58,7 @@ services: # worker_beat service # Celery beat for scheduling periodic tasks. worker_beat: - image: langgenius/dify-api:1.7.1 + image: langgenius/dify-api:1.7.2 restart: always environment: # Use the shared environment variables. @@ -76,7 +76,7 @@ services: # Frontend web application. web: - image: langgenius/dify-web:1.7.1 + image: langgenius/dify-web:1.7.2 restart: always environment: CONSOLE_API_URL: ${CONSOLE_API_URL:-} diff --git a/docker/docker-compose.yaml b/docker/docker-compose.yaml index 8e2d40883d..d64a8566a0 100644 --- a/docker/docker-compose.yaml +++ b/docker/docker-compose.yaml @@ -404,6 +404,7 @@ x-shared-env: &shared-api-worker-env MAX_ITERATIONS_NUM: ${MAX_ITERATIONS_NUM:-99} TEXT_GENERATION_TIMEOUT_MS: ${TEXT_GENERATION_TIMEOUT_MS:-60000} ALLOW_UNSAFE_DATA_SCHEME: ${ALLOW_UNSAFE_DATA_SCHEME:-false} + MAX_TREE_DEPTH: ${MAX_TREE_DEPTH:-50} POSTGRES_USER: ${POSTGRES_USER:-${DB_USERNAME}} POSTGRES_PASSWORD: ${POSTGRES_PASSWORD:-${DB_PASSWORD}} POSTGRES_DB: ${POSTGRES_DB:-${DB_DATABASE}} @@ -567,7 +568,7 @@ x-shared-env: &shared-api-worker-env services: # API service api: - image: langgenius/dify-api:1.7.1 + image: langgenius/dify-api:1.7.2 restart: always environment: # Use the shared environment variables. @@ -596,7 +597,7 @@ services: # worker service # The Celery worker for processing the queue. worker: - image: langgenius/dify-api:1.7.1 + image: langgenius/dify-api:1.7.2 restart: always environment: # Use the shared environment variables. @@ -623,7 +624,7 @@ services: # worker_beat service # Celery beat for scheduling periodic tasks. worker_beat: - image: langgenius/dify-api:1.7.1 + image: langgenius/dify-api:1.7.2 restart: always environment: # Use the shared environment variables. @@ -641,7 +642,7 @@ services: # Frontend web application. web: - image: langgenius/dify-web:1.7.1 + image: langgenius/dify-web:1.7.2 restart: always environment: CONSOLE_API_URL: ${CONSOLE_API_URL:-} diff --git a/web/__tests__/goto-anything/command-selector.test.tsx b/web/__tests__/goto-anything/command-selector.test.tsx new file mode 100644 index 0000000000..1073b9d481 --- /dev/null +++ b/web/__tests__/goto-anything/command-selector.test.tsx @@ -0,0 +1,333 @@ +import React from 'react' +import { fireEvent, render, screen } from '@testing-library/react' +import '@testing-library/jest-dom' +import CommandSelector from '../../app/components/goto-anything/command-selector' +import type { ActionItem } from '../../app/components/goto-anything/actions/types' + +jest.mock('react-i18next', () => ({ + useTranslation: () => ({ + t: (key: string) => key, + }), +})) + +jest.mock('cmdk', () => ({ + Command: { + Group: ({ children, className }: any) =>
{children}
, + Item: ({ children, onSelect, value, className }: any) => ( +
onSelect && onSelect()} + data-value={value} + data-testid={`command-item-${value}`} + > + {children} +
+ ), + }, +})) + +describe('CommandSelector', () => { + const mockActions: Record = { + app: { + key: '@app', + shortcut: '@app', + title: 'Search Applications', + description: 'Search apps', + search: jest.fn(), + }, + knowledge: { + key: '@knowledge', + shortcut: '@knowledge', + title: 'Search Knowledge', + description: 'Search knowledge bases', + search: jest.fn(), + }, + plugin: { + key: '@plugin', + shortcut: '@plugin', + title: 'Search Plugins', + description: 'Search plugins', + search: jest.fn(), + }, + node: { + key: '@node', + shortcut: '@node', + title: 'Search Nodes', + description: 'Search workflow nodes', + search: jest.fn(), + }, + } + + const mockOnCommandSelect = jest.fn() + const mockOnCommandValueChange = jest.fn() + + beforeEach(() => { + jest.clearAllMocks() + }) + + describe('Basic Rendering', () => { + it('should render all actions when no filter is provided', () => { + render( + , + ) + + expect(screen.getByTestId('command-item-@app')).toBeInTheDocument() + expect(screen.getByTestId('command-item-@knowledge')).toBeInTheDocument() + expect(screen.getByTestId('command-item-@plugin')).toBeInTheDocument() + expect(screen.getByTestId('command-item-@node')).toBeInTheDocument() + }) + + it('should render empty filter as showing all actions', () => { + render( + , + ) + + expect(screen.getByTestId('command-item-@app')).toBeInTheDocument() + expect(screen.getByTestId('command-item-@knowledge')).toBeInTheDocument() + expect(screen.getByTestId('command-item-@plugin')).toBeInTheDocument() + expect(screen.getByTestId('command-item-@node')).toBeInTheDocument() + }) + }) + + describe('Filtering Functionality', () => { + it('should filter actions based on searchFilter - single match', () => { + render( + , + ) + + expect(screen.queryByTestId('command-item-@app')).not.toBeInTheDocument() + expect(screen.getByTestId('command-item-@knowledge')).toBeInTheDocument() + expect(screen.queryByTestId('command-item-@plugin')).not.toBeInTheDocument() + expect(screen.queryByTestId('command-item-@node')).not.toBeInTheDocument() + }) + + it('should filter actions with multiple matches', () => { + render( + , + ) + + expect(screen.getByTestId('command-item-@app')).toBeInTheDocument() + expect(screen.queryByTestId('command-item-@knowledge')).not.toBeInTheDocument() + expect(screen.getByTestId('command-item-@plugin')).toBeInTheDocument() + expect(screen.queryByTestId('command-item-@node')).not.toBeInTheDocument() + }) + + it('should be case-insensitive when filtering', () => { + render( + , + ) + + expect(screen.getByTestId('command-item-@app')).toBeInTheDocument() + expect(screen.queryByTestId('command-item-@knowledge')).not.toBeInTheDocument() + }) + + it('should match partial strings', () => { + render( + , + ) + + expect(screen.queryByTestId('command-item-@app')).not.toBeInTheDocument() + expect(screen.getByTestId('command-item-@knowledge')).toBeInTheDocument() + expect(screen.queryByTestId('command-item-@plugin')).not.toBeInTheDocument() + expect(screen.queryByTestId('command-item-@node')).not.toBeInTheDocument() + }) + }) + + describe('Empty State', () => { + it('should show empty state when no matches found', () => { + render( + , + ) + + expect(screen.queryByTestId('command-item-@app')).not.toBeInTheDocument() + expect(screen.queryByTestId('command-item-@knowledge')).not.toBeInTheDocument() + expect(screen.queryByTestId('command-item-@plugin')).not.toBeInTheDocument() + expect(screen.queryByTestId('command-item-@node')).not.toBeInTheDocument() + + expect(screen.getByText('app.gotoAnything.noMatchingCommands')).toBeInTheDocument() + expect(screen.getByText('app.gotoAnything.tryDifferentSearch')).toBeInTheDocument() + }) + + it('should not show empty state when filter is empty', () => { + render( + , + ) + + expect(screen.queryByText('app.gotoAnything.noMatchingCommands')).not.toBeInTheDocument() + }) + }) + + describe('Selection and Highlight Management', () => { + it('should call onCommandValueChange when filter changes and first item differs', () => { + const { rerender } = render( + , + ) + + rerender( + , + ) + + expect(mockOnCommandValueChange).toHaveBeenCalledWith('@knowledge') + }) + + it('should not call onCommandValueChange if current value still exists', () => { + const { rerender } = render( + , + ) + + rerender( + , + ) + + expect(mockOnCommandValueChange).not.toHaveBeenCalled() + }) + + it('should handle onCommandSelect callback correctly', () => { + render( + , + ) + + const knowledgeItem = screen.getByTestId('command-item-@knowledge') + fireEvent.click(knowledgeItem) + + expect(mockOnCommandSelect).toHaveBeenCalledWith('@knowledge') + }) + }) + + describe('Edge Cases', () => { + it('should handle empty actions object', () => { + render( + , + ) + + expect(screen.getByText('app.gotoAnything.noMatchingCommands')).toBeInTheDocument() + }) + + it('should handle special characters in filter', () => { + render( + , + ) + + expect(screen.getByTestId('command-item-@app')).toBeInTheDocument() + expect(screen.getByTestId('command-item-@knowledge')).toBeInTheDocument() + expect(screen.getByTestId('command-item-@plugin')).toBeInTheDocument() + expect(screen.getByTestId('command-item-@node')).toBeInTheDocument() + }) + + it('should handle undefined onCommandValueChange gracefully', () => { + const { rerender } = render( + , + ) + + expect(() => { + rerender( + , + ) + }).not.toThrow() + }) + }) + + describe('Backward Compatibility', () => { + it('should work without searchFilter prop (backward compatible)', () => { + render( + , + ) + + expect(screen.getByTestId('command-item-@app')).toBeInTheDocument() + expect(screen.getByTestId('command-item-@knowledge')).toBeInTheDocument() + expect(screen.getByTestId('command-item-@plugin')).toBeInTheDocument() + expect(screen.getByTestId('command-item-@node')).toBeInTheDocument() + }) + + it('should work without commandValue and onCommandValueChange props', () => { + render( + , + ) + + expect(screen.getByTestId('command-item-@knowledge')).toBeInTheDocument() + expect(screen.queryByTestId('command-item-@app')).not.toBeInTheDocument() + }) + }) +}) diff --git a/web/__tests__/goto-anything/search-error-handling.test.ts b/web/__tests__/goto-anything/search-error-handling.test.ts new file mode 100644 index 0000000000..d2fd921e1c --- /dev/null +++ b/web/__tests__/goto-anything/search-error-handling.test.ts @@ -0,0 +1,197 @@ +/** + * Test GotoAnything search error handling mechanisms + * + * Main validations: + * 1. @plugin search error handling when API fails + * 2. Regular search (without @prefix) error handling when API fails + * 3. Verify consistent error handling across different search types + * 4. Ensure errors don't propagate to UI layer causing "search failed" + */ + +import { Actions, searchAnything } from '@/app/components/goto-anything/actions' +import { postMarketplace } from '@/service/base' +import { fetchAppList } from '@/service/apps' +import { fetchDatasets } from '@/service/datasets' + +// Mock API functions +jest.mock('@/service/base', () => ({ + postMarketplace: jest.fn(), +})) + +jest.mock('@/service/apps', () => ({ + fetchAppList: jest.fn(), +})) + +jest.mock('@/service/datasets', () => ({ + fetchDatasets: jest.fn(), +})) + +const mockPostMarketplace = postMarketplace as jest.MockedFunction +const mockFetchAppList = fetchAppList as jest.MockedFunction +const mockFetchDatasets = fetchDatasets as jest.MockedFunction + +describe('GotoAnything Search Error Handling', () => { + beforeEach(() => { + jest.clearAllMocks() + // Suppress console.warn for clean test output + jest.spyOn(console, 'warn').mockImplementation(() => { + // Suppress console.warn for clean test output + }) + }) + + afterEach(() => { + jest.restoreAllMocks() + }) + + describe('@plugin search error handling', () => { + it('should return empty array when API fails instead of throwing error', async () => { + // Mock marketplace API failure (403 permission denied) + mockPostMarketplace.mockRejectedValue(new Error('HTTP 403: Forbidden')) + + const pluginAction = Actions.plugin + + // Directly call plugin action's search method + const result = await pluginAction.search('@plugin', 'test', 'en') + + // Should return empty array instead of throwing error + expect(result).toEqual([]) + expect(mockPostMarketplace).toHaveBeenCalledWith('/plugins/search/advanced', { + body: { + page: 1, + page_size: 10, + query: 'test', + type: 'plugin', + }, + }) + }) + + it('should return empty array when user has no plugin data', async () => { + // Mock marketplace returning empty data + mockPostMarketplace.mockResolvedValue({ + data: { plugins: [] }, + }) + + const pluginAction = Actions.plugin + const result = await pluginAction.search('@plugin', '', 'en') + + expect(result).toEqual([]) + }) + + it('should return empty array when API returns unexpected data structure', async () => { + // Mock API returning unexpected data structure + mockPostMarketplace.mockResolvedValue({ + data: null, + }) + + const pluginAction = Actions.plugin + const result = await pluginAction.search('@plugin', 'test', 'en') + + expect(result).toEqual([]) + }) + }) + + describe('Other search types error handling', () => { + it('@app search should return empty array when API fails', async () => { + // Mock app API failure + mockFetchAppList.mockRejectedValue(new Error('API Error')) + + const appAction = Actions.app + const result = await appAction.search('@app', 'test', 'en') + + expect(result).toEqual([]) + }) + + it('@knowledge search should return empty array when API fails', async () => { + // Mock knowledge API failure + mockFetchDatasets.mockRejectedValue(new Error('API Error')) + + const knowledgeAction = Actions.knowledge + const result = await knowledgeAction.search('@knowledge', 'test', 'en') + + expect(result).toEqual([]) + }) + }) + + describe('Unified search entry error handling', () => { + it('regular search (without @prefix) should return successful results even when partial APIs fail', async () => { + // Set app and knowledge success, plugin failure + mockFetchAppList.mockResolvedValue({ data: [], has_more: false, limit: 10, page: 1, total: 0 }) + mockFetchDatasets.mockResolvedValue({ data: [], has_more: false, limit: 10, page: 1, total: 0 }) + mockPostMarketplace.mockRejectedValue(new Error('Plugin API failed')) + + const result = await searchAnything('en', 'test') + + // Should return successful results even if plugin search fails + expect(result).toEqual([]) + expect(console.warn).toHaveBeenCalledWith('Plugin search failed:', expect.any(Error)) + }) + + it('@plugin dedicated search should return empty array when API fails', async () => { + // Mock plugin API failure + mockPostMarketplace.mockRejectedValue(new Error('Plugin service unavailable')) + + const pluginAction = Actions.plugin + const result = await searchAnything('en', '@plugin test', pluginAction) + + // Should return empty array instead of throwing error + expect(result).toEqual([]) + }) + + it('@app dedicated search should return empty array when API fails', async () => { + // Mock app API failure + mockFetchAppList.mockRejectedValue(new Error('App service unavailable')) + + const appAction = Actions.app + const result = await searchAnything('en', '@app test', appAction) + + expect(result).toEqual([]) + }) + }) + + describe('Error handling consistency validation', () => { + it('all search types should return empty array when encountering errors', async () => { + // Mock all APIs to fail + mockPostMarketplace.mockRejectedValue(new Error('Plugin API failed')) + mockFetchAppList.mockRejectedValue(new Error('App API failed')) + mockFetchDatasets.mockRejectedValue(new Error('Dataset API failed')) + + const actions = [ + { name: '@plugin', action: Actions.plugin }, + { name: '@app', action: Actions.app }, + { name: '@knowledge', action: Actions.knowledge }, + ] + + for (const { name, action } of actions) { + const result = await action.search(name, 'test', 'en') + expect(result).toEqual([]) + } + }) + }) + + describe('Edge case testing', () => { + it('empty search term should be handled properly', async () => { + mockPostMarketplace.mockResolvedValue({ data: { plugins: [] } }) + + const result = await searchAnything('en', '@plugin ', Actions.plugin) + expect(result).toEqual([]) + }) + + it('network timeout should be handled correctly', async () => { + const timeoutError = new Error('Network timeout') + timeoutError.name = 'TimeoutError' + + mockPostMarketplace.mockRejectedValue(timeoutError) + + const result = await searchAnything('en', '@plugin test', Actions.plugin) + expect(result).toEqual([]) + }) + + it('JSON parsing errors should be handled correctly', async () => { + const parseError = new SyntaxError('Unexpected token in JSON') + mockPostMarketplace.mockRejectedValue(parseError) + + const result = await searchAnything('en', '@plugin test', Actions.plugin) + expect(result).toEqual([]) + }) + }) +}) diff --git a/web/app/(commonLayout)/layout.tsx b/web/app/(commonLayout)/layout.tsx index 64186a1b10..ed1c995e25 100644 --- a/web/app/(commonLayout)/layout.tsx +++ b/web/app/(commonLayout)/layout.tsx @@ -8,6 +8,7 @@ import Header from '@/app/components/header' import { EventEmitterContextProvider } from '@/context/event-emitter' import { ProviderContextProvider } from '@/context/provider-context' import { ModalContextProvider } from '@/context/modal-context' +import GotoAnything from '@/app/components/goto-anything' const Layout = ({ children }: { children: ReactNode }) => { return ( @@ -22,6 +23,7 @@ const Layout = ({ children }: { children: ReactNode }) => {
{children} + diff --git a/web/app/components/base/input/index.tsx b/web/app/components/base/input/index.tsx index 30fd90aff8..ae171b0a76 100644 --- a/web/app/components/base/input/index.tsx +++ b/web/app/components/base/input/index.tsx @@ -32,7 +32,7 @@ export type InputProps = { unit?: string } & Omit, 'size'> & VariantProps -const Input = ({ +const Input = React.forwardRef(({ size, disabled, destructive, @@ -47,12 +47,13 @@ const Input = ({ onChange = noop, unit, ...props -}: InputProps) => { +}, ref) => { const { t } = useTranslation() return (
{showLeftIcon && } ) -} +}) + +Input.displayName = 'Input' export default Input diff --git a/web/app/components/base/modal/index.tsx b/web/app/components/base/modal/index.tsx index e65f79d212..bb23bc3746 100644 --- a/web/app/components/base/modal/index.tsx +++ b/web/app/components/base/modal/index.tsx @@ -15,6 +15,7 @@ type IModal = { children?: React.ReactNode closable?: boolean overflowVisible?: boolean + highPriority?: boolean // For modals that need to appear above dropdowns } export default function Modal({ @@ -27,10 +28,11 @@ export default function Modal({ children, closable = false, overflowVisible = false, + highPriority = false, }: IModal) { return ( - +
= ({ className='block' >
@@ -123,7 +123,7 @@ const TagFilter: FC = ({ {filteredTagList.map(tag => (
selectTag(tag)} >
{tag.name}
@@ -139,7 +139,7 @@ const TagFilter: FC = ({
-
{ +
{ setShowTagManagementModal(true) setOpen(false) }}> diff --git a/web/app/components/goto-anything/actions/app.tsx b/web/app/components/goto-anything/actions/app.tsx new file mode 100644 index 0000000000..6fcefd3534 --- /dev/null +++ b/web/app/components/goto-anything/actions/app.tsx @@ -0,0 +1,58 @@ +import type { ActionItem, AppSearchResult } from './types' +import type { App } from '@/types/app' +import { fetchAppList } from '@/service/apps' +import AppIcon from '../../base/app-icon' +import { AppTypeIcon } from '../../app/type-selector' +import { getRedirectionPath } from '@/utils/app-redirection' + +const parser = (apps: App[]): AppSearchResult[] => { + return apps.map(app => ({ + id: app.id, + title: app.name, + description: app.description, + type: 'app' as const, + path: getRedirectionPath(true, { + id: app.id, + mode: app.mode, + }), + icon: ( +
+ + +
+ ), + data: app, + })) +} + +export const appAction: ActionItem = { + key: '@app', + shortcut: '@app', + title: 'Search Applications', + description: 'Search and navigate to your applications', + // action, + search: async (_, searchTerm = '', _locale) => { + try { + const response = await fetchAppList({ + url: 'apps', + params: { + page: 1, + name: searchTerm, + }, + }) + const apps = response?.data || [] + return parser(apps) + } + catch (error) { + console.warn('App search failed:', error) + return [] + } + }, +} diff --git a/web/app/components/goto-anything/actions/index.ts b/web/app/components/goto-anything/actions/index.ts new file mode 100644 index 0000000000..87369784a1 --- /dev/null +++ b/web/app/components/goto-anything/actions/index.ts @@ -0,0 +1,74 @@ +import { appAction } from './app' +import { knowledgeAction } from './knowledge' +import { pluginAction } from './plugin' +import { workflowNodesAction } from './workflow-nodes' +import type { ActionItem, SearchResult } from './types' + +export const Actions = { + app: appAction, + knowledge: knowledgeAction, + plugin: pluginAction, + node: workflowNodesAction, +} + +export const searchAnything = async ( + locale: string, + query: string, + actionItem?: ActionItem, +): Promise => { + if (actionItem) { + const searchTerm = query.replace(actionItem.key, '').replace(actionItem.shortcut, '').trim() + try { + return await actionItem.search(query, searchTerm, locale) + } + catch (error) { + console.warn(`Search failed for ${actionItem.key}:`, error) + return [] + } + } + + if (query.startsWith('@')) + return [] + + // Use Promise.allSettled to handle partial failures gracefully + const searchPromises = Object.values(Actions).map(async (action) => { + try { + const results = await action.search(query, query, locale) + return { success: true, data: results, actionType: action.key } + } + catch (error) { + console.warn(`Search failed for ${action.key}:`, error) + return { success: false, data: [], actionType: action.key, error } + } + }) + + const settledResults = await Promise.allSettled(searchPromises) + + const allResults: SearchResult[] = [] + const failedActions: string[] = [] + + settledResults.forEach((result, index) => { + if (result.status === 'fulfilled' && result.value.success) { + allResults.push(...result.value.data) + } + else { + const actionKey = Object.values(Actions)[index]?.key || 'unknown' + failedActions.push(actionKey) + } + }) + + if (failedActions.length > 0) + console.warn(`Some search actions failed: ${failedActions.join(', ')}`) + + return allResults +} + +export const matchAction = (query: string, actions: Record) => { + return Object.values(actions).find((action) => { + const reg = new RegExp(`^(${action.key}|${action.shortcut})(?:\\s|$)`) + return reg.test(query) + }) +} + +export * from './types' +export { appAction, knowledgeAction, pluginAction, workflowNodesAction } diff --git a/web/app/components/goto-anything/actions/knowledge.tsx b/web/app/components/goto-anything/actions/knowledge.tsx new file mode 100644 index 0000000000..832f4f82fe --- /dev/null +++ b/web/app/components/goto-anything/actions/knowledge.tsx @@ -0,0 +1,56 @@ +import type { ActionItem, KnowledgeSearchResult } from './types' +import type { DataSet } from '@/models/datasets' +import { fetchDatasets } from '@/service/datasets' +import { Folder } from '../../base/icons/src/vender/solid/files' +import cn from '@/utils/classnames' + +const EXTERNAL_PROVIDER = 'external' as const +const isExternalProvider = (provider: string): boolean => provider === EXTERNAL_PROVIDER + +const parser = (datasets: DataSet[]): KnowledgeSearchResult[] => { + return datasets.map((dataset) => { + const path = isExternalProvider(dataset.provider) ? `/datasets/${dataset.id}/hitTesting` : `/datasets/${dataset.id}/documents` + return { + id: dataset.id, + title: dataset.name, + description: dataset.description, + type: 'knowledge' as const, + path, + icon: ( +
+ +
+ ), + data: dataset, + } + }) +} + +export const knowledgeAction: ActionItem = { + key: '@knowledge', + shortcut: '@kb', + title: 'Search Knowledge Bases', + description: 'Search and navigate to your knowledge bases', + // action, + search: async (_, searchTerm = '', _locale) => { + try { + const response = await fetchDatasets({ + url: '/datasets', + params: { + page: 1, + limit: 10, + keyword: searchTerm, + }, + }) + const datasets = response?.data || [] + return parser(datasets) + } + catch (error) { + console.warn('Knowledge search failed:', error) + return [] + } + }, +} diff --git a/web/app/components/goto-anything/actions/plugin.tsx b/web/app/components/goto-anything/actions/plugin.tsx new file mode 100644 index 0000000000..69edbc3cc0 --- /dev/null +++ b/web/app/components/goto-anything/actions/plugin.tsx @@ -0,0 +1,53 @@ +import type { ActionItem, PluginSearchResult } from './types' +import { renderI18nObject } from '@/i18n-config' +import Icon from '../../plugins/card/base/card-icon' +import { postMarketplace } from '@/service/base' +import type { Plugin, PluginsFromMarketplaceResponse } from '../../plugins/types' +import { getPluginIconInMarketplace } from '../../plugins/marketplace/utils' + +const parser = (plugins: Plugin[], locale: string): PluginSearchResult[] => { + return plugins.map((plugin) => { + return { + id: plugin.name, + title: renderI18nObject(plugin.label, locale) || plugin.name, + description: renderI18nObject(plugin.brief, locale) || '', + type: 'plugin' as const, + icon: , + data: plugin, + } + }) +} + +export const pluginAction: ActionItem = { + key: '@plugin', + shortcut: '@plugin', + title: 'Search Plugins', + description: 'Search and navigate to your plugins', + search: async (_, searchTerm = '', locale) => { + try { + const response = await postMarketplace<{ data: PluginsFromMarketplaceResponse }>('/plugins/search/advanced', { + body: { + page: 1, + page_size: 10, + query: searchTerm, + type: 'plugin', + }, + }) + + if (!response?.data?.plugins) { + console.warn('Plugin search: Unexpected response structure', response) + return [] + } + + const list = response.data.plugins.map(plugin => ({ + ...plugin, + icon: getPluginIconInMarketplace(plugin), + })) + return parser(list, locale!) + } + catch (error) { + console.warn('Plugin search failed:', error) + return [] + } + }, +} diff --git a/web/app/components/goto-anything/actions/types.ts b/web/app/components/goto-anything/actions/types.ts new file mode 100644 index 0000000000..7a838737cb --- /dev/null +++ b/web/app/components/goto-anything/actions/types.ts @@ -0,0 +1,54 @@ +import type { ReactNode } from 'react' +import type { TypeWithI18N } from '../../base/form/types' +import type { App } from '@/types/app' +import type { Plugin } from '../../plugins/types' +import type { DataSet } from '@/models/datasets' +import type { CommonNodeType } from '../../workflow/types' + +export type SearchResultType = 'app' | 'knowledge' | 'plugin' | 'workflow-node' + +export type BaseSearchResult = { + id: string + title: string + description?: string + type: SearchResultType + path?: string + icon?: ReactNode + data: T +} + +export type AppSearchResult = { + type: 'app' +} & BaseSearchResult + +export type PluginSearchResult = { + type: 'plugin' +} & BaseSearchResult + +export type KnowledgeSearchResult = { + type: 'knowledge' +} & BaseSearchResult + +export type WorkflowNodeSearchResult = { + type: 'workflow-node' + metadata?: { + nodeId: string + nodeData: CommonNodeType + } +} & BaseSearchResult + +export type SearchResult = AppSearchResult | PluginSearchResult | KnowledgeSearchResult | WorkflowNodeSearchResult + +export type ActionItem = { + key: '@app' | '@knowledge' | '@plugin' | '@node' + shortcut: string + title: string | TypeWithI18N + description: string + action?: (data: SearchResult) => void + searchFn?: (searchTerm: string) => SearchResult[] + search: ( + query: string, + searchTerm: string, + locale?: string, + ) => (Promise | SearchResult[]) +} diff --git a/web/app/components/goto-anything/actions/workflow-nodes.tsx b/web/app/components/goto-anything/actions/workflow-nodes.tsx new file mode 100644 index 0000000000..29b6517be1 --- /dev/null +++ b/web/app/components/goto-anything/actions/workflow-nodes.tsx @@ -0,0 +1,24 @@ +import type { ActionItem } from './types' + +// Create the workflow nodes action +export const workflowNodesAction: ActionItem = { + key: '@node', + shortcut: '@node', + title: 'Search Workflow Nodes', + description: 'Find and jump to nodes in the current workflow by name or type', + searchFn: undefined, // Will be set by useWorkflowSearch hook + search: async (_, searchTerm = '', locale) => { + try { + // Use the searchFn if available (set by useWorkflowSearch hook) + if (workflowNodesAction.searchFn) + return workflowNodesAction.searchFn(searchTerm) + + // If not in workflow context, return empty array + return [] + } + catch (error) { + console.warn('Workflow nodes search failed:', error) + return [] + } + }, +} diff --git a/web/app/components/goto-anything/command-selector.tsx b/web/app/components/goto-anything/command-selector.tsx new file mode 100644 index 0000000000..d66a22eab7 --- /dev/null +++ b/web/app/components/goto-anything/command-selector.tsx @@ -0,0 +1,88 @@ +import type { FC } from 'react' +import { useEffect } from 'react' +import { Command } from 'cmdk' +import { useTranslation } from 'react-i18next' +import type { ActionItem } from './actions/types' + +type Props = { + actions: Record + onCommandSelect: (commandKey: string) => void + searchFilter?: string + commandValue?: string + onCommandValueChange?: (value: string) => void +} + +const CommandSelector: FC = ({ actions, onCommandSelect, searchFilter, commandValue, onCommandValueChange }) => { + const { t } = useTranslation() + + const filteredActions = Object.values(actions).filter((action) => { + if (!searchFilter) + return true + const filterLower = searchFilter.toLowerCase() + return action.shortcut.toLowerCase().includes(filterLower) + || action.key.toLowerCase().includes(filterLower) + }) + + useEffect(() => { + if (filteredActions.length > 0 && onCommandValueChange) { + const currentValueExists = filteredActions.some(action => action.shortcut === commandValue) + if (!currentValueExists) + onCommandValueChange(filteredActions[0].shortcut) + } + }, [searchFilter, filteredActions.length]) + + if (filteredActions.length === 0) { + return ( +
+
+
+
+ {t('app.gotoAnything.noMatchingCommands')} +
+
+ {t('app.gotoAnything.tryDifferentSearch')} +
+
+
+
+ ) + } + + return ( +
+
+ {t('app.gotoAnything.selectSearchType')} +
+ + {filteredActions.map(action => ( + onCommandSelect(action.shortcut)} + > + + {action.shortcut} + + + {(() => { + const keyMap: Record = { + '@app': 'app.gotoAnything.actions.searchApplicationsDesc', + '@plugin': 'app.gotoAnything.actions.searchPluginsDesc', + '@knowledge': 'app.gotoAnything.actions.searchKnowledgeBasesDesc', + '@node': 'app.gotoAnything.actions.searchWorkflowNodesDesc', + } + return t(keyMap[action.key]) + })()} + + + ))} + +
+ ) +} + +export default CommandSelector diff --git a/web/app/components/goto-anything/context.tsx b/web/app/components/goto-anything/context.tsx new file mode 100644 index 0000000000..bfe41bcfb8 --- /dev/null +++ b/web/app/components/goto-anything/context.tsx @@ -0,0 +1,50 @@ +'use client' + +import type { ReactNode } from 'react' +import React, { createContext, useContext, useEffect, useState } from 'react' +import { usePathname } from 'next/navigation' + +/** + * Interface for the GotoAnything context + */ +type GotoAnythingContextType = { + /** + * Whether the current page is a workflow page + */ + isWorkflowPage: boolean +} + +// Create context with default values +const GotoAnythingContext = createContext({ + isWorkflowPage: false, +}) + +/** + * Hook to use the GotoAnything context + */ +export const useGotoAnythingContext = () => useContext(GotoAnythingContext) + +type GotoAnythingProviderProps = { + children: ReactNode +} + +/** + * Provider component for GotoAnything context + */ +export const GotoAnythingProvider: React.FC = ({ children }) => { + const [isWorkflowPage, setIsWorkflowPage] = useState(false) + const pathname = usePathname() + + // Update context based on current pathname + useEffect(() => { + // Check if current path contains workflow + const isWorkflow = pathname?.includes('/workflow') || false + setIsWorkflowPage(isWorkflow) + }, [pathname]) + + return ( + + {children} + + ) +} diff --git a/web/app/components/goto-anything/index.tsx b/web/app/components/goto-anything/index.tsx new file mode 100644 index 0000000000..29789e11ed --- /dev/null +++ b/web/app/components/goto-anything/index.tsx @@ -0,0 +1,408 @@ +'use client' + +import type { FC } from 'react' +import { useCallback, useEffect, useMemo, useRef, useState } from 'react' +import { useRouter } from 'next/navigation' +import Modal from '@/app/components/base/modal' +import Input from '@/app/components/base/input' +import { useDebounce, useKeyPress } from 'ahooks' +import { getKeyboardKeyCodeBySystem, isEventTargetInputArea, isMac } from '@/app/components/workflow/utils/common' +import { selectWorkflowNode } from '@/app/components/workflow/utils/node-navigation' +import { RiSearchLine } from '@remixicon/react' +import { Actions as AllActions, type SearchResult, matchAction, searchAnything } from './actions' +import { GotoAnythingProvider, useGotoAnythingContext } from './context' +import { useQuery } from '@tanstack/react-query' +import { useGetLanguage } from '@/context/i18n' +import { useTranslation } from 'react-i18next' +import InstallFromMarketplace from '../plugins/install-plugin/install-from-marketplace' +import type { Plugin } from '../plugins/types' +import { Command } from 'cmdk' +import CommandSelector from './command-selector' + +type Props = { + onHide?: () => void +} +const GotoAnything: FC = ({ + onHide, +}) => { + const router = useRouter() + const defaultLocale = useGetLanguage() + const { isWorkflowPage } = useGotoAnythingContext() + const { t } = useTranslation() + const [show, setShow] = useState(false) + const [searchQuery, setSearchQuery] = useState('') + const [cmdVal, setCmdVal] = useState('') + const inputRef = useRef(null) + + // Filter actions based on context + const Actions = useMemo(() => { + // Create a filtered copy of actions based on current page context + if (isWorkflowPage) { + // Include all actions on workflow pages + return AllActions + } + else { + // Exclude node action on non-workflow pages + const { app, knowledge, plugin } = AllActions + return { app, knowledge, plugin } + } + }, [isWorkflowPage]) + + const [activePlugin, setActivePlugin] = useState() + + // Handle keyboard shortcuts + const handleToggleModal = useCallback((e: KeyboardEvent) => { + // Allow closing when modal is open, even if focus is in the search input + if (!show && isEventTargetInputArea(e.target as HTMLElement)) + return + e.preventDefault() + setShow((prev) => { + if (!prev) { + // Opening modal - reset search state + setSearchQuery('') + } + return !prev + }) + }, [show]) + + useKeyPress(`${getKeyboardKeyCodeBySystem('ctrl')}.k`, handleToggleModal, { + exactMatch: true, + useCapture: true, + }) + + useKeyPress(['esc'], (e) => { + if (show) { + e.preventDefault() + setShow(false) + setSearchQuery('') + } + }) + + const searchQueryDebouncedValue = useDebounce(searchQuery.trim(), { + wait: 300, + }) + + const isCommandsMode = searchQuery.trim() === '@' || (searchQuery.trim().startsWith('@') && !matchAction(searchQuery.trim(), Actions)) + + const searchMode = useMemo(() => { + if (isCommandsMode) return 'commands' + + const query = searchQueryDebouncedValue.toLowerCase() + const action = matchAction(query, Actions) + return action ? action.key : 'general' + }, [searchQueryDebouncedValue, Actions, isCommandsMode]) + + const { data: searchResults = [], isLoading, isError, error } = useQuery( + { + queryKey: [ + 'goto-anything', + 'search-result', + searchQueryDebouncedValue, + searchMode, + isWorkflowPage, + defaultLocale, + Object.keys(Actions).sort().join(','), + ], + queryFn: async () => { + const query = searchQueryDebouncedValue.toLowerCase() + const action = matchAction(query, Actions) + return await searchAnything(defaultLocale, query, action) + }, + enabled: !!searchQueryDebouncedValue && !isCommandsMode, + staleTime: 30000, + gcTime: 300000, + }, + ) + + const handleCommandSelect = useCallback((commandKey: string) => { + setSearchQuery(`${commandKey} `) + setCmdVal('') + setTimeout(() => { + inputRef.current?.focus() + }, 0) + }, []) + + // Handle navigation to selected result + const handleNavigate = useCallback((result: SearchResult) => { + setShow(false) + setSearchQuery('') + + switch (result.type) { + case 'plugin': + setActivePlugin(result.data) + break + case 'workflow-node': + // Handle workflow node selection and navigation + if (result.metadata?.nodeId) + selectWorkflowNode(result.metadata.nodeId, true) + + break + default: + if (result.path) + router.push(result.path) + } + }, [router]) + + // Group results by type + const groupedResults = useMemo(() => searchResults.reduce((acc, result) => { + if (!acc[result.type]) + acc[result.type] = [] + + acc[result.type].push(result) + return acc + }, {} as { [key: string]: SearchResult[] }), + [searchResults]) + + const emptyResult = useMemo(() => { + if (searchResults.length || !searchQuery.trim() || isLoading || isCommandsMode) + return null + + const isCommandSearch = searchMode !== 'general' + const commandType = isCommandSearch ? searchMode.replace('@', '') : '' + + if (isError) { + return ( +
+
+
{t('app.gotoAnything.searchTemporarilyUnavailable')}
+
+ {t('app.gotoAnything.servicesUnavailableMessage')} +
+
+
+ ) + } + + return ( +
+
+
+ {isCommandSearch + ? (() => { + const keyMap: Record = { + app: 'app.gotoAnything.emptyState.noAppsFound', + plugin: 'app.gotoAnything.emptyState.noPluginsFound', + knowledge: 'app.gotoAnything.emptyState.noKnowledgeBasesFound', + node: 'app.gotoAnything.emptyState.noWorkflowNodesFound', + } + return t(keyMap[commandType] || 'app.gotoAnything.noResults') + })() + : t('app.gotoAnything.noResults') + } +
+
+ {isCommandSearch + ? t('app.gotoAnything.emptyState.tryDifferentTerm', { mode: searchMode }) + : t('app.gotoAnything.emptyState.trySpecificSearch', { shortcuts: Object.values(Actions).map(action => action.shortcut).join(', ') }) + } +
+
+
+ ) + }, [searchResults, searchQuery, Actions, searchMode, isLoading, isError, isCommandsMode]) + + const defaultUI = useMemo(() => { + if (searchQuery.trim()) + return null + + return (
+
+
{t('app.gotoAnything.searchTitle')}
+
+
{t('app.gotoAnything.searchHint')}
+
{t('app.gotoAnything.commandHint')}
+
+
+
) + }, [searchQuery, Actions]) + + useEffect(() => { + if (show) { + requestAnimationFrame(() => { + inputRef.current?.focus() + }) + } + return () => { + setCmdVal('') + } + }, [show]) + + return ( + <> + { + setShow(false) + setSearchQuery('') + onHide?.() + }} + closable={false} + className='!w-[480px] !p-0' + highPriority={true} + > +
+ +
+ +
+ { + setSearchQuery(e.target.value) + if (!e.target.value.startsWith('@')) + setCmdVal('') + }} + className='flex-1 !border-0 !bg-transparent !shadow-none' + wrapperClassName='flex-1 !border-0 !bg-transparent' + autoFocus + /> + {searchMode !== 'general' && ( +
+ {searchMode.replace('@', '').toUpperCase()} +
+ )} +
+
+ + {isMac() ? '⌘' : 'Ctrl'} + + + K + +
+
+ + + {isLoading && ( +
+
+
+ {t('app.gotoAnything.searching')} +
+
+ )} + {isError && ( +
+
+
{t('app.gotoAnything.searchFailed')}
+
+ {error.message} +
+
+
+ )} + {!isLoading && !isError && ( + <> + {isCommandsMode ? ( + + ) : ( + Object.entries(groupedResults).map(([type, results], groupIndex) => ( + { + const typeMap: Record = { + 'app': 'app.gotoAnything.groups.apps', + 'plugin': 'app.gotoAnything.groups.plugins', + 'knowledge': 'app.gotoAnything.groups.knowledgeBases', + 'workflow-node': 'app.gotoAnything.groups.workflowNodes', + } + return t(typeMap[type] || `${type}s`) + })()} className='p-2 capitalize text-text-secondary'> + {results.map(result => ( + handleNavigate(result)} + > + {result.icon} +
+
+ {result.title} +
+ {result.description && ( +
+ {result.description} +
+ )} +
+
+ {result.type} +
+
+ ))} +
+ )) + )} + {!isCommandsMode && emptyResult} + {!isCommandsMode && defaultUI} + + )} +
+ + {(!!searchResults.length || isError) && ( +
+
+ + {isError ? ( + {t('app.gotoAnything.someServicesUnavailable')} + ) : ( + <> + {t('app.gotoAnything.resultCount', { count: searchResults.length })} + {searchMode !== 'general' && ( + +{t('app.gotoAnything.inScope', { scope: searchMode.replace('@', '') })} + + )} + + )} + + + {searchMode !== 'general' + ? t('app.gotoAnything.clearToSearchAll') + : t('app.gotoAnything.useAtForSpecific') + } + +
+
+ )} +
+
+ +
+ { + activePlugin && ( + setActivePlugin(undefined)} + onSuccess={() => setActivePlugin(undefined)} + /> + ) + } + + ) +} + +/** + * GotoAnything component with context provider + */ +const GotoAnythingWithContext: FC = (props) => { + return ( + + + + ) +} + +export default GotoAnythingWithContext diff --git a/web/app/components/header/account-setting/model-provider-page/model-parameter-modal/parameter-item.tsx b/web/app/components/header/account-setting/model-provider-page/model-parameter-modal/parameter-item.tsx index 7cfb906206..4bb3cbf7d5 100644 --- a/web/app/components/header/account-setting/model-provider-page/model-parameter-modal/parameter-item.tsx +++ b/web/app/components/header/account-setting/model-provider-page/model-parameter-modal/parameter-item.tsx @@ -1,6 +1,7 @@ import type { FC } from 'react' import { useEffect, useRef, useState } from 'react' import type { ModelParameterRule } from '../declarations' +import { useLanguage } from '../hooks' import { isNullOrUndefined } from '../utils' import cn from '@/utils/classnames' import Switch from '@/app/components/base/switch' @@ -26,6 +27,7 @@ const ParameterItem: FC = ({ onSwitch, isInWorkflow, }) => { + const language = useLanguage() const [localValue, setLocalValue] = useState(value) const numberInputRef = useRef(null) diff --git a/web/app/components/plugins/marketplace/search-box/tags-filter.tsx b/web/app/components/plugins/marketplace/search-box/tags-filter.tsx index 12b84490a4..2e1f74bc8e 100644 --- a/web/app/components/plugins/marketplace/search-box/tags-filter.tsx +++ b/web/app/components/plugins/marketplace/search-box/tags-filter.tsx @@ -54,7 +54,7 @@ const TagsFilter = ({ onClick={() => setOpen(v => !v)} >
(
handleCheck(option.name)} > setOpen(v => !v)}>
@@ -99,7 +99,7 @@ const TagsFilter = ({ filteredOptions.map(option => (
handleCheck(option.name)} > = ({ className='block' >
@@ -111,7 +111,7 @@ const LabelFilter: FC = ({ {filteredLabelList.map(label => (
selectLabel(label)} >
{label.label}
diff --git a/web/app/components/workflow/hooks/index.ts b/web/app/components/workflow/hooks/index.ts index d58bfa51cb..784a1c3138 100644 --- a/web/app/components/workflow/hooks/index.ts +++ b/web/app/components/workflow/hooks/index.ts @@ -18,3 +18,4 @@ export * from './use-workflow-mode' export * from './use-workflow-refresh-draft' export * from './use-inspect-vars-crud' export * from './use-set-workflow-vars-with-value' +export * from './use-workflow-search' diff --git a/web/app/components/workflow/hooks/use-workflow-search.tsx b/web/app/components/workflow/hooks/use-workflow-search.tsx new file mode 100644 index 0000000000..b512d3d140 --- /dev/null +++ b/web/app/components/workflow/hooks/use-workflow-search.tsx @@ -0,0 +1,135 @@ +'use client' + +import { useCallback, useEffect, useMemo } from 'react' +import { useNodes } from 'reactflow' +import { useNodesInteractions } from './use-nodes-interactions' +import type { CommonNodeType } from '../types' +import { workflowNodesAction } from '@/app/components/goto-anything/actions/workflow-nodes' +import BlockIcon from '@/app/components/workflow/block-icon' +import { setupNodeSelectionListener } from '../utils/node-navigation' + +/** + * Hook to register workflow nodes search functionality + */ +export const useWorkflowSearch = () => { + const nodes = useNodes() + const { handleNodeSelect } = useNodesInteractions() + + // Filter and process nodes for search + const searchableNodes = useMemo(() => { + const filteredNodes = nodes.filter((node) => { + if (!node.id || !node.data || node.type === 'sticky') return false + + const nodeData = node.data as CommonNodeType + const nodeType = nodeData?.type + + const internalStartNodes = ['iteration-start', 'loop-start'] + return !internalStartNodes.includes(nodeType) + }) + + const result = filteredNodes + .map((node) => { + const nodeData = node.data as CommonNodeType + + return { + id: node.id, + title: nodeData?.title || nodeData?.type || 'Untitled', + type: nodeData?.type || '', + desc: nodeData?.desc || '', + blockType: nodeData?.type, + nodeData, + } + }) + + return result + }, [nodes]) + + // Create search function for workflow nodes + const searchWorkflowNodes = useCallback((query: string) => { + if (!searchableNodes.length) return [] + + const searchTerm = query.toLowerCase().trim() + + const results = searchableNodes + .map((node) => { + const titleMatch = node.title.toLowerCase() + const typeMatch = node.type.toLowerCase() + const descMatch = node.desc?.toLowerCase() || '' + + let score = 0 + + // If no search term, show all nodes with base score + if (!searchTerm) { + score = 1 + } + else { + // Score based on search relevance + if (titleMatch.startsWith(searchTerm)) score += 100 + else if (titleMatch.includes(searchTerm)) score += 50 + else if (typeMatch === searchTerm) score += 80 + else if (typeMatch.includes(searchTerm)) score += 30 + else if (descMatch.includes(searchTerm)) score += 20 + } + + return score > 0 + ? { + id: node.id, + title: node.title, + description: node.desc || node.type, + type: 'workflow-node' as const, + path: `#${node.id}`, + icon: ( + + ), + metadata: { + nodeId: node.id, + nodeData: node.nodeData, + }, + // Add required data property for SearchResult type + data: node.nodeData, + } + : null + }) + .filter((node): node is NonNullable => node !== null) + .sort((a, b) => { + // If no search term, sort alphabetically + if (!searchTerm) + return a.title.localeCompare(b.title) + + // Sort by relevance when searching + const aTitle = a.title.toLowerCase() + const bTitle = b.title.toLowerCase() + + if (aTitle.startsWith(searchTerm) && !bTitle.startsWith(searchTerm)) return -1 + if (!aTitle.startsWith(searchTerm) && bTitle.startsWith(searchTerm)) return 1 + + return 0 + }) + + return results + }, [searchableNodes]) + + // Directly set the search function on the action object + useEffect(() => { + if (searchableNodes.length > 0) { + // Set the search function directly on the action + workflowNodesAction.searchFn = searchWorkflowNodes + } + + return () => { + // Clean up when component unmounts + workflowNodesAction.searchFn = undefined + } + }, [searchableNodes, searchWorkflowNodes]) + + // Set up node selection event listener using the utility function + useEffect(() => { + return setupNodeSelectionListener(handleNodeSelect) + }, [handleNodeSelect]) + + return null +} diff --git a/web/app/components/workflow/index.tsx b/web/app/components/workflow/index.tsx index 2ebb040f07..d58329b044 100644 --- a/web/app/components/workflow/index.tsx +++ b/web/app/components/workflow/index.tsx @@ -58,6 +58,7 @@ import { CUSTOM_LOOP_START_NODE } from './nodes/loop-start/constants' import CustomSimpleNode from './simple-node' import { CUSTOM_SIMPLE_NODE } from './simple-node/constants' import Operator from './operator' +import { useWorkflowSearch } from './hooks/use-workflow-search' import Control from './operator/control' import CustomEdge from './custom-edge' import CustomConnectionLine from './custom-connection-line' @@ -68,6 +69,7 @@ import NodeContextmenu from './node-contextmenu' import SelectionContextmenu from './selection-contextmenu' import SyncingDataModal from './syncing-data-modal' import LimitTips from './limit-tips' +import { setupScrollToNodeListener } from './utils/node-navigation' import { useStore, useWorkflowStore, @@ -280,6 +282,14 @@ export const Workflow: FC = memo(({ }) useShortcuts() + // Initialize workflow node search functionality + useWorkflowSearch() + + // Set up scroll to node event listener using the utility function + useEffect(() => { + return setupScrollToNodeListener(nodes, reactflow) + }, [nodes, reactflow]) + const { fetchInspectVars } = useSetWorkflowVarsWithValue() useEffect(() => { fetchInspectVars() diff --git a/web/app/components/workflow/nodes/tool/components/mixed-variable-text-input/placeholder.tsx b/web/app/components/workflow/nodes/tool/components/mixed-variable-text-input/placeholder.tsx index 3337d6ae66..75d4c91996 100644 --- a/web/app/components/workflow/nodes/tool/components/mixed-variable-text-input/placeholder.tsx +++ b/web/app/components/workflow/nodes/tool/components/mixed-variable-text-input/placeholder.tsx @@ -31,7 +31,8 @@ const Placeholder = () => {
/
{ + onMouseDown={((e) => { + e.preventDefault() e.stopPropagation() handleInsert('/') })} diff --git a/web/app/components/workflow/operator/index.tsx b/web/app/components/workflow/operator/index.tsx index 4a472a755f..1100a7a905 100644 --- a/web/app/components/workflow/operator/index.tsx +++ b/web/app/components/workflow/operator/index.tsx @@ -52,7 +52,9 @@ const Operator = ({ handleUndo, handleRedo }: OperatorProps) => { } >
- +
+ +
{ const historyWorkflowData = useStore(s => s.historyWorkflowData) const { handleUpdateWorkflowCanvas } = useWorkflowUpdate() - const handleResultCallback = useCallback((res: any) => { - const graph: WorkflowDataUpdater = res.graph + const handleResultCallback = useCallback((res: WorkflowRunDetailResponse) => { + const graph = res.graph handleUpdateWorkflowCanvas({ nodes: graph.nodes, edges: graph.edges, - viewport: graph.viewport, + viewport: graph.viewport || { x: 0, y: 0, zoom: 1 }, }) }, [handleUpdateWorkflowCanvas]) diff --git a/web/app/components/workflow/utils/node-navigation.ts b/web/app/components/workflow/utils/node-navigation.ts new file mode 100644 index 0000000000..5522764949 --- /dev/null +++ b/web/app/components/workflow/utils/node-navigation.ts @@ -0,0 +1,124 @@ +/** + * Node navigation utilities for workflow + * This module provides functions for node selection, focusing and scrolling in workflow + */ + +/** + * Interface for node selection event detail + */ +export type NodeSelectionDetail = { + nodeId: string; + focus?: boolean; +} + +/** + * Select a node in the workflow + * @param nodeId - The ID of the node to select + * @param focus - Whether to focus/scroll to the node + */ +export function selectWorkflowNode(nodeId: string, focus = false): void { + // Create and dispatch a custom event for node selection + const event = new CustomEvent('workflow:select-node', { + detail: { + nodeId, + focus, + }, + }) + document.dispatchEvent(event) +} + +/** + * Scroll to a specific node in the workflow + * @param nodeId - The ID of the node to scroll to + */ +export function scrollToWorkflowNode(nodeId: string): void { + // Create and dispatch a custom event for scrolling to node + const event = new CustomEvent('workflow:scroll-to-node', { + detail: { nodeId }, + }) + document.dispatchEvent(event) +} + +/** + * Setup node selection event listener + * @param handleNodeSelect - Function to handle node selection + * @returns Cleanup function + */ +export function setupNodeSelectionListener( + handleNodeSelect: (nodeId: string) => void, +): () => void { + // Event handler for node selection + const handleNodeSelection = (event: CustomEvent) => { + const { nodeId, focus } = event.detail + if (nodeId) { + // Select the node + handleNodeSelect(nodeId) + + // If focus is requested, scroll to the node + if (focus) { + // Use a small timeout to ensure node selection happens first + setTimeout(() => { + scrollToWorkflowNode(nodeId) + }, 100) + } + } + } + + // Add event listener + document.addEventListener( + 'workflow:select-node', + handleNodeSelection as EventListener, + ) + + // Return cleanup function + return () => { + document.removeEventListener( + 'workflow:select-node', + handleNodeSelection as EventListener, + ) + } +} + +/** + * Setup scroll to node event listener with ReactFlow + * @param nodes - The workflow nodes + * @param reactflow - The ReactFlow instance + * @returns Cleanup function + */ +export function setupScrollToNodeListener( + nodes: any[], + reactflow: any, +): () => void { + // Event handler for scrolling to node + const handleScrollToNode = (event: CustomEvent) => { + const { nodeId } = event.detail + if (nodeId) { + // Find the target node + const node = nodes.find(n => n.id === nodeId) + if (node) { + // Use ReactFlow's fitView API to scroll to the node + reactflow.fitView({ + nodes: [node], + padding: 0.2, + duration: 800, + minZoom: 0.5, + maxZoom: 1, + }) + } + } + } + + // Add event listener + document.addEventListener( + 'workflow:scroll-to-node', + handleScrollToNode as EventListener, + ) + + // Return cleanup function + return () => { + document.removeEventListener( + 'workflow:scroll-to-node', + handleScrollToNode as EventListener, + ) + } +} diff --git a/web/i18n/de-DE/app.ts b/web/i18n/de-DE/app.ts index c3826e658e..9eab16c694 100644 --- a/web/i18n/de-DE/app.ts +++ b/web/i18n/de-DE/app.ts @@ -254,6 +254,49 @@ const translation = { maxActiveRequests: 'Maximale gleichzeitige Anfragen', maxActiveRequestsPlaceholder: 'Geben Sie 0 für unbegrenzt ein', maxActiveRequestsTip: 'Maximale Anzahl gleichzeitiger aktiver Anfragen pro App (0 für unbegrenzt)', + gotoAnything: { + actions: { + searchPlugins: 'Such-Plugins', + searchKnowledgeBases: 'Wissensdatenbanken durchsuchen', + searchWorkflowNodes: 'Workflow-Knoten durchsuchen', + searchKnowledgeBasesDesc: 'Suchen und navigieren Sie zu Ihren Wissensdatenbanken', + searchApplications: 'Anwendungen suchen', + searchWorkflowNodesHelp: 'Diese Funktion funktioniert nur, wenn ein Workflow angezeigt wird. Navigieren Sie zuerst zu einem Workflow.', + searchApplicationsDesc: 'Suchen und navigieren Sie zu Ihren Anwendungen', + searchPluginsDesc: 'Suchen und navigieren Sie zu Ihren Plugins', + searchWorkflowNodesDesc: 'Suchen und Springen zu Knoten im aktuellen Workflow nach Name oder Typ', + }, + emptyState: { + noPluginsFound: 'Keine Plugins gefunden', + noWorkflowNodesFound: 'Keine Workflow-Knoten gefunden', + noKnowledgeBasesFound: 'Keine Wissensdatenbanken gefunden', + noAppsFound: 'Keine Apps gefunden', + tryDifferentTerm: 'Versuchen Sie einen anderen Suchbegriff oder entfernen Sie den {{mode}}-Filter', + trySpecificSearch: 'Versuchen Sie {{shortcuts}} für spezifische Suchen', + }, + groups: { + knowledgeBases: 'Wissensdatenbanken', + plugins: 'Plugins', + apps: 'Apps', + workflowNodes: 'Workflow-Knoten', + }, + clearToSearchAll: 'Löschen Sie @, um alle zu durchsuchen', + searchTemporarilyUnavailable: 'Suche vorübergehend nicht verfügbar', + searchFailed: 'Suche fehlgeschlagen', + someServicesUnavailable: 'Einige Suchdienste sind nicht verfügbar', + servicesUnavailableMessage: 'Bei einigen Suchdiensten können Probleme auftreten. Versuchen Sie es gleich noch einmal.', + noResults: 'Keine Ergebnisse gefunden', + searchPlaceholder: 'Suchen Sie nach Befehlen, oder geben Sie @ ein...', + useAtForSpecific: 'Verwenden von @ für bestimmte Typen', + searchTitle: 'Suchen Sie nach irgendetwas', + searching: 'Suche...', + selectSearchType: 'Wählen Sie aus, wonach gesucht werden soll', + commandHint: 'Geben Sie @ ein, um nach Kategorie zu suchen', + searchHint: 'Beginnen Sie mit der Eingabe, um alles sofort zu durchsuchen', + resultCount: '{{count}} Ergebnis', + resultCount_other: '{{count}} Ergebnisse', + inScope: 'in {{scope}}s', + }, } export default translation diff --git a/web/i18n/de-DE/workflow.ts b/web/i18n/de-DE/workflow.ts index 7dada39329..ae62911378 100644 --- a/web/i18n/de-DE/workflow.ts +++ b/web/i18n/de-DE/workflow.ts @@ -991,6 +991,10 @@ const translation = { noDependents: 'Keine Angehörigen', }, relationsTab: 'Beziehungen', + copyLastRun: 'Letzte Ausführung kopieren', + copyLastRunError: 'Fehler beim Kopieren der letzten Lauf-Eingaben', + noMatchingInputsFound: 'Keine übereinstimmenden Eingaben aus dem letzten Lauf gefunden.', + noLastRunFound: 'Kein vorheriger Lauf gefunden', }, } diff --git a/web/i18n/en-US/app.ts b/web/i18n/en-US/app.ts index 28b8b84051..eb4f3c404b 100644 --- a/web/i18n/en-US/app.ts +++ b/web/i18n/en-US/app.ts @@ -252,6 +252,49 @@ const translation = { maxActiveRequests: 'Max concurrent requests', maxActiveRequestsPlaceholder: 'Enter 0 for unlimited', maxActiveRequestsTip: 'Maximum number of concurrent active requests per app (0 for unlimited)', + gotoAnything: { + searchPlaceholder: 'Search or type @ for commands...', + searchTitle: 'Search for anything', + searching: 'Searching...', + noResults: 'No results found', + searchFailed: 'Search failed', + searchTemporarilyUnavailable: 'Search temporarily unavailable', + servicesUnavailableMessage: 'Some search services may be experiencing issues. Try again in a moment.', + someServicesUnavailable: 'Some search services unavailable', + resultCount: '{{count}} result', + resultCount_other: '{{count}} results', + inScope: 'in {{scope}}s', + clearToSearchAll: 'Clear @ to search all', + useAtForSpecific: 'Use @ for specific types', + selectSearchType: 'Choose what to search for', + searchHint: 'Start typing to search everything instantly', + commandHint: 'Type @ to browse by category', + actions: { + searchApplications: 'Search Applications', + searchApplicationsDesc: 'Search and navigate to your applications', + searchPlugins: 'Search Plugins', + searchPluginsDesc: 'Search and navigate to your plugins', + searchKnowledgeBases: 'Search Knowledge Bases', + searchKnowledgeBasesDesc: 'Search and navigate to your knowledge bases', + searchWorkflowNodes: 'Search Workflow Nodes', + searchWorkflowNodesDesc: 'Find and jump to nodes in the current workflow by name or type', + searchWorkflowNodesHelp: 'This feature only works when viewing a workflow. Navigate to a workflow first.', + }, + emptyState: { + noAppsFound: 'No apps found', + noPluginsFound: 'No plugins found', + noKnowledgeBasesFound: 'No knowledge bases found', + noWorkflowNodesFound: 'No workflow nodes found', + tryDifferentTerm: 'Try a different search term or remove the {{mode}} filter', + trySpecificSearch: 'Try {{shortcuts}} for specific searches', + }, + groups: { + apps: 'Apps', + plugins: 'Plugins', + knowledgeBases: 'Knowledge Bases', + workflowNodes: 'Workflow Nodes', + }, + }, } export default translation diff --git a/web/i18n/en-US/workflow.ts b/web/i18n/en-US/workflow.ts index 467044d89a..d1229ec148 100644 --- a/web/i18n/en-US/workflow.ts +++ b/web/i18n/en-US/workflow.ts @@ -958,6 +958,11 @@ const translation = { settingsTab: 'Settings', lastRunTab: 'Last Run', relationsTab: 'Relations', + copyLastRun: 'Copy Last Run', + noLastRunFound: 'No previous run found', + noMatchingInputsFound: 'No matching inputs found from last run', + lastRunInputsCopied: '{{count}} input(s) copied from last run', + copyLastRunError: 'Failed to copy last run inputs', noData: { description: 'The results of the last run will be displayed here', runThisNode: 'Run this node', diff --git a/web/i18n/es-ES/app.ts b/web/i18n/es-ES/app.ts index f2df9a45a7..d08149da88 100644 --- a/web/i18n/es-ES/app.ts +++ b/web/i18n/es-ES/app.ts @@ -252,6 +252,49 @@ const translation = { maxActiveRequestsPlaceholder: 'Introduce 0 para ilimitado', maxActiveRequests: 'Máximas solicitudes concurrentes', maxActiveRequestsTip: 'Número máximo de solicitudes activas concurrentes por aplicación (0 para ilimitado)', + gotoAnything: { + actions: { + searchApplications: 'Aplicaciones de búsqueda', + searchKnowledgeBasesDesc: 'Busque y navegue por sus bases de conocimiento', + searchWorkflowNodes: 'Buscar nodos de flujo de trabajo', + searchPlugins: 'Complementos de búsqueda', + searchWorkflowNodesDesc: 'Buscar y saltar a nodos en el flujo de trabajo actual por nombre o tipo', + searchKnowledgeBases: 'Buscar en las bases de conocimiento', + searchApplicationsDesc: 'Buscar y navegar a sus aplicaciones', + searchPluginsDesc: 'Busca y navega a tus plugins', + searchWorkflowNodesHelp: 'Esta función solo funciona cuando se visualiza un flujo de trabajo. Primero vaya a un flujo de trabajo.', + }, + emptyState: { + noAppsFound: 'No se encontraron aplicaciones', + noPluginsFound: 'No se encontraron complementos', + noWorkflowNodesFound: 'No se encontraron nodos de flujo de trabajo', + noKnowledgeBasesFound: 'No se han encontrado bases de conocimiento', + tryDifferentTerm: 'Intenta un término de búsqueda diferente o elimina el filtro {{mode}}', + trySpecificSearch: 'Prueba {{shortcuts}} para búsquedas específicas', + }, + groups: { + apps: 'Aplicaciones', + workflowNodes: 'Nodos de flujo de trabajo', + knowledgeBases: 'Bases de conocimiento', + plugins: 'Complementos', + }, + clearToSearchAll: 'Borrar @ para buscar todo', + noResults: 'No se han encontrado resultados', + searching: 'Buscando...', + searchTemporarilyUnavailable: 'La búsqueda no está disponible temporalmente', + searchFailed: 'Error de búsqueda', + useAtForSpecific: 'Use @ para tipos específicos', + searchPlaceholder: 'Busque o escriba @ para los comandos...', + searchTitle: 'Busca cualquier cosa', + someServicesUnavailable: 'Algunos servicios de búsqueda no están disponibles', + servicesUnavailableMessage: 'Algunos servicios de búsqueda pueden estar experimentando problemas. Inténtalo de nuevo en un momento.', + searchHint: 'Empieza a escribir para buscar todo al instante', + commandHint: 'Escriba @ para buscar por categoría', + selectSearchType: 'Elige qué buscar', + resultCount: '{{count}} resultado', + resultCount_other: '{{count}} resultados', + inScope: 'en {{scope}}s', + }, } export default translation diff --git a/web/i18n/es-ES/workflow.ts b/web/i18n/es-ES/workflow.ts index cca0bd3e55..054115935d 100644 --- a/web/i18n/es-ES/workflow.ts +++ b/web/i18n/es-ES/workflow.ts @@ -991,6 +991,10 @@ const translation = { dependencies: 'Dependencias', }, relationsTab: 'Relaciones', + noLastRunFound: 'No se encontró ninguna ejecución anterior', + copyLastRunError: 'No se pudo copiar las entradas de la última ejecución', + copyLastRun: 'Copiar última ejecución', + noMatchingInputsFound: 'No se encontraron entradas coincidentes de la última ejecución.', }, } diff --git a/web/i18n/fa-IR/app.ts b/web/i18n/fa-IR/app.ts index cd848ec21d..b0fbf7ebd8 100644 --- a/web/i18n/fa-IR/app.ts +++ b/web/i18n/fa-IR/app.ts @@ -252,6 +252,49 @@ const translation = { maxActiveRequests: 'بیشترین درخواست‌های همزمان', maxActiveRequestsPlaceholder: 'برای نامحدود، 0 را وارد کنید', maxActiveRequestsTip: 'حداکثر تعداد درخواست‌های فعال همزمان در هر برنامه (0 برای نامحدود)', + gotoAnything: { + actions: { + searchPlugins: 'افزونه های جستجو', + searchWorkflowNodes: 'گره های گردش کار جستجو', + searchApplications: 'جستجوی برنامه ها', + searchKnowledgeBases: 'جستجو در پایگاه های دانش', + searchWorkflowNodesHelp: 'این ویژگی فقط هنگام مشاهده گردش کار کار می کند. ابتدا به گردش کار بروید.', + searchApplicationsDesc: 'جستجو و پیمایش به برنامه های خود', + searchKnowledgeBasesDesc: 'پایگاه های دانش خود را جستجو کرده و به آن ناوبری کنید', + searchPluginsDesc: 'افزونه های خود را جستجو کرده و به آنها پیمایش کنید', + searchWorkflowNodesDesc: 'گره ها را در گردش کار فعلی بر اساس نام یا نوع پیدا کنید و به آنها بروید', + }, + emptyState: { + noKnowledgeBasesFound: 'هیچ پایگاه دانش یافت نشد', + noAppsFound: 'هیچ برنامه ای یافت نشد', + noPluginsFound: 'هیچ افزونه ای یافت نشد', + noWorkflowNodesFound: 'هیچ گره گردش کاری یافت نشد', + tryDifferentTerm: 'یک عبارت جستجوی متفاوت را امتحان کنید یا فیلتر {{mode}} را حذف کنید', + trySpecificSearch: '{{shortcuts}} را برای جستجوهای خاص امتحان کنید', + }, + groups: { + plugins: 'پلاگین', + apps: 'برنامه‌ها', + knowledgeBases: 'پایگاه های دانش', + workflowNodes: 'گره های گردش کار', + }, + searching: 'جستجو...', + searchFailed: 'جستجو انجام نشد', + useAtForSpecific: 'از @ برای انواع خاص استفاده کنید', + clearToSearchAll: 'پاک کردن @ برای جستجوی همه', + noResults: 'هیچ نتیجه ای یافت نشد', + searchTitle: 'هر چیزی را جستجو کنید', + searchPlaceholder: 'جستجو یا تایپ @ برای دستورات...', + searchTemporarilyUnavailable: 'جستجو به طور موقت در دسترس نیست', + servicesUnavailableMessage: 'برخی از سرویس های جستجو ممکن است با مشکل مواجه شوند. یک لحظه دیگر دوباره امتحان کنید.', + someServicesUnavailable: 'برخی از سرویس های جستجو دردسترس نیستند', + selectSearchType: 'انتخاب کنید چه چیزی را جستجو کنید', + commandHint: '@ را برای مرور بر اساس دسته بندی تایپ کنید', + searchHint: 'شروع به تایپ کنید تا فورا همه چیز را جستجو کنید', + resultCount: '{{count}} نتیجه', + resultCount_other: '{{count}} نتیجه', + inScope: 'در {{scope}}s', + }, } export default translation diff --git a/web/i18n/fa-IR/workflow.ts b/web/i18n/fa-IR/workflow.ts index 04db159c3f..96f11d9369 100644 --- a/web/i18n/fa-IR/workflow.ts +++ b/web/i18n/fa-IR/workflow.ts @@ -991,6 +991,10 @@ const translation = { dependentsDescription: 'گره هایی که به این گره متکی هستند', }, relationsTab: 'روابط', + copyLastRun: 'کپی آخرین اجرا', + noLastRunFound: 'هیچ اجرای قبلی یافت نشد', + noMatchingInputsFound: 'هیچ ورودی مطابقی از آخرین اجرا یافت نشد', + copyLastRunError: 'نتوانستم ورودی‌های آخرین اجرای را کپی کنم', }, } diff --git a/web/i18n/fr-FR/app.ts b/web/i18n/fr-FR/app.ts index 8c0e0f516c..6245a8534a 100644 --- a/web/i18n/fr-FR/app.ts +++ b/web/i18n/fr-FR/app.ts @@ -252,6 +252,49 @@ const translation = { maxActiveRequestsPlaceholder: 'Entrez 0 pour illimité', maxActiveRequests: 'Nombre maximal de requêtes simultanées', maxActiveRequestsTip: 'Nombre maximum de requêtes actives concurrentes par application (0 pour illimité)', + gotoAnything: { + actions: { + searchPluginsDesc: 'Recherchez et naviguez vers vos plugins', + searchKnowledgeBasesDesc: 'Recherchez et accédez à vos bases de connaissances', + searchWorkflowNodesDesc: 'Recherchez et accédez aux nœuds du flux de travail actuel par nom ou type', + searchApplicationsDesc: 'Recherchez et accédez à vos applications', + searchPlugins: 'Plugins de recherche', + searchWorkflowNodes: 'Rechercher des nœuds de workflow', + searchKnowledgeBases: 'Rechercher dans les bases de connaissances', + searchApplications: 'Rechercher des applications', + searchWorkflowNodesHelp: 'Cette fonctionnalité ne fonctionne que lors de l\'affichage d\'un flux de travail. Accédez d\'abord à un flux de travail.', + }, + emptyState: { + noKnowledgeBasesFound: 'Aucune base de connaissances trouvée', + noAppsFound: 'Aucune application trouvée', + noPluginsFound: 'Aucun plugin trouvé', + noWorkflowNodesFound: 'Aucun nœud de workflow trouvé', + tryDifferentTerm: 'Essayez un terme de recherche différent ou supprimez le filtre {{mode}}', + trySpecificSearch: 'Essayez {{shortcuts}} pour des recherches spécifiques', + }, + groups: { + apps: 'Applications', + workflowNodes: 'Nœuds de flux de travail', + knowledgeBases: 'Bases de connaissances', + plugins: 'Plug-ins', + }, + someServicesUnavailable: 'Certains services de recherche indisponibles', + servicesUnavailableMessage: 'Certains services de recherche peuvent rencontrer des problèmes. Réessayez dans un instant.', + useAtForSpecific: 'Utilisez @ pour des types spécifiques', + searchTemporarilyUnavailable: 'Recherche temporairement indisponible', + searchTitle: 'Recherchez n\'importe quoi', + clearToSearchAll: 'Effacer @ pour rechercher tout', + searching: 'Recherche...', + searchPlaceholder: 'Recherchez ou tapez @ pour les commandes...', + searchFailed: 'Echec de la recherche', + noResults: 'Aucun résultat trouvé', + commandHint: 'Tapez @ pour parcourir par catégorie', + selectSearchType: 'Choisissez les éléments de recherche', + searchHint: 'Commencez à taper pour tout rechercher instantanément', + resultCount: '{{count}} résultat', + resultCount_other: '{{count}} résultats', + inScope: 'dans {{scope}}s', + }, } export default translation diff --git a/web/i18n/fr-FR/workflow.ts b/web/i18n/fr-FR/workflow.ts index ff414dd8d4..1fc655c921 100644 --- a/web/i18n/fr-FR/workflow.ts +++ b/web/i18n/fr-FR/workflow.ts @@ -991,6 +991,10 @@ const translation = { dependenciesDescription: 'Nœuds sur lesquels repose ce nœud', }, relationsTab: 'Relations', + copyLastRun: 'Copier la dernière exécution', + noLastRunFound: 'Aucune exécution précédente trouvée', + noMatchingInputsFound: 'Aucune entrée correspondante trouvée dans la dernière exécution.', + copyLastRunError: 'Échec de la copie des entrées de la dernière exécution', }, } diff --git a/web/i18n/hi-IN/app.ts b/web/i18n/hi-IN/app.ts index cce3fe1f4d..c365b691e2 100644 --- a/web/i18n/hi-IN/app.ts +++ b/web/i18n/hi-IN/app.ts @@ -252,6 +252,49 @@ const translation = { maxActiveRequests: 'अधिकतम समवर्ती अनुरोध', maxActiveRequestsPlaceholder: 'असीमित के लिए 0 दर्ज करें', maxActiveRequestsTip: 'प्रति ऐप सक्रिय अनुरोधों की अधिकतम संख्या (असीमित के लिए 0)', + gotoAnything: { + actions: { + searchPlugins: 'खोज प्लगइन्स', + searchWorkflowNodes: 'खोज कार्यप्रवाह नोड्स', + searchKnowledgeBases: 'ज्ञान आधार खोजें', + searchApplications: 'अनुसंधान एप्लिकेशन', + searchPluginsDesc: 'अपने प्लगइन्स को खोजें और नेविगेट करें', + searchWorkflowNodesDesc: 'वर्तमान कार्यप्रवाह में नाम या प्रकार द्वारा नोड्स को खोजें और उन पर कूदें', + searchKnowledgeBasesDesc: 'अपने ज्ञान आधारों की खोज करें और उन्हें नेविगेट करें', + searchApplicationsDesc: 'अपने अनुप्रयोगों की खोज करें और उन्हें नेविगेट करें', + searchWorkflowNodesHelp: 'यह सुविधा केवल तब काम करती है जब आप एक कार्यप्रवाह देख रहे हों। पहले एक कार्यप्रवाह पर जाएं।', + }, + emptyState: { + noPluginsFound: 'कोई प्लगइन नहीं मिले', + noAppsFound: 'कोई ऐप्स नहीं मिले', + noKnowledgeBasesFound: 'कोई ज्ञान आधार नहीं मिले', + noWorkflowNodesFound: 'कोई कार्यप्रवाह नोड नहीं मिला', + tryDifferentTerm: 'एक अलग खोज शब्द आज़माएं या {{mode}} फ़िल्टर हटा दें', + trySpecificSearch: 'विशिष्ट खोज के लिए {{shortcuts}} आज़माएं', + }, + groups: { + apps: 'ऐप्स', + knowledgeBases: 'ज्ञान आधार', + plugins: 'प्लगइन्स', + workflowNodes: 'कार्यप्रवाह नोड्स', + }, + noResults: 'कोई परिणाम नहीं मिले', + clearToSearchAll: 'साफ़ @ सभी खोजने के लिए', + searchTitle: 'किसी भी चीज़ की खोज करें', + useAtForSpecific: '@ का उपयोग विशिष्ट प्रकारों के लिए करें', + someServicesUnavailable: 'कुछ खोज सेवाएँ उपलब्ध नहीं हैं', + searching: 'खोजना...', + searchFailed: 'खोज विफल रहा', + searchPlaceholder: 'कमांड के लिए खोजें या टाइप करें @...', + searchTemporarilyUnavailable: 'खोज अस्थायी रूप से उपलब्ध नहीं है', + servicesUnavailableMessage: 'कुछ खोज सेवाएँ समस्याओं का सामना कर सकती हैं। थोड़ी देर बाद फिर से प्रयास करें।', + commandHint: '@ का उपयोग कर श्रेणी के अनुसार ब्राउज़ करें', + selectSearchType: 'खोजने के लिए क्या चुनें', + searchHint: 'सब कुछ तुरंत खोजने के लिए टाइप करना शुरू करें', + resultCount: '{{count}} परिणाम', + resultCount_other: '{{count}} परिणाम', + inScope: '{{scope}}s में', + }, } export default translation diff --git a/web/i18n/hi-IN/workflow.ts b/web/i18n/hi-IN/workflow.ts index 1b113504cb..bd1a6a306a 100644 --- a/web/i18n/hi-IN/workflow.ts +++ b/web/i18n/hi-IN/workflow.ts @@ -1011,6 +1011,10 @@ const translation = { noDependencies: 'कोई निर्भरताएँ नहीं', }, relationsTab: 'रिश्ते', + copyLastRun: 'अंतिम रन कॉपी करें', + noLastRunFound: 'कोई पिछला रन नहीं मिला', + noMatchingInputsFound: 'अंतिम रन से कोई मेल खाने वाले इनपुट नहीं मिले', + copyLastRunError: 'अंतिम रन इनपुट को कॉपी करने में विफल', }, } diff --git a/web/i18n/it-IT/app.ts b/web/i18n/it-IT/app.ts index 9c58c5e803..74ea6b7aa7 100644 --- a/web/i18n/it-IT/app.ts +++ b/web/i18n/it-IT/app.ts @@ -258,6 +258,49 @@ const translation = { maxActiveRequestsPlaceholder: 'Inserisci 0 per illimitato', maxActiveRequests: 'Massimo numero di richieste concorrenti', maxActiveRequestsTip: 'Numero massimo di richieste attive concorrenti per app (0 per illimitato)', + gotoAnything: { + actions: { + searchWorkflowNodesHelp: 'Questa funzione funziona solo durante la visualizzazione di un flusso di lavoro. Passa prima a un flusso di lavoro.', + searchApplicationsDesc: 'Cerca e naviga alle tue applicazioni', + searchWorkflowNodes: 'Ricerca nei nodi del flusso di lavoro', + searchApplications: 'Cerca applicazioni', + searchPluginsDesc: 'Cerca e naviga verso i tuoi plugin', + searchKnowledgeBasesDesc: 'Cerca e naviga nelle tue knowledge base', + searchPlugins: 'Plugin di ricerca', + searchWorkflowNodesDesc: 'Trovare e passare ai nodi nel flusso di lavoro corrente in base al nome o al tipo', + searchKnowledgeBases: 'Cerca nelle Basi di Conoscenza', + }, + emptyState: { + noKnowledgeBasesFound: 'Nessuna base di conoscenza trovata', + noAppsFound: 'Nessuna app trovata', + noWorkflowNodesFound: 'Nessun nodo del flusso di lavoro trovato', + noPluginsFound: 'Nessun plugin trovato', + tryDifferentTerm: 'Prova un termine di ricerca diverso o rimuovi il filtro {{mode}}', + trySpecificSearch: 'Prova {{shortcuts}} per ricerche specifiche', + }, + groups: { + knowledgeBases: 'Basi di conoscenza', + workflowNodes: 'Nodi del flusso di lavoro', + plugins: 'Plugin', + apps: 'Applicazioni', + }, + searchTitle: 'Cerca qualsiasi cosa', + searchPlaceholder: 'Cerca o digita @ per i comandi...', + searching: 'Ricerca in corso...', + searchTemporarilyUnavailable: 'Ricerca temporaneamente non disponibile', + searchFailed: 'Ricerca non riuscita', + servicesUnavailableMessage: 'Alcuni servizi di ricerca potrebbero riscontrare problemi. Riprova tra un attimo.', + someServicesUnavailable: 'Alcuni servizi di ricerca non sono disponibili', + noResults: 'Nessun risultato trovato', + useAtForSpecific: 'Utilizzare @ per tipi specifici', + clearToSearchAll: 'Cancella @ per cercare tutto', + selectSearchType: 'Scegli cosa cercare', + commandHint: 'Digita @ per sfogliare per categoria', + searchHint: 'Inizia a digitare per cercare tutto all\'istante', + resultCount: '{{count}} risultato', + resultCount_other: '{{count}} risultati', + inScope: 'in {{scope}}s', + }, } export default translation diff --git a/web/i18n/it-IT/workflow.ts b/web/i18n/it-IT/workflow.ts index e939f65afa..33d52a7c4a 100644 --- a/web/i18n/it-IT/workflow.ts +++ b/web/i18n/it-IT/workflow.ts @@ -1017,6 +1017,10 @@ const translation = { dependenciesDescription: 'Nodi su cui si basa questo nodo', }, relationsTab: 'Relazioni', + copyLastRun: 'Copia ultimo eseguito', + noMatchingInputsFound: 'Nessun input corrispondente trovato dall\'ultimo funzionamento.', + copyLastRunError: 'Impossibile copiare gli input dell\'ultima esecuzione', + noLastRunFound: 'Nessuna esecuzione precedente trovata', }, } diff --git a/web/i18n/ja-JP/app.ts b/web/i18n/ja-JP/app.ts index 3e399debc1..ac30d91261 100644 --- a/web/i18n/ja-JP/app.ts +++ b/web/i18n/ja-JP/app.ts @@ -251,6 +251,49 @@ const translation = { maxActiveRequestsPlaceholder: '無制限のために0を入力してください', maxActiveRequests: '最大同時リクエスト数', maxActiveRequestsTip: 'アプリごとの同時アクティブリクエストの最大数(無制限の場合は0)', + gotoAnything: { + searchPlaceholder: '検索するか、@ を入力してコマンドを使用...', + searchTitle: '何でも検索', + searching: '検索中...', + noResults: '結果が見つかりません', + searchFailed: '検索に失敗しました', + searchTemporarilyUnavailable: '検索が一時的に利用できません', + servicesUnavailableMessage: '一部の検索サービスで問題が発生している可能性があります。しばらくしてからもう一度お試しください。', + someServicesUnavailable: '一部の検索サービスが利用できません', + resultCount: '{{count}} 件の結果', + resultCount_other: '{{count}} 件の結果', + inScope: '{{scope}}s 内', + clearToSearchAll: '@ をクリアしてすべてを検索', + useAtForSpecific: '特定のタイプには @ を使用', + selectSearchType: '検索対象を選択', + searchHint: '入力を開始してすべてを瞬時に検索', + commandHint: '@ を入力してカテゴリ別に参照', + actions: { + searchApplications: 'アプリケーションを検索', + searchApplicationsDesc: 'アプリケーションを検索してナビゲート', + searchPlugins: 'プラグインを検索', + searchPluginsDesc: 'プラグインを検索してナビゲート', + searchKnowledgeBases: 'ナレッジベースを検索', + searchKnowledgeBasesDesc: 'ナレッジベースを検索してナビゲート', + searchWorkflowNodes: 'ワークフローノードを検索', + searchWorkflowNodesDesc: '現在のワークフロー内のノードを名前またはタイプで検索してジャンプ', + searchWorkflowNodesHelp: 'この機能はワークフロー表示時のみ利用できます。まずワークフローに移動してください。', + }, + emptyState: { + noAppsFound: 'アプリが見つかりません', + noPluginsFound: 'プラグインが見つかりません', + noKnowledgeBasesFound: 'ナレッジベースが見つかりません', + noWorkflowNodesFound: 'ワークフローノードが見つかりません', + tryDifferentTerm: '別の検索語句を試すか、{{mode}} フィルターを削除してください', + trySpecificSearch: '特定検索には {{shortcuts}} を試してください', + }, + groups: { + apps: 'アプリケーション', + plugins: 'プラグイン', + knowledgeBases: 'ナレッジベース', + workflowNodes: 'ワークフローノード', + }, + }, } export default translation diff --git a/web/i18n/ja-JP/workflow.ts b/web/i18n/ja-JP/workflow.ts index 30b914da3f..2c88b54b8a 100644 --- a/web/i18n/ja-JP/workflow.ts +++ b/web/i18n/ja-JP/workflow.ts @@ -991,6 +991,10 @@ const translation = { noDependencies: '依存元なし', noDependents: '依存先なし', }, + copyLastRun: '最後の実行をコピー', + noLastRunFound: '以前の実行が見つかりませんでした。', + copyLastRunError: '最後の実行の入力をコピーできませんでした', + noMatchingInputsFound: '前回の実行から一致する入力が見つかりませんでした。', }, } diff --git a/web/i18n/ko-KR/app.ts b/web/i18n/ko-KR/app.ts index 5ddb823998..6a75ab4021 100644 --- a/web/i18n/ko-KR/app.ts +++ b/web/i18n/ko-KR/app.ts @@ -272,6 +272,49 @@ const translation = { maxActiveRequests: '동시 최대 요청 수', maxActiveRequestsPlaceholder: '무제한 사용을 원하시면 0을 입력하세요.', maxActiveRequestsTip: '앱당 최대 동시 활성 요청 수(무제한은 0)', + gotoAnything: { + actions: { + searchWorkflowNodes: '워크플로 노드 검색', + searchApplicationsDesc: '애플리케이션 검색 및 탐색', + searchPlugins: '플러그인 검색', + searchApplications: '응용 프로그램 검색', + searchPluginsDesc: '플러그인을 검색하고 탐색합니다.', + searchWorkflowNodesDesc: '이름 또는 유형별로 현재 워크플로의 노드를 찾아 이동', + searchKnowledgeBasesDesc: '기술 자료를 검색하고 탐색합니다.', + searchWorkflowNodesHelp: '이 기능은 워크플로를 볼 때만 작동합니다. 먼저 워크플로로 이동합니다.', + searchKnowledgeBases: '기술 자료 검색', + }, + emptyState: { + noAppsFound: '앱을 찾을 수 없습니다.', + noPluginsFound: '플러그인을 찾을 수 없습니다.', + noKnowledgeBasesFound: '기술 자료를 찾을 수 없습니다.', + noWorkflowNodesFound: '워크플로 노드를 찾을 수 없습니다.', + tryDifferentTerm: '다른 검색어를 시도하거나 {{mode}} 필터를 제거하세요', + trySpecificSearch: '특정 검색을 위해 {{shortcuts}}를 사용해보세요', + }, + groups: { + apps: '앱', + plugins: '플러그인', + knowledgeBases: '기술 자료', + workflowNodes: '워크플로 노드', + }, + searching: '검색...', + searchTitle: '무엇이든 검색', + useAtForSpecific: '특정 형식에 @ 사용', + searchTemporarilyUnavailable: '일시적으로 검색할 수 없음', + noResults: '결과를 찾을 수 없습니다.', + someServicesUnavailable: '일부 검색 서비스를 사용할 수 없습니다.', + servicesUnavailableMessage: '일부 검색 서비스에서 문제가 발생할 수 있습니다. 잠시 후에 다시 시도하십시오.', + searchFailed: '검색 실패', + searchPlaceholder: '명령을 검색하거나 @를 입력합니다...', + clearToSearchAll: '@를 지우면 모두 검색됩니다.', + selectSearchType: '검색할 항목 선택', + commandHint: '@를 입력하여 카테고리별로 찾아봅니다.', + searchHint: '즉시 모든 것을 검색하려면 입력을 시작하세요.', + resultCount: '{{count}} 개 결과', + resultCount_other: '{{count}} 개 결과', + inScope: '{{scope}}s 내에서', + }, } export default translation diff --git a/web/i18n/ko-KR/workflow.ts b/web/i18n/ko-KR/workflow.ts index bbe4c1de2f..432ae14aed 100644 --- a/web/i18n/ko-KR/workflow.ts +++ b/web/i18n/ko-KR/workflow.ts @@ -1042,6 +1042,10 @@ const translation = { dependenciesDescription: '이 노드가 의존하는 노드', }, relationsTab: '관계', + copyLastRun: '마지막 실행 복사', + noLastRunFound: '이전 실행이 없습니다.', + noMatchingInputsFound: '지난 실행에서 일치하는 입력을 찾을 수 없습니다.', + copyLastRunError: '마지막 실행 입력을 복사하는 데 실패했습니다.', }, } diff --git a/web/i18n/pl-PL/app.ts b/web/i18n/pl-PL/app.ts index 0a5e6a56d1..dbf0d90d39 100644 --- a/web/i18n/pl-PL/app.ts +++ b/web/i18n/pl-PL/app.ts @@ -253,6 +253,49 @@ const translation = { maxActiveRequests: 'Maksymalne równoczesne żądania', maxActiveRequestsPlaceholder: 'Wprowadź 0, aby uzyskać nielimitowane', maxActiveRequestsTip: 'Maksymalna liczba jednoczesnych aktywnych żądań na aplikację (0 dla nieograniczonej)', + gotoAnything: { + actions: { + searchPlugins: 'Szukaj wtyczek', + searchWorkflowNodesHelp: 'Ta funkcja działa tylko podczas wyświetlania przepływu pracy. Najpierw przejdź do przepływu pracy.', + searchApplicationsDesc: 'Wyszukiwanie aplikacji i przechodzenie do nich', + searchPluginsDesc: 'Wyszukiwanie i przechodzenie do wtyczek', + searchApplications: 'Szukaj aplikacji', + searchKnowledgeBasesDesc: 'Wyszukiwanie i przechodzenie do baz wiedzy', + searchWorkflowNodesDesc: 'Znajdowanie węzłów w bieżącym przepływie pracy i przechodzenie do nich według nazwy lub typu', + searchKnowledgeBases: 'Szukaj w bazach wiedzy', + searchWorkflowNodes: 'Wyszukiwanie węzłów przepływu pracy', + }, + emptyState: { + noAppsFound: 'Nie znaleziono aplikacji', + noKnowledgeBasesFound: 'Nie znaleziono baz wiedzy', + noWorkflowNodesFound: 'Nie znaleziono węzłów przepływu pracy', + noPluginsFound: 'Nie znaleziono wtyczek', + tryDifferentTerm: 'Spróbuj innego terminu wyszukiwania lub usuń filtr {{mode}}', + trySpecificSearch: 'Spróbuj {{shortcuts}} dla konkretnych wyszukiwań', + }, + groups: { + apps: 'Aplikacje', + workflowNodes: 'Węzły przepływu pracy', + knowledgeBases: 'Bazy wiedzy', + plugins: 'Wtyczki', + }, + useAtForSpecific: 'Użyj @ dla określonych typów', + searchPlaceholder: 'Wyszukaj lub wpisz @ dla poleceń...', + searching: 'Wyszukiwanie...', + noResults: 'Nie znaleziono wyników', + searchTitle: 'Szukaj czegokolwiek', + someServicesUnavailable: 'Niektóre usługi wyszukiwania są niedostępne', + clearToSearchAll: 'Wyczyść @, aby przeszukać wszystko', + searchTemporarilyUnavailable: 'Wyszukiwanie chwilowo niedostępne', + servicesUnavailableMessage: 'W przypadku niektórych usług wyszukiwania mogą występować problemy. Spróbuj ponownie za chwilę.', + searchFailed: 'Wyszukiwanie nie powiodło się', + searchHint: 'Zacznij pisać, aby natychmiast wszystko przeszukać', + commandHint: 'Wpisz @, aby przeglądać według kategorii', + selectSearchType: 'Wybierz, czego chcesz szukać', + resultCount: '{{count}} wynik', + resultCount_other: '{{count}} wyników', + inScope: 'w {{scope}}s', + }, } export default translation diff --git a/web/i18n/pl-PL/workflow.ts b/web/i18n/pl-PL/workflow.ts index c2de2786c9..69de94091f 100644 --- a/web/i18n/pl-PL/workflow.ts +++ b/web/i18n/pl-PL/workflow.ts @@ -991,6 +991,10 @@ const translation = { noDependencies: 'Brak zależności', }, relationsTab: 'Stosunków', + copyLastRun: 'Kopiuj ostatnie uruchomienie', + noLastRunFound: 'Nie znaleziono poprzedniego biegu.', + noMatchingInputsFound: 'Nie znaleziono pasujących danych wejściowych z ostatniego uruchomienia', + copyLastRunError: 'Nie udało się skopiować danych wejściowych z ostatniego uruchomienia', }, } diff --git a/web/i18n/pt-BR/app.ts b/web/i18n/pt-BR/app.ts index bbb420351c..6400669849 100644 --- a/web/i18n/pt-BR/app.ts +++ b/web/i18n/pt-BR/app.ts @@ -252,6 +252,49 @@ const translation = { maxActiveRequestsPlaceholder: 'Digite 0 para ilimitado', maxActiveRequests: 'Máximo de solicitações simultâneas', maxActiveRequestsTip: 'Número máximo de solicitações ativas simultâneas por aplicativo (0 para ilimitado)', + gotoAnything: { + actions: { + searchPlugins: 'Pesquisar Plugins', + searchApplicationsDesc: 'Pesquise e navegue até seus aplicativos', + searchPluginsDesc: 'Pesquise e navegue até seus plug-ins', + searchKnowledgeBases: 'Pesquisar bases de conhecimento', + searchApplications: 'Aplicativos de pesquisa', + searchWorkflowNodesDesc: 'Localizar e ir para nós no fluxo de trabalho atual por nome ou tipo', + searchWorkflowNodesHelp: 'Esse recurso só funciona ao visualizar um fluxo de trabalho. Navegue até um fluxo de trabalho primeiro.', + searchKnowledgeBasesDesc: 'Pesquise e navegue até suas bases de conhecimento', + searchWorkflowNodes: 'Nós de fluxo de trabalho de pesquisa', + }, + emptyState: { + noAppsFound: 'Nenhum aplicativo encontrado', + noPluginsFound: 'Nenhum plugin encontrado', + noWorkflowNodesFound: 'Nenhum nó de fluxo de trabalho encontrado', + noKnowledgeBasesFound: 'Nenhuma base de conhecimento encontrada', + tryDifferentTerm: 'Tente um termo de pesquisa diferente ou remova o filtro {{mode}}', + trySpecificSearch: 'Tente {{shortcuts}} para pesquisas específicas', + }, + groups: { + apps: 'Aplicativos', + knowledgeBases: 'Bases de conhecimento', + plugins: 'Plugins', + workflowNodes: 'Nós de fluxo de trabalho', + }, + searching: 'Procurando...', + searchTitle: 'Pesquisar qualquer coisa', + someServicesUnavailable: 'Alguns serviços de pesquisa indisponíveis', + searchTemporarilyUnavailable: 'Pesquisa temporariamente indisponível', + servicesUnavailableMessage: 'Alguns serviços de pesquisa podem estar enfrentando problemas. Tente novamente em um momento.', + searchPlaceholder: 'Pesquise ou digite @ para comandos...', + noResults: 'Nenhum resultado encontrado', + useAtForSpecific: 'Use @ para tipos específicos', + clearToSearchAll: 'Desmarque @ para pesquisar tudo', + searchFailed: 'Falha na pesquisa', + searchHint: 'Comece a digitar para pesquisar tudo instantaneamente', + commandHint: 'Digite @ para navegar por categoria', + selectSearchType: 'Escolha o que pesquisar', + resultCount: '{{count}} resultado', + resultCount_other: '{{count}} resultados', + inScope: 'em {{scope}}s', + }, } export default translation diff --git a/web/i18n/pt-BR/workflow.ts b/web/i18n/pt-BR/workflow.ts index 9e217dd768..6bddef6568 100644 --- a/web/i18n/pt-BR/workflow.ts +++ b/web/i18n/pt-BR/workflow.ts @@ -991,6 +991,10 @@ const translation = { noDependencies: 'Sem dependências', }, relationsTab: 'Relações', + noMatchingInputsFound: 'Nenhuma entrada correspondente encontrada na última execução.', + copyLastRunError: 'Falha ao copiar as entradas da última execução', + noLastRunFound: 'Nenhuma execução anterior encontrada.', + copyLastRun: 'Copiar Última Execução', }, } diff --git a/web/i18n/ro-RO/app.ts b/web/i18n/ro-RO/app.ts index 73b01ac704..56e493b43d 100644 --- a/web/i18n/ro-RO/app.ts +++ b/web/i18n/ro-RO/app.ts @@ -252,6 +252,49 @@ const translation = { maxActiveRequestsPlaceholder: 'Introduceți 0 pentru nelimitat', maxActiveRequests: 'Maxime cereri simultane', maxActiveRequestsTip: 'Numărul maxim de cereri active concurente pe aplicație (0 pentru nelimitat)', + gotoAnything: { + actions: { + searchKnowledgeBasesDesc: 'Căutați și navigați la bazele de cunoștințe', + searchWorkflowNodes: 'Căutare în noduri de flux de lucru', + searchKnowledgeBases: 'Căutare în baze de cunoștințe', + searchApplicationsDesc: 'Căutați și navigați la aplicațiile dvs.', + searchApplications: 'Căutare aplicații', + searchPluginsDesc: 'Căutați și navigați la plugin-urile dvs.', + searchWorkflowNodesDesc: 'Găsiți și treceți la nodurile din fluxul de lucru curent după nume sau tip', + searchWorkflowNodesHelp: 'Această caracteristică funcționează numai atunci când vizualizați un flux de lucru. Navigați mai întâi la un flux de lucru.', + searchPlugins: 'Căutare plugin-uri', + }, + emptyState: { + noAppsFound: 'Nu s-au găsit aplicații', + noPluginsFound: 'Nu au fost găsite plugin-uri', + noWorkflowNodesFound: 'Nu au fost găsite noduri de flux de lucru', + noKnowledgeBasesFound: 'Nu au fost găsite baze de cunoștințe', + tryDifferentTerm: 'Încercați un termen de căutare diferit sau eliminați filtrul {{mode}}', + trySpecificSearch: 'Încercați {{shortcuts}} pentru căutări specifice', + }, + groups: { + knowledgeBases: 'Baze de cunoștințe', + workflowNodes: 'Noduri de flux de lucru', + plugins: 'Pluginuri', + apps: 'Aplicații', + }, + useAtForSpecific: 'Utilizați @ pentru anumite tipuri', + searchTemporarilyUnavailable: 'Căutare temporar indisponibilă', + searchPlaceholder: 'Căutați sau tastați @ pentru comenzi...', + searchTitle: 'Căutați orice', + searching: 'Căutarea...', + noResults: 'Nu s-au găsit rezultate', + searchFailed: 'Căutarea a eșuat', + servicesUnavailableMessage: 'Este posibil ca unele servicii de căutare să întâmpine probleme. Încercați din nou într-o clipă.', + someServicesUnavailable: 'Unele servicii de căutare nu sunt disponibile', + clearToSearchAll: 'Ștergeți @ pentru a căuta toate', + selectSearchType: 'Alegeți ce să căutați', + commandHint: 'Tastați @ pentru a naviga după categorie', + searchHint: 'Începeți să tastați pentru a căuta totul instantaneu', + resultCount: '{{count}} rezultat', + resultCount_other: '{{count}} rezultate', + inScope: 'în {{scope}}s', + }, } export default translation diff --git a/web/i18n/ro-RO/workflow.ts b/web/i18n/ro-RO/workflow.ts index 07a2992ed3..58118cdb04 100644 --- a/web/i18n/ro-RO/workflow.ts +++ b/web/i18n/ro-RO/workflow.ts @@ -991,6 +991,10 @@ const translation = { dependenciesDescription: 'Noduri pe care se bazează acest nod', }, relationsTab: 'Relații', + noMatchingInputsFound: 'Nu s-au găsit intrări corespunzătoare din ultima rulare', + copyLastRun: 'Copiază ultima execuție', + noLastRunFound: 'Niciun rulament anterior găsit', + copyLastRunError: 'Nu s-au putut copia ultimele intrări de rulare', }, } diff --git a/web/i18n/ru-RU/app.ts b/web/i18n/ru-RU/app.ts index fa7b79a377..7f5f53a668 100644 --- a/web/i18n/ru-RU/app.ts +++ b/web/i18n/ru-RU/app.ts @@ -252,6 +252,49 @@ const translation = { maxActiveRequests: 'Максимальное количество параллельных запросов', maxActiveRequestsPlaceholder: 'Введите 0 для неограниченного количества', maxActiveRequestsTip: 'Максимальное количество одновременно активных запросов на одно приложение (0 для неограниченного количества)', + gotoAnything: { + actions: { + searchPlugins: 'Поисковые плагины', + searchKnowledgeBases: 'Поиск в базах знаний', + searchApplications: 'Поиск приложений', + searchKnowledgeBasesDesc: 'Поиск и переход к базам знаний', + searchPluginsDesc: 'Поиск и переход к вашим плагинам', + searchWorkflowNodes: 'Поиск узлов рабочего процесса', + searchApplicationsDesc: 'Поиск и переход к приложениям', + searchWorkflowNodesHelp: 'Эта функция работает только при просмотре рабочего процесса. Сначала перейдите к рабочему процессу.', + searchWorkflowNodesDesc: 'Поиск узлов в текущем рабочем процессе и переход к ним по имени или типу', + }, + emptyState: { + noPluginsFound: 'Плагины не найдены', + noKnowledgeBasesFound: 'Базы знаний не найдены', + noAppsFound: 'Приложения не найдены', + noWorkflowNodesFound: 'Узлы расчетной схемы не найдены', + tryDifferentTerm: 'Попробуйте другой поисковый термин или удалите фильтр {{mode}}', + trySpecificSearch: 'Попробуйте {{shortcuts}} для конкретного поиска', + }, + groups: { + knowledgeBases: 'Базы знаний', + plugins: 'Плагины', + apps: 'Приложения', + workflowNodes: 'Узлы рабочих процессов', + }, + searching: 'Поиск...', + noResults: 'Ничего не найдено', + searchFailed: 'Ошибка поиска', + searchTitle: 'Ищите что угодно', + useAtForSpecific: 'Используйте @ для определенных типов', + clearToSearchAll: 'Очистите @ для поиска по всем', + searchTemporarilyUnavailable: 'Поиск временно недоступен', + searchPlaceholder: 'Найдите или введите @ для команд...', + someServicesUnavailable: 'Некоторые поисковые сервисы недоступны', + servicesUnavailableMessage: 'В некоторых поисковых службах могут возникать проблемы. Повторите попытку через мгновение.', + searchHint: 'Начните печатать, чтобы мгновенно искать все', + commandHint: 'Введите @ для просмотра по категориям', + selectSearchType: 'Выберите, что искать', + resultCount: '{{count}} результат', + resultCount_other: '{{count}} результатов', + inScope: 'в {{scope}}s', + }, } export default translation diff --git a/web/i18n/ru-RU/workflow.ts b/web/i18n/ru-RU/workflow.ts index a9bd141c1d..91890e5254 100644 --- a/web/i18n/ru-RU/workflow.ts +++ b/web/i18n/ru-RU/workflow.ts @@ -991,6 +991,10 @@ const translation = { dependenciesDescription: 'Узлы, на которые опирается этот узел', }, relationsTab: 'Отношения', + noLastRunFound: 'Предыдущий запуск не найден', + copyLastRun: 'Копировать последний запуск', + copyLastRunError: 'Не удалось скопировать последние входные данные выполнения', + noMatchingInputsFound: 'Не найдено соответствующих входных данных из последнего запуска.', }, } diff --git a/web/i18n/sl-SI/app.ts b/web/i18n/sl-SI/app.ts index 0d286b4c13..1031c2a32e 100644 --- a/web/i18n/sl-SI/app.ts +++ b/web/i18n/sl-SI/app.ts @@ -252,6 +252,49 @@ const translation = { maxActiveRequestsPlaceholder: 'Vnesite 0 za neomejeno', maxActiveRequests: 'Maksimalno število hkratnih zahtevkov', maxActiveRequestsTip: 'Največje število hkrati aktivnih zahtevkov na aplikacijo (0 za neomejeno)', + gotoAnything: { + actions: { + searchWorkflowNodes: 'Iskanje vozlišč poteka dela', + searchKnowledgeBasesDesc: 'Iskanje in krmarjenje do zbirk znanja', + searchWorkflowNodesHelp: 'Ta funkcija deluje le pri ogledu poteka dela. Najprej se pomaknite do poteka dela.', + searchApplicationsDesc: 'Iskanje in krmarjenje do aplikacij', + searchPlugins: 'Iskalni vtičniki', + searchApplications: 'Iskanje aplikacij', + searchWorkflowNodesDesc: 'Iskanje vozlišč in skok nanje v trenutnem poteku dela po imenu ali vrsti', + searchKnowledgeBases: 'Iskanje po zbirkah znanja', + searchPluginsDesc: 'Iskanje in krmarjenje do vtičnikov', + }, + emptyState: { + noPluginsFound: 'Vtičnikov ni mogoče najti', + noWorkflowNodesFound: 'Vozlišča poteka dela niso bila najdena', + noKnowledgeBasesFound: 'Zbirk znanja ni mogoče najti', + noAppsFound: 'Ni bilo najdenih aplikacij', + tryDifferentTerm: 'Poskusite z drugim iskalnim izrazom ali odstranite filter {{mode}}', + trySpecificSearch: 'Poskusite {{shortcuts}} za specifična iskanja', + }, + groups: { + workflowNodes: 'Vozlišča poteka dela', + apps: 'Aplikacije', + knowledgeBases: 'Baze znanja', + plugins: 'Vtičniki', + }, + searching: 'Iskanje...', + searchTitle: 'Poiščite karkoli', + searchTemporarilyUnavailable: 'Iskanje začasno ni na voljo', + someServicesUnavailable: 'Nekatere iskalne storitve niso na voljo', + noResults: 'Ni najdenih rezultatov', + clearToSearchAll: 'Počisti @ za iskanje vseh', + searchPlaceholder: 'Poiščite ali vnesite @ za ukaze ...', + searchFailed: 'Iskanje ni uspelo', + useAtForSpecific: 'Uporaba znaka @ za določene vrste', + servicesUnavailableMessage: 'Pri nekaterih iskalnih storitvah se morda pojavljajo težave. Poskusite znova čez trenutek.', + commandHint: 'Vnesite @ za brskanje po kategoriji', + selectSearchType: 'Izberite, kaj želite iskati', + searchHint: 'Začnite tipkati, da takoj preiščete vse', + resultCount: '{{count}} rezultat', + resultCount_other: '{{count}} rezultatov', + inScope: 'v {{scope}}s', + }, } export default translation diff --git a/web/i18n/sl-SI/workflow.ts b/web/i18n/sl-SI/workflow.ts index a77336575c..f6676f673d 100644 --- a/web/i18n/sl-SI/workflow.ts +++ b/web/i18n/sl-SI/workflow.ts @@ -991,6 +991,10 @@ const translation = { noDependencies: 'Brez odvisnosti', }, relationsTab: 'Odnose', + copyLastRun: 'Kopiraj zadnji zagon', + copyLastRunError: 'Kopiranje vhodov zadnjega zagona ni uspelo', + noLastRunFound: 'Nobenega prejšnjega zagona ni bilo najdenega.', + noMatchingInputsFound: 'Ni podatkov, ki bi ustrezali prejšnjemu zagonu', }, } diff --git a/web/i18n/th-TH/app.ts b/web/i18n/th-TH/app.ts index adb377d6fc..b21fff0399 100644 --- a/web/i18n/th-TH/app.ts +++ b/web/i18n/th-TH/app.ts @@ -248,6 +248,49 @@ const translation = { maxActiveRequestsPlaceholder: 'ใส่ 0 สำหรับไม่จำกัด', maxActiveRequests: 'จำนวนคำขอพร้อมกันสูงสุด', maxActiveRequestsTip: 'จำนวนการร้องขอที่ใช้งานพร้อมกันสูงสุดต่อแอป (0 หมายถึงไม่จำกัด)', + gotoAnything: { + actions: { + searchKnowledgeBases: 'ค้นหาฐานความรู้', + searchPlugins: 'ค้นหาปลั๊กอิน', + searchWorkflowNodes: 'ค้นหาโหนดเวิร์กโฟลว์', + searchApplications: 'ค้นหาแอปพลิเคชัน', + searchKnowledgeBasesDesc: 'ค้นหาและนําทางไปยังฐานความรู้ของคุณ', + searchPluginsDesc: 'ค้นหาและนําทางไปยังปลั๊กอินของคุณ', + searchApplicationsDesc: 'ค้นหาและนําทางไปยังแอปพลิเคชันของคุณ', + searchWorkflowNodesHelp: 'คุณลักษณะนี้ใช้ได้เฉพาะเมื่อดูเวิร์กโฟลว์เท่านั้น นําทางไปยังเวิร์กโฟลว์ก่อน', + searchWorkflowNodesDesc: 'ค้นหาและข้ามไปยังโหนดในเวิร์กโฟลว์ปัจจุบันตามชื่อหรือประเภท', + }, + emptyState: { + noPluginsFound: 'ไม่พบปลั๊กอิน', + noAppsFound: 'ไม่พบแอป', + noWorkflowNodesFound: 'ไม่พบโหนดเวิร์กโฟลว์', + noKnowledgeBasesFound: 'ไม่พบฐานความรู้', + tryDifferentTerm: 'ลองใช้คำค้นหาที่แตกต่างออกไปหรือลบตัวกรอง {{mode}}', + trySpecificSearch: 'ลองใช้ {{shortcuts}} สำหรับการค้นหาเฉพาะ', + }, + groups: { + apps: 'แอปพลิเคชัน', + knowledgeBases: 'ฐานความรู้', + plugins: 'ปลั๊กอิน', + workflowNodes: 'โหนดเวิร์กโฟลว์', + }, + searchTitle: 'ค้นหาอะไรก็ได้', + searchFailed: 'การค้นหาล้มเหลว', + useAtForSpecific: 'ใช้ @ สําหรับบางประเภท', + noResults: 'ไม่พบผลลัพธ์', + searchTemporarilyUnavailable: 'การค้นหาไม่พร้อมใช้งานชั่วคราว', + someServicesUnavailable: 'บริการค้นหาบางบริการไม่พร้อมใช้งาน', + clearToSearchAll: 'ล้าง @ เพื่อค้นหาทั้งหมด', + searchPlaceholder: 'ค้นหาหรือพิมพ์ @ สําหรับคําสั่ง...', + servicesUnavailableMessage: 'บริการค้นหาบางบริการอาจประสบปัญหา ลองอีกครั้งในอีกสักครู่', + searching: 'กำลังค้นหา...', + searchHint: 'เริ่มพิมพ์เพื่อค้นหาทุกอย่างได้ทันที', + selectSearchType: 'เลือกสิ่งที่จะค้นหา', + commandHint: 'พิมพ์ @ เพื่อเรียกดูตามหมวดหมู่', + resultCount: '{{count}} ผลลัพธ์', + resultCount_other: '{{count}} ผลลัพธ์', + inScope: 'ใน {{scope}}s', + }, } export default translation diff --git a/web/i18n/th-TH/workflow.ts b/web/i18n/th-TH/workflow.ts index b5ed9b53e9..38841377ad 100644 --- a/web/i18n/th-TH/workflow.ts +++ b/web/i18n/th-TH/workflow.ts @@ -991,6 +991,10 @@ const translation = { dependentsDescription: 'โหนดที่อาศัยโหนดนี้', }, relationsTab: 'สัมพันธ์', + copyLastRun: 'คัดลอกการทำงานล่าสุด', + noLastRunFound: 'ไม่พบการทำงานก่อนหน้า', + copyLastRunError: 'ไม่สามารถคัดลอกข้อมูลการทำงานครั้งสุดท้ายได้', + noMatchingInputsFound: 'ไม่พบข้อมูลที่ตรงกันจากการรันครั้งล่าสุด', }, } diff --git a/web/i18n/tr-TR/app.ts b/web/i18n/tr-TR/app.ts index 61a7eb926e..023112b961 100644 --- a/web/i18n/tr-TR/app.ts +++ b/web/i18n/tr-TR/app.ts @@ -248,6 +248,49 @@ const translation = { maxActiveRequestsPlaceholder: 'Sınırsız için 0 girin', maxActiveRequests: 'Maksimum eş zamanlı istekler', maxActiveRequestsTip: 'Her uygulama için maksimum eşzamanlı aktif istek sayısı (sınırsız için 0)', + gotoAnything: { + actions: { + searchKnowledgeBasesDesc: 'Bilgi bankalarınızda arama yapın ve bu forumlara gidin', + searchWorkflowNodesDesc: 'Geçerli iş akışındaki düğümleri ada veya türe göre bulun ve atlayın', + searchApplications: 'Arama Uygulamaları', + searchKnowledgeBases: 'Bilgi Bankalarında Ara', + searchWorkflowNodes: 'Arama İş Akışı Düğümleri', + searchPluginsDesc: 'Eklentilerinizi arayın ve eklentilerinize gidin', + searchPlugins: 'Arama Eklentileri', + searchWorkflowNodesHelp: 'Bu özellik yalnızca bir iş akışını görüntülerken çalışır. Önce bir iş akışına gidin.', + searchApplicationsDesc: 'Uygulamalarınızı arayın ve uygulamalarınıza gidin', + }, + emptyState: { + noAppsFound: 'Uygulama bulunamadı', + noWorkflowNodesFound: 'İş akışı düğümü bulunamadı', + noKnowledgeBasesFound: 'Bilgi bankası bulunamadı', + noPluginsFound: 'Eklenti bulunamadı', + tryDifferentTerm: 'Farklı bir arama terimi deneyin veya {{mode}} filtresini kaldırın', + trySpecificSearch: 'Belirli aramalar için {{shortcuts}} deneyin', + }, + groups: { + apps: 'Uygulamalar', + plugins: 'Eklentiler', + knowledgeBases: 'Bilgi Tabanları', + workflowNodes: 'İş Akışı Düğümleri', + }, + searchFailed: 'Arama başarısız oldu', + clearToSearchAll: 'Tümünü aramak için @ işaretini kaldırın', + someServicesUnavailable: 'Bazı arama hizmetleri kullanılamıyor', + searchPlaceholder: 'Komutlar için @ arayın veya yazın...', + useAtForSpecific: 'Belirli türler için @ kullanın', + searchTemporarilyUnavailable: 'Arama geçici olarak kullanılamıyor', + searchTitle: 'Her şeyi arayın', + noResults: 'Sonuç bulunamadı', + servicesUnavailableMessage: 'Bazı arama hizmetlerinde sorunlar yaşanıyor olabilir. Kısa bir süre sonra tekrar deneyin.', + searching: 'Aranıyor...', + selectSearchType: 'Ne arayacağınızı seçin', + searchHint: 'Her şeyi anında aramak için yazmaya başlayın', + commandHint: 'Kategoriye göre göz atmak için @ yazın', + resultCount: '{{count}} sonuç', + resultCount_other: '{{count}} sonuç', + inScope: '{{scope}}s içinde', + }, } export default translation diff --git a/web/i18n/tr-TR/workflow.ts b/web/i18n/tr-TR/workflow.ts index 3b36788a83..1830f8895a 100644 --- a/web/i18n/tr-TR/workflow.ts +++ b/web/i18n/tr-TR/workflow.ts @@ -992,6 +992,10 @@ const translation = { noDependencies: 'Bağımlılık yok', }, relationsTab: 'Ilişkiler', + copyLastRun: 'Son Çalışmayı Kopyala', + noLastRunFound: 'Önceki çalışmaya rastlanmadı.', + noMatchingInputsFound: 'Son çalışmadan eşleşen giriş bulunamadı.', + copyLastRunError: 'Son çalışma girdilerini kopyalamak başarısız oldu.', }, } diff --git a/web/i18n/uk-UA/app.ts b/web/i18n/uk-UA/app.ts index aab4498acb..c785b55b42 100644 --- a/web/i18n/uk-UA/app.ts +++ b/web/i18n/uk-UA/app.ts @@ -252,6 +252,49 @@ const translation = { maxActiveRequestsPlaceholder: 'Введіть 0 для необмеженого', maxActiveRequests: 'Максимальна кількість одночасних запитів', maxActiveRequestsTip: 'Максимальна кількість одночасних активних запитів на додаток (0 для необмеженої кількості)', + gotoAnything: { + actions: { + searchApplications: 'Пошук додатків', + searchKnowledgeBases: 'Пошук по базах знань', + searchWorkflowNodes: 'Вузли документообігу пошуку', + searchApplicationsDesc: 'Шукайте та переходьте до своїх програм', + searchPluginsDesc: 'Пошук і навігація до ваших плагінів', + searchWorkflowNodesHelp: 'Ця функція працює лише під час перегляду робочого процесу. Спочатку перейдіть до робочого процесу.', + searchPlugins: 'Пошукові плагіни', + searchKnowledgeBasesDesc: 'Шукайте та переходьте до своїх баз знань', + searchWorkflowNodesDesc: 'Знаходьте вузли в поточному робочому процесі та переходьте до них за іменем або типом', + }, + emptyState: { + noPluginsFound: 'Плагінів не знайдено', + noKnowledgeBasesFound: 'Баз знань не знайдено', + noAppsFound: 'Не знайдено додатків', + noWorkflowNodesFound: 'Вузли бізнес-процесу не знайдено', + tryDifferentTerm: 'Спробуйте інший пошуковий термін або видаліть фільтр {{mode}}', + trySpecificSearch: 'Спробуйте {{shortcuts}} для конкретного пошуку', + }, + groups: { + knowledgeBases: 'Бази знань', + plugins: 'Плагіни', + apps: 'Програми', + workflowNodes: 'Вузли документообігу', + }, + searching: 'Пошук...', + searchTitle: 'Шукайте що завгодно', + searchFailed: 'Пошук не вдався', + clearToSearchAll: 'Очистіть @ для пошуку всіх', + noResults: 'Результатів не знайдено', + searchPlaceholder: 'Виконайте пошук або введіть @ для команд...', + searchTemporarilyUnavailable: 'Пошук тимчасово недоступний', + useAtForSpecific: 'Використовуйте @ для конкретних типів', + someServicesUnavailable: 'Деякі пошукові сервіси недоступні', + servicesUnavailableMessage: 'У деяких пошукових службах можуть виникати проблеми. Повторіть спробу за мить.', + selectSearchType: 'Виберіть, що шукати', + commandHint: 'Введіть @ для навігації за категоріями', + searchHint: 'Почніть вводити текст, щоб миттєво шукати все', + resultCount: '{{count}} результат', + resultCount_other: '{{count}} результатів', + inScope: 'у {{scope}}s', + }, } export default translation diff --git a/web/i18n/uk-UA/workflow.ts b/web/i18n/uk-UA/workflow.ts index 5effad6b16..1f9031e6fb 100644 --- a/web/i18n/uk-UA/workflow.ts +++ b/web/i18n/uk-UA/workflow.ts @@ -991,6 +991,10 @@ const translation = { dependentsDescription: 'Вузли, які спираються на цей вузол', }, relationsTab: 'Відносин', + copyLastRun: 'Копіювати останній запуск', + noLastRunFound: 'Жодного попереднього запуску не знайдено.', + copyLastRunError: 'Не вдалося скопіювати вхідні дані останнього виконання', + noMatchingInputsFound: 'Не знайдено відповідних вхідних даних з останнього запуску', }, } diff --git a/web/i18n/vi-VN/app.ts b/web/i18n/vi-VN/app.ts index 00e1a0bd5a..cca946dd01 100644 --- a/web/i18n/vi-VN/app.ts +++ b/web/i18n/vi-VN/app.ts @@ -252,6 +252,49 @@ const translation = { maxActiveRequestsPlaceholder: 'Nhập 0 để không giới hạn', maxActiveRequests: 'Số yêu cầu đồng thời tối đa', maxActiveRequestsTip: 'Số yêu cầu hoạt động đồng thời tối đa cho mỗi ứng dụng (0 để không giới hạn)', + gotoAnything: { + actions: { + searchPlugins: 'Tìm kiếm Plugin', + searchPluginsDesc: 'Tìm kiếm và điều hướng đến plugin của bạn', + searchKnowledgeBases: 'Tìm kiếm cơ sở kiến thức', + searchApplicationsDesc: 'Tìm kiếm và điều hướng đến các ứng dụng của bạn', + searchWorkflowNodesHelp: 'Tính năng này chỉ hoạt động khi xem quy trình làm việc. Điều hướng đến quy trình làm việc trước.', + searchWorkflowNodes: 'Tìm kiếm các nút quy trình làm việc', + searchApplications: 'Tìm kiếm ứng dụng', + searchWorkflowNodesDesc: 'Tìm và chuyển đến các nút trong quy trình làm việc hiện tại theo tên hoặc loại', + searchKnowledgeBasesDesc: 'Tìm kiếm và điều hướng đến cơ sở kiến thức của bạn', + }, + emptyState: { + noWorkflowNodesFound: 'Không tìm thấy nút quy trình làm việc', + noKnowledgeBasesFound: 'Không tìm thấy cơ sở kiến thức', + noPluginsFound: 'Không tìm thấy plugin', + noAppsFound: 'Không tìm thấy ứng dụng nào', + tryDifferentTerm: 'Thử từ khóa tìm kiếm khác hoặc xóa bộ lọc {{mode}}', + trySpecificSearch: 'Thử {{shortcuts}} để tìm kiếm cụ thể', + }, + groups: { + plugins: 'Plugin', + workflowNodes: 'Nút quy trình làm việc', + knowledgeBases: 'Cơ sở kiến thức', + apps: 'Ứng dụng', + }, + searchTemporarilyUnavailable: 'Tìm kiếm tạm thời không khả dụng', + clearToSearchAll: 'Xóa @ để tìm kiếm tất cả', + noResults: 'Không tìm thấy kết quả', + searching: 'Tìm kiếm...', + searchPlaceholder: 'Tìm kiếm hoặc nhập @ cho các lệnh...', + searchTitle: 'Tìm kiếm bất cứ thứ gì', + searchFailed: 'Tìm kiếm không thành công', + useAtForSpecific: 'Sử dụng @ cho các loại cụ thể', + someServicesUnavailable: 'Một số dịch vụ tìm kiếm không khả dụng', + servicesUnavailableMessage: 'Một số dịch vụ tìm kiếm có thể gặp sự cố. Thử lại trong giây lát.', + searchHint: 'Bắt đầu nhập để tìm kiếm mọi thứ ngay lập tức', + commandHint: 'Nhập @ để duyệt theo danh mục', + selectSearchType: 'Chọn nội dung để tìm kiếm', + resultCount: '{{count}} kết quả', + resultCount_other: '{{count}} kết quả', + inScope: 'trong {{scope}}s', + }, } export default translation diff --git a/web/i18n/vi-VN/workflow.ts b/web/i18n/vi-VN/workflow.ts index cd33142587..0cff7e1c5d 100644 --- a/web/i18n/vi-VN/workflow.ts +++ b/web/i18n/vi-VN/workflow.ts @@ -991,6 +991,10 @@ const translation = { dependentsDescription: 'Các nút dựa vào nút này', }, relationsTab: 'Mối quan hệ', + noLastRunFound: 'Không tìm thấy lần chạy trước', + noMatchingInputsFound: 'Không tìm thấy đầu vào nào khớp từ lần chạy trước', + copyLastRun: 'Sao chép lần chạy cuối', + copyLastRunError: 'Không thể sao chép đầu vào của lần chạy trước', }, } diff --git a/web/i18n/zh-Hans/app.ts b/web/i18n/zh-Hans/app.ts index 32cfc4cf36..6bb4837a65 100644 --- a/web/i18n/zh-Hans/app.ts +++ b/web/i18n/zh-Hans/app.ts @@ -251,6 +251,49 @@ const translation = { maxActiveRequests: '最大活跃请求数', maxActiveRequestsPlaceholder: '0 表示不限制', maxActiveRequestsTip: '当前应用的最大活跃请求数(0 表示不限制)', + gotoAnything: { + searchPlaceholder: '搜索或输入 @ 以使用命令...', + searchTitle: '搜索任何内容', + searching: '搜索中...', + noResults: '未找到结果', + searchFailed: '搜索失败', + searchTemporarilyUnavailable: '搜索暂时不可用', + servicesUnavailableMessage: '某些搜索服务可能遇到问题,请稍后再试。', + someServicesUnavailable: '某些搜索服务不可用', + resultCount: '{{count}} 个结果', + resultCount_other: '{{count}} 个结果', + inScope: '在 {{scope}}s 中', + clearToSearchAll: '清除 @ 以搜索全部', + useAtForSpecific: '使用 @ 进行特定类型搜索', + selectSearchType: '选择搜索内容', + searchHint: '开始输入即可立即搜索所有内容', + commandHint: '输入 @ 按类别浏览', + actions: { + searchApplications: '搜索应用程序', + searchApplicationsDesc: '搜索并导航到您的应用程序', + searchPlugins: '搜索插件', + searchPluginsDesc: '搜索并导航到您的插件', + searchKnowledgeBases: '搜索知识库', + searchKnowledgeBasesDesc: '搜索并导航到您的知识库', + searchWorkflowNodes: '搜索工作流节点', + searchWorkflowNodesDesc: '按名称或类型查找并跳转到当前工作流中的节点', + searchWorkflowNodesHelp: '此功能仅在查看工作流时有效。首先导航到工作流。', + }, + emptyState: { + noAppsFound: '未找到应用', + noPluginsFound: '未找到插件', + noKnowledgeBasesFound: '未找到知识库', + noWorkflowNodesFound: '未找到工作流节点', + tryDifferentTerm: '尝试不同的搜索词或移除 {{mode}} 过滤器', + trySpecificSearch: '尝试使用 {{shortcuts}} 进行特定搜索', + }, + groups: { + apps: '应用程序', + plugins: '插件', + knowledgeBases: '知识库', + workflowNodes: '工作流节点', + }, + }, } export default translation diff --git a/web/i18n/zh-Hans/workflow.ts b/web/i18n/zh-Hans/workflow.ts index 6a74dc7e0a..018404805d 100644 --- a/web/i18n/zh-Hans/workflow.ts +++ b/web/i18n/zh-Hans/workflow.ts @@ -958,6 +958,11 @@ const translation = { settingsTab: '设置', lastRunTab: '上次运行', relationsTab: '关系', + copyLastRun: '复制上次运行值', + noLastRunFound: '未找到上次运行记录', + noMatchingInputsFound: '上次运行中未找到匹配的输入', + lastRunInputsCopied: '已复制{{count}}个输入值', + copyLastRunError: '复制上次运行输入失败', noData: { description: '上次运行的结果将显示在这里', runThisNode: '运行此节点', diff --git a/web/i18n/zh-Hant/app.ts b/web/i18n/zh-Hant/app.ts index 8d1cc69f2a..13c6570d20 100644 --- a/web/i18n/zh-Hant/app.ts +++ b/web/i18n/zh-Hant/app.ts @@ -251,6 +251,49 @@ const translation = { maxActiveRequestsPlaceholder: '輸入 0 以表示無限', maxActiveRequests: '同時最大請求數', maxActiveRequestsTip: '每個應用程式可同時活躍請求的最大數量(0為無限制)', + gotoAnything: { + actions: { + searchWorkflowNodes: '搜索工作流節點', + searchPluginsDesc: '搜索並導航到您的外掛程式', + searchApplications: '搜索應用程式', + searchKnowledgeBases: '搜索知識庫', + searchKnowledgeBasesDesc: '搜索並導航到您的知識庫', + searchWorkflowNodesHelp: '此功能僅在查看工作流時有效。首先導航到工作流。', + searchApplicationsDesc: '搜索並導航到您的應用程式', + searchPlugins: '搜索外掛程式', + searchWorkflowNodesDesc: '按名稱或類型查找並跳轉到當前工作流中的節點', + }, + emptyState: { + noAppsFound: '未找到應用', + noWorkflowNodesFound: '未找到工作流節點', + noKnowledgeBasesFound: '未找到知識庫', + noPluginsFound: '未找到外掛程式', + tryDifferentTerm: '嘗試不同的搜索詞或移除 {{mode}} 過濾器', + trySpecificSearch: '嘗試使用 {{shortcuts}} 進行特定搜索', + }, + groups: { + apps: '應用程式', + knowledgeBases: '知識庫', + plugins: '外掛程式', + workflowNodes: '工作流節點', + }, + searchPlaceholder: '搜尋或鍵入 @ 以取得命令...', + searching: '搜索中...', + searchTitle: '搜索任何內容', + noResults: '未找到結果', + clearToSearchAll: '清除 @ 以搜尋全部', + searchFailed: '搜索失敗', + servicesUnavailableMessage: '某些搜索服務可能遇到問題。稍後再試一次。', + someServicesUnavailable: '某些搜索服務不可用', + useAtForSpecific: '對特定類型使用 @', + searchTemporarilyUnavailable: '搜索暫時不可用', + selectSearchType: '選擇要搜索的內容', + commandHint: '鍵入 @ 按類別流覽', + searchHint: '開始輸入以立即搜索所有內容', + resultCount: '{{count}} 個結果', + resultCount_other: '{{count}} 個結果', + inScope: '在 {{scope}}s 中', + }, } export default translation diff --git a/web/i18n/zh-Hant/workflow.ts b/web/i18n/zh-Hant/workflow.ts index fe703c7bc2..9c6a9e77ff 100644 --- a/web/i18n/zh-Hant/workflow.ts +++ b/web/i18n/zh-Hant/workflow.ts @@ -991,6 +991,10 @@ const translation = { noDependencies: '無依賴', noDependents: '無被依賴', }, + copyLastRun: '複製上一次運行', + copyLastRunError: '未能複製上一次運行的輸入', + noMatchingInputsFound: '在上次運行中未找到匹配的輸入', + noLastRunFound: '沒有找到之前的運行', }, } diff --git a/web/package.json b/web/package.json index a03334e4a4..742f674ee9 100644 --- a/web/package.json +++ b/web/package.json @@ -1,6 +1,6 @@ { "name": "dify-web", - "version": "1.7.1", + "version": "1.7.2", "private": true, "engines": { "node": ">=v22.11.0" @@ -75,6 +75,7 @@ "class-variance-authority": "^0.7.0", "classnames": "^2.5.1", "clsx": "^2.1.1", + "cmdk": "^1.1.1", "copy-to-clipboard": "^3.3.3", "crypto-js": "^4.2.0", "dayjs": "^1.11.13", diff --git a/web/pnpm-lock.yaml b/web/pnpm-lock.yaml index 1e36696a8a..2f03968bc1 100644 --- a/web/pnpm-lock.yaml +++ b/web/pnpm-lock.yaml @@ -153,6 +153,9 @@ importers: clsx: specifier: ^2.1.1 version: 2.1.1 + cmdk: + specifier: ^1.1.1 + version: 1.1.1(@types/react-dom@19.1.6(@types/react@19.1.8))(@types/react@19.1.8)(react-dom@19.1.0(react@19.1.0))(react@19.1.0) copy-to-clipboard: specifier: ^3.3.3 version: 3.3.3 @@ -2471,6 +2474,177 @@ packages: '@polka/url@1.0.0-next.29': resolution: {integrity: sha512-wwQAWhWSuHaag8c4q/KN/vCoeOJYshAIvMQwD4GpSb3OiZklFfvAgmj0VCBBImRpuF/aFgIRzllXlVX93Jevww==} + '@radix-ui/primitive@1.1.2': + resolution: {integrity: sha512-XnbHrrprsNqZKQhStrSwgRUQzoCI1glLzdw79xiZPoofhGICeZRSQ3dIxAKH1gb3OHfNf4d6f+vAv3kil2eggA==} + + '@radix-ui/react-compose-refs@1.1.2': + resolution: {integrity: sha512-z4eqJvfiNnFMHIIvXP3CY57y2WJs5g2v3X0zm9mEJkrkNv4rDxu+sg9Jh8EkXyeqBkB7SOcboo9dMVqhyrACIg==} + peerDependencies: + '@types/react': ~19.1.8 + react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc + peerDependenciesMeta: + '@types/react': + optional: true + + '@radix-ui/react-context@1.1.2': + resolution: {integrity: sha512-jCi/QKUM2r1Ju5a3J64TH2A5SpKAgh0LpknyqdQ4m6DCV0xJ2HG1xARRwNGPQfi1SLdLWZ1OJz6F4OMBBNiGJA==} + peerDependencies: + '@types/react': ~19.1.8 + react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc + peerDependenciesMeta: + '@types/react': + optional: true + + '@radix-ui/react-dialog@1.1.14': + resolution: {integrity: sha512-+CpweKjqpzTmwRwcYECQcNYbI8V9VSQt0SNFKeEBLgfucbsLssU6Ppq7wUdNXEGb573bMjFhVjKVll8rmV6zMw==} + peerDependencies: + '@types/react': ~19.1.8 + '@types/react-dom': ~19.1.6 + react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc + react-dom: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc + peerDependenciesMeta: + '@types/react': + optional: true + '@types/react-dom': + optional: true + + '@radix-ui/react-dismissable-layer@1.1.10': + resolution: {integrity: sha512-IM1zzRV4W3HtVgftdQiiOmA0AdJlCtMLe00FXaHwgt3rAnNsIyDqshvkIW3hj/iu5hu8ERP7KIYki6NkqDxAwQ==} + peerDependencies: + '@types/react': ~19.1.8 + '@types/react-dom': ~19.1.6 + react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc + react-dom: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc + peerDependenciesMeta: + '@types/react': + optional: true + '@types/react-dom': + optional: true + + '@radix-ui/react-focus-guards@1.1.2': + resolution: {integrity: sha512-fyjAACV62oPV925xFCrH8DR5xWhg9KYtJT4s3u54jxp+L/hbpTY2kIeEFFbFe+a/HCE94zGQMZLIpVTPVZDhaA==} + peerDependencies: + '@types/react': ~19.1.8 + react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc + peerDependenciesMeta: + '@types/react': + optional: true + + '@radix-ui/react-focus-scope@1.1.7': + resolution: {integrity: sha512-t2ODlkXBQyn7jkl6TNaw/MtVEVvIGelJDCG41Okq/KwUsJBwQ4XVZsHAVUkK4mBv3ewiAS3PGuUWuY2BoK4ZUw==} + peerDependencies: + '@types/react': ~19.1.8 + '@types/react-dom': ~19.1.6 + react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc + react-dom: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc + peerDependenciesMeta: + '@types/react': + optional: true + '@types/react-dom': + optional: true + + '@radix-ui/react-id@1.1.1': + resolution: {integrity: sha512-kGkGegYIdQsOb4XjsfM97rXsiHaBwco+hFI66oO4s9LU+PLAC5oJ7khdOVFxkhsmlbpUqDAvXw11CluXP+jkHg==} + peerDependencies: + '@types/react': ~19.1.8 + react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc + peerDependenciesMeta: + '@types/react': + optional: true + + '@radix-ui/react-portal@1.1.9': + resolution: {integrity: sha512-bpIxvq03if6UNwXZ+HTK71JLh4APvnXntDc6XOX8UVq4XQOVl7lwok0AvIl+b8zgCw3fSaVTZMpAPPagXbKmHQ==} + peerDependencies: + '@types/react': ~19.1.8 + '@types/react-dom': ~19.1.6 + react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc + react-dom: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc + peerDependenciesMeta: + '@types/react': + optional: true + '@types/react-dom': + optional: true + + '@radix-ui/react-presence@1.1.4': + resolution: {integrity: sha512-ueDqRbdc4/bkaQT3GIpLQssRlFgWaL/U2z/S31qRwwLWoxHLgry3SIfCwhxeQNbirEUXFa+lq3RL3oBYXtcmIA==} + peerDependencies: + '@types/react': ~19.1.8 + '@types/react-dom': ~19.1.6 + react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc + react-dom: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc + peerDependenciesMeta: + '@types/react': + optional: true + '@types/react-dom': + optional: true + + '@radix-ui/react-primitive@2.1.3': + resolution: {integrity: sha512-m9gTwRkhy2lvCPe6QJp4d3G1TYEUHn/FzJUtq9MjH46an1wJU+GdoGC5VLof8RX8Ft/DlpshApkhswDLZzHIcQ==} + peerDependencies: + '@types/react': ~19.1.8 + '@types/react-dom': ~19.1.6 + react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc + react-dom: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc + peerDependenciesMeta: + '@types/react': + optional: true + '@types/react-dom': + optional: true + + '@radix-ui/react-slot@1.2.3': + resolution: {integrity: sha512-aeNmHnBxbi2St0au6VBVC7JXFlhLlOnvIIlePNniyUNAClzmtAUEY8/pBiK3iHjufOlwA+c20/8jngo7xcrg8A==} + peerDependencies: + '@types/react': ~19.1.8 + react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc + peerDependenciesMeta: + '@types/react': + optional: true + + '@radix-ui/react-use-callback-ref@1.1.1': + resolution: {integrity: sha512-FkBMwD+qbGQeMu1cOHnuGB6x4yzPjho8ap5WtbEJ26umhgqVXbhekKUQO+hZEL1vU92a3wHwdp0HAcqAUF5iDg==} + peerDependencies: + '@types/react': ~19.1.8 + react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc + peerDependenciesMeta: + '@types/react': + optional: true + + '@radix-ui/react-use-controllable-state@1.2.2': + resolution: {integrity: sha512-BjasUjixPFdS+NKkypcyyN5Pmg83Olst0+c6vGov0diwTEo6mgdqVR6hxcEgFuh4QrAs7Rc+9KuGJ9TVCj0Zzg==} + peerDependencies: + '@types/react': ~19.1.8 + react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc + peerDependenciesMeta: + '@types/react': + optional: true + + '@radix-ui/react-use-effect-event@0.0.2': + resolution: {integrity: sha512-Qp8WbZOBe+blgpuUT+lw2xheLP8q0oatc9UpmiemEICxGvFLYmHm9QowVZGHtJlGbS6A6yJ3iViad/2cVjnOiA==} + peerDependencies: + '@types/react': ~19.1.8 + react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc + peerDependenciesMeta: + '@types/react': + optional: true + + '@radix-ui/react-use-escape-keydown@1.1.1': + resolution: {integrity: sha512-Il0+boE7w/XebUHyBjroE+DbByORGR9KKmITzbR7MyQ4akpORYP/ZmbhAr0DG7RmmBqoOnZdy2QlvajJ2QA59g==} + peerDependencies: + '@types/react': ~19.1.8 + react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc + peerDependenciesMeta: + '@types/react': + optional: true + + '@radix-ui/react-use-layout-effect@1.1.1': + resolution: {integrity: sha512-RbJRS4UWQFkzHTTwVymMTUv8EqYhOp8dOOviLj2ugtTiXRaRQS7GLGxZTLL1jWhMeoSCf5zmcZkqTl9IiYfXcQ==} + peerDependencies: + '@types/react': ~19.1.8 + react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc + peerDependenciesMeta: + '@types/react': + optional: true + '@react-aria/focus@3.20.5': resolution: {integrity: sha512-JpFtXmWQ0Oca7FcvkqgjSyo6xEP7v3oQOLUId6o0xTvm4AD5W0mU2r3lYrbhsJ+XxdUUX4AVR5473sZZ85kU4A==} peerDependencies: @@ -3651,6 +3825,10 @@ packages: argparse@2.0.1: resolution: {integrity: sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==} + aria-hidden@1.2.6: + resolution: {integrity: sha512-ik3ZgC9dY/lYVVM++OISsaYDeg1tb0VtP5uL3ouh1koGOaUMDPpbFIei4JkFimWUFPn90sbMNMXQAIVOlnYKJA==} + engines: {node: '>=10'} + aria-query@5.3.0: resolution: {integrity: sha512-b0P0sZPKtyu8HkeRAfCq0IfURZK+SuwMjY1UXGBU27wpAiTwQAIlq56IbIO+ytk/JjS1fMR14ee5WBBfKi5J6A==} @@ -4042,6 +4220,12 @@ packages: resolution: {integrity: sha512-eYm0QWBtUrBWZWG0d386OGAw16Z995PiOVo2B7bjWSbHedGl5e0ZWaq65kOGgUSNesEIDkB9ISbTg/JK9dhCZA==} engines: {node: '>=6'} + cmdk@1.1.1: + resolution: {integrity: sha512-Vsv7kFaXm+ptHDMZ7izaRsP70GgrW9NBNGswt9OZaVBLlE0SNpDq8eu/VGXyF9r7M0azK3Wy7OlYXsuyYLFzHg==} + peerDependencies: + react: ^18 || ^19 || ^19.0.0-rc + react-dom: ^18 || ^19 || ^19.0.0-rc + co@4.6.0: resolution: {integrity: sha512-QVb0dM5HvG+uaxitm8wONl7jltx8dqhfU33DcqtOZcLSVIKSDDLDi7+0LbAKiyI8hD9u42m2YxXSkMGWThaecQ==} engines: {iojs: '>= 1.0.0', node: '>= 0.12.0'} @@ -4490,6 +4674,9 @@ packages: resolution: {integrity: sha512-TLz+x/vEXm/Y7P7wn1EJFNLxYpUD4TgMosxY6fAVJUnJMbupHBOncxyWUG9OpTaH9EBD7uFI5LfEgmMOc54DsA==} engines: {node: '>=8'} + detect-node-es@1.1.0: + resolution: {integrity: sha512-ypdmJU/TbBby2Dxibuv7ZLW3Bs1QEmM7nHjEANfohJLvE0XVujisn1qPJcZxg+qDucsr+bP6fLD1rPS3AhJ7EQ==} + devalue@5.1.1: resolution: {integrity: sha512-maua5KUiapvEwiEAe+XnlZ3Rh0GD+qI1J/nb9vrJc3muPXvcF/8gXYTWF76+5DAqHyDUtOIImEuo0YKE9mshVw==} @@ -5252,6 +5439,10 @@ packages: resolution: {integrity: sha512-vpeMIQKxczTD/0s2CdEWHcb0eeJe6TFjxb+J5xgX7hScxqrGuyjmv4c1D4A/gelKfyox0gJJwIHF+fLjeaM8kQ==} engines: {node: '>=18'} + get-nonce@1.0.1: + resolution: {integrity: sha512-FJhYRoDaiatfEkUK8HKlicmu/3SGFD51q3itKDGoSTysQJBnfOcxU5GxnhE1E6soB76MbT0MBtnKJuXyAx+96Q==} + engines: {node: '>=6'} + get-package-type@0.1.0: resolution: {integrity: sha512-pjzuKtY64GYfWizNAJ0fr9VqttZkNiK2iS430LtIHzjBEr6bX8Am2zm4sW4Ro5wjWW5cAlRL1qAMTcXbjNAO2Q==} engines: {node: '>=8.0.0'} @@ -7068,6 +7259,26 @@ packages: resolution: {integrity: sha512-jCvmsr+1IUSMUyzOkRcvnVbX3ZYC6g9TDrDbFuFmRDq7PD4yaGbLKNQL6k2jnArV8hjYxh7hVhAZB6s9HDGpZA==} engines: {node: '>=0.10.0'} + react-remove-scroll-bar@2.3.8: + resolution: {integrity: sha512-9r+yi9+mgU33AKcj6IbT9oRCO78WriSj6t/cF8DWBZJ9aOGPOTEDvdUDz1FwKim7QXWwmHqtdHnRJfhAxEG46Q==} + engines: {node: '>=10'} + peerDependencies: + '@types/react': ~19.1.8 + react: ^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0 + peerDependenciesMeta: + '@types/react': + optional: true + + react-remove-scroll@2.7.1: + resolution: {integrity: sha512-HpMh8+oahmIdOuS5aFKKY6Pyog+FNaZV/XyJOq7b4YFwsFHe5yYfdbIalI4k3vU2nSDql7YskmUseHsRrJqIPA==} + engines: {node: '>=10'} + peerDependencies: + '@types/react': ~19.1.8 + react: ^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0 || ^19.0.0-rc + peerDependenciesMeta: + '@types/react': + optional: true + react-rnd@10.5.2: resolution: {integrity: sha512-0Tm4x7k7pfHf2snewJA8x7Nwgt3LV+58MVEWOVsFjk51eYruFEa6Wy7BNdxt4/lH0wIRsu7Gm3KjSXY2w7YaNw==} peerDependencies: @@ -7087,6 +7298,16 @@ packages: react-dom: '>=16.9.0' sortablejs: '1' + react-style-singleton@2.2.3: + resolution: {integrity: sha512-b6jSvxvVnyptAiLjbkWLE/lOnR4lfTtDAl+eUC7RZy+QQWc6wRzIV2CE6xBuMmDxc2qIihtDCZD5NPOFl7fRBQ==} + engines: {node: '>=10'} + peerDependencies: + '@types/react': ~19.1.8 + react: ^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0 || ^19.0.0-rc + peerDependenciesMeta: + '@types/react': + optional: true + react-syntax-highlighter@15.6.1: resolution: {integrity: sha512-OqJ2/vL7lEeV5zTJyG7kmARppUjiB9h9udl4qHQjjgEos66z00Ia0OckwYfRxCSFrW8RJIBnsBwQsHZbVPspqg==} peerDependencies: @@ -7959,6 +8180,16 @@ packages: resolution: {integrity: sha512-oCwdVC7mTuWiPyjLUz/COz5TLk6wgp0RCsN+wHZ2Ekneac9w8uuV0njcbbie2ME+Vs+d6duwmYuR3HgQXs1fOg==} engines: {node: '>= 0.4'} + use-callback-ref@1.3.3: + resolution: {integrity: sha512-jQL3lRnocaFtu3V00JToYz/4QkNWswxijDaCVNZRiRTO3HQDLsdu1ZtmIUvV4yPp+rvWm5j0y0TG/S61cuijTg==} + engines: {node: '>=10'} + peerDependencies: + '@types/react': ~19.1.8 + react: ^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0 || ^19.0.0-rc + peerDependenciesMeta: + '@types/react': + optional: true + use-composed-ref@1.4.0: resolution: {integrity: sha512-djviaxuOOh7wkj0paeO1Q/4wMZ8Zrnag5H6yBvzN7AKKe8beOaED9SF5/ByLqsku8NP4zQqsvM2u3ew/tJK8/w==} peerDependencies: @@ -7992,6 +8223,16 @@ packages: '@types/react': optional: true + use-sidecar@1.1.3: + resolution: {integrity: sha512-Fedw0aZvkhynoPYlA5WXrMCAMm+nSWdZt6lzJQ7Ok8S6Q+VsHmHpRWndVRJ8Be0ZbkfPc5LRYH+5XrzXcEeLRQ==} + engines: {node: '>=10'} + peerDependencies: + '@types/react': ~19.1.8 + react: ^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0 || ^19.0.0-rc + peerDependenciesMeta: + '@types/react': + optional: true + use-strict@1.0.1: resolution: {integrity: sha512-IeiWvvEXfW5ltKVMkxq6FvNf2LojMKvB2OCeja6+ct24S1XOmQw2dGr2JyndwACWAGJva9B7yPHwAmeA9QCqAQ==} @@ -10470,6 +10711,149 @@ snapshots: '@polka/url@1.0.0-next.29': {} + '@radix-ui/primitive@1.1.2': {} + + '@radix-ui/react-compose-refs@1.1.2(@types/react@19.1.8)(react@19.1.0)': + dependencies: + react: 19.1.0 + optionalDependencies: + '@types/react': 19.1.8 + + '@radix-ui/react-context@1.1.2(@types/react@19.1.8)(react@19.1.0)': + dependencies: + react: 19.1.0 + optionalDependencies: + '@types/react': 19.1.8 + + '@radix-ui/react-dialog@1.1.14(@types/react-dom@19.1.6(@types/react@19.1.8))(@types/react@19.1.8)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)': + dependencies: + '@radix-ui/primitive': 1.1.2 + '@radix-ui/react-compose-refs': 1.1.2(@types/react@19.1.8)(react@19.1.0) + '@radix-ui/react-context': 1.1.2(@types/react@19.1.8)(react@19.1.0) + '@radix-ui/react-dismissable-layer': 1.1.10(@types/react-dom@19.1.6(@types/react@19.1.8))(@types/react@19.1.8)(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@radix-ui/react-focus-guards': 1.1.2(@types/react@19.1.8)(react@19.1.0) + '@radix-ui/react-focus-scope': 1.1.7(@types/react-dom@19.1.6(@types/react@19.1.8))(@types/react@19.1.8)(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@radix-ui/react-id': 1.1.1(@types/react@19.1.8)(react@19.1.0) + '@radix-ui/react-portal': 1.1.9(@types/react-dom@19.1.6(@types/react@19.1.8))(@types/react@19.1.8)(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@radix-ui/react-presence': 1.1.4(@types/react-dom@19.1.6(@types/react@19.1.8))(@types/react@19.1.8)(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@radix-ui/react-primitive': 2.1.3(@types/react-dom@19.1.6(@types/react@19.1.8))(@types/react@19.1.8)(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@radix-ui/react-slot': 1.2.3(@types/react@19.1.8)(react@19.1.0) + '@radix-ui/react-use-controllable-state': 1.2.2(@types/react@19.1.8)(react@19.1.0) + aria-hidden: 1.2.6 + react: 19.1.0 + react-dom: 19.1.0(react@19.1.0) + react-remove-scroll: 2.7.1(@types/react@19.1.8)(react@19.1.0) + optionalDependencies: + '@types/react': 19.1.8 + '@types/react-dom': 19.1.6(@types/react@19.1.8) + + '@radix-ui/react-dismissable-layer@1.1.10(@types/react-dom@19.1.6(@types/react@19.1.8))(@types/react@19.1.8)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)': + dependencies: + '@radix-ui/primitive': 1.1.2 + '@radix-ui/react-compose-refs': 1.1.2(@types/react@19.1.8)(react@19.1.0) + '@radix-ui/react-primitive': 2.1.3(@types/react-dom@19.1.6(@types/react@19.1.8))(@types/react@19.1.8)(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@radix-ui/react-use-callback-ref': 1.1.1(@types/react@19.1.8)(react@19.1.0) + '@radix-ui/react-use-escape-keydown': 1.1.1(@types/react@19.1.8)(react@19.1.0) + react: 19.1.0 + react-dom: 19.1.0(react@19.1.0) + optionalDependencies: + '@types/react': 19.1.8 + '@types/react-dom': 19.1.6(@types/react@19.1.8) + + '@radix-ui/react-focus-guards@1.1.2(@types/react@19.1.8)(react@19.1.0)': + dependencies: + react: 19.1.0 + optionalDependencies: + '@types/react': 19.1.8 + + '@radix-ui/react-focus-scope@1.1.7(@types/react-dom@19.1.6(@types/react@19.1.8))(@types/react@19.1.8)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)': + dependencies: + '@radix-ui/react-compose-refs': 1.1.2(@types/react@19.1.8)(react@19.1.0) + '@radix-ui/react-primitive': 2.1.3(@types/react-dom@19.1.6(@types/react@19.1.8))(@types/react@19.1.8)(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@radix-ui/react-use-callback-ref': 1.1.1(@types/react@19.1.8)(react@19.1.0) + react: 19.1.0 + react-dom: 19.1.0(react@19.1.0) + optionalDependencies: + '@types/react': 19.1.8 + '@types/react-dom': 19.1.6(@types/react@19.1.8) + + '@radix-ui/react-id@1.1.1(@types/react@19.1.8)(react@19.1.0)': + dependencies: + '@radix-ui/react-use-layout-effect': 1.1.1(@types/react@19.1.8)(react@19.1.0) + react: 19.1.0 + optionalDependencies: + '@types/react': 19.1.8 + + '@radix-ui/react-portal@1.1.9(@types/react-dom@19.1.6(@types/react@19.1.8))(@types/react@19.1.8)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)': + dependencies: + '@radix-ui/react-primitive': 2.1.3(@types/react-dom@19.1.6(@types/react@19.1.8))(@types/react@19.1.8)(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@radix-ui/react-use-layout-effect': 1.1.1(@types/react@19.1.8)(react@19.1.0) + react: 19.1.0 + react-dom: 19.1.0(react@19.1.0) + optionalDependencies: + '@types/react': 19.1.8 + '@types/react-dom': 19.1.6(@types/react@19.1.8) + + '@radix-ui/react-presence@1.1.4(@types/react-dom@19.1.6(@types/react@19.1.8))(@types/react@19.1.8)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)': + dependencies: + '@radix-ui/react-compose-refs': 1.1.2(@types/react@19.1.8)(react@19.1.0) + '@radix-ui/react-use-layout-effect': 1.1.1(@types/react@19.1.8)(react@19.1.0) + react: 19.1.0 + react-dom: 19.1.0(react@19.1.0) + optionalDependencies: + '@types/react': 19.1.8 + '@types/react-dom': 19.1.6(@types/react@19.1.8) + + '@radix-ui/react-primitive@2.1.3(@types/react-dom@19.1.6(@types/react@19.1.8))(@types/react@19.1.8)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)': + dependencies: + '@radix-ui/react-slot': 1.2.3(@types/react@19.1.8)(react@19.1.0) + react: 19.1.0 + react-dom: 19.1.0(react@19.1.0) + optionalDependencies: + '@types/react': 19.1.8 + '@types/react-dom': 19.1.6(@types/react@19.1.8) + + '@radix-ui/react-slot@1.2.3(@types/react@19.1.8)(react@19.1.0)': + dependencies: + '@radix-ui/react-compose-refs': 1.1.2(@types/react@19.1.8)(react@19.1.0) + react: 19.1.0 + optionalDependencies: + '@types/react': 19.1.8 + + '@radix-ui/react-use-callback-ref@1.1.1(@types/react@19.1.8)(react@19.1.0)': + dependencies: + react: 19.1.0 + optionalDependencies: + '@types/react': 19.1.8 + + '@radix-ui/react-use-controllable-state@1.2.2(@types/react@19.1.8)(react@19.1.0)': + dependencies: + '@radix-ui/react-use-effect-event': 0.0.2(@types/react@19.1.8)(react@19.1.0) + '@radix-ui/react-use-layout-effect': 1.1.1(@types/react@19.1.8)(react@19.1.0) + react: 19.1.0 + optionalDependencies: + '@types/react': 19.1.8 + + '@radix-ui/react-use-effect-event@0.0.2(@types/react@19.1.8)(react@19.1.0)': + dependencies: + '@radix-ui/react-use-layout-effect': 1.1.1(@types/react@19.1.8)(react@19.1.0) + react: 19.1.0 + optionalDependencies: + '@types/react': 19.1.8 + + '@radix-ui/react-use-escape-keydown@1.1.1(@types/react@19.1.8)(react@19.1.0)': + dependencies: + '@radix-ui/react-use-callback-ref': 1.1.1(@types/react@19.1.8)(react@19.1.0) + react: 19.1.0 + optionalDependencies: + '@types/react': 19.1.8 + + '@radix-ui/react-use-layout-effect@1.1.1(@types/react@19.1.8)(react@19.1.0)': + dependencies: + react: 19.1.0 + optionalDependencies: + '@types/react': 19.1.8 + '@react-aria/focus@3.20.5(react-dom@19.1.0(react@19.1.0))(react@19.1.0)': dependencies: '@react-aria/interactions': 3.25.3(react-dom@19.1.0(react@19.1.0))(react@19.1.0) @@ -11968,6 +12352,10 @@ snapshots: argparse@2.0.1: {} + aria-hidden@1.2.6: + dependencies: + tslib: 2.8.1 + aria-query@5.3.0: dependencies: dequal: 2.0.3 @@ -12388,6 +12776,18 @@ snapshots: clsx@2.1.1: {} + cmdk@1.1.1(@types/react-dom@19.1.6(@types/react@19.1.8))(@types/react@19.1.8)(react-dom@19.1.0(react@19.1.0))(react@19.1.0): + dependencies: + '@radix-ui/react-compose-refs': 1.1.2(@types/react@19.1.8)(react@19.1.0) + '@radix-ui/react-dialog': 1.1.14(@types/react-dom@19.1.6(@types/react@19.1.8))(@types/react@19.1.8)(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@radix-ui/react-id': 1.1.1(@types/react@19.1.8)(react@19.1.0) + '@radix-ui/react-primitive': 2.1.3(@types/react-dom@19.1.6(@types/react@19.1.8))(@types/react@19.1.8)(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + react: 19.1.0 + react-dom: 19.1.0(react@19.1.0) + transitivePeerDependencies: + - '@types/react' + - '@types/react-dom' + co@4.6.0: {} code-inspector-core@0.18.3: @@ -12862,6 +13262,8 @@ snapshots: detect-newline@3.1.0: {} + detect-node-es@1.1.0: {} + devalue@5.1.1: {} devlop@1.1.0: @@ -13887,6 +14289,8 @@ snapshots: get-east-asian-width@1.3.0: {} + get-nonce@1.0.1: {} + get-package-type@0.1.0: {} get-stream@5.2.0: @@ -16275,6 +16679,25 @@ snapshots: react-refresh@0.14.2: {} + react-remove-scroll-bar@2.3.8(@types/react@19.1.8)(react@19.1.0): + dependencies: + react: 19.1.0 + react-style-singleton: 2.2.3(@types/react@19.1.8)(react@19.1.0) + tslib: 2.8.1 + optionalDependencies: + '@types/react': 19.1.8 + + react-remove-scroll@2.7.1(@types/react@19.1.8)(react@19.1.0): + dependencies: + react: 19.1.0 + react-remove-scroll-bar: 2.3.8(@types/react@19.1.8)(react@19.1.0) + react-style-singleton: 2.2.3(@types/react@19.1.8)(react@19.1.0) + tslib: 2.8.1 + use-callback-ref: 1.3.3(@types/react@19.1.8)(react@19.1.0) + use-sidecar: 1.1.3(@types/react@19.1.8)(react@19.1.0) + optionalDependencies: + '@types/react': 19.1.8 + react-rnd@10.5.2(react-dom@19.1.0(react@19.1.0))(react@19.1.0): dependencies: re-resizable: 6.11.2(react-dom@19.1.0(react@19.1.0))(react@19.1.0) @@ -16297,6 +16720,14 @@ snapshots: sortablejs: 1.15.6 tiny-invariant: 1.2.0 + react-style-singleton@2.2.3(@types/react@19.1.8)(react@19.1.0): + dependencies: + get-nonce: 1.0.1 + react: 19.1.0 + tslib: 2.8.1 + optionalDependencies: + '@types/react': 19.1.8 + react-syntax-highlighter@15.6.1(react@19.1.0): dependencies: '@babel/runtime': 7.27.6 @@ -17322,6 +17753,13 @@ snapshots: punycode: 1.4.1 qs: 6.14.0 + use-callback-ref@1.3.3(@types/react@19.1.8)(react@19.1.0): + dependencies: + react: 19.1.0 + tslib: 2.8.1 + optionalDependencies: + '@types/react': 19.1.8 + use-composed-ref@1.4.0(@types/react@19.1.8)(react@19.1.0): dependencies: react: 19.1.0 @@ -17346,6 +17784,14 @@ snapshots: optionalDependencies: '@types/react': 19.1.8 + use-sidecar@1.1.3(@types/react@19.1.8)(react@19.1.0): + dependencies: + detect-node-es: 1.1.0 + react: 19.1.0 + tslib: 2.8.1 + optionalDependencies: + '@types/react': 19.1.8 + use-strict@1.0.1: {} use-sync-external-store@1.5.0(react@19.1.0): diff --git a/web/utils/app-redirection.ts b/web/utils/app-redirection.ts index 93273129dc..dfecbd17d4 100644 --- a/web/utils/app-redirection.ts +++ b/web/utils/app-redirection.ts @@ -1,17 +1,25 @@ import type { AppMode } from '@/types/app' +export const getRedirectionPath = ( + isCurrentWorkspaceEditor: boolean, + app: { id: string, mode: AppMode }, +) => { + if (!isCurrentWorkspaceEditor) { + return `/app/${app.id}/overview` + } + else { + if (app.mode === 'workflow' || app.mode === 'advanced-chat') + return `/app/${app.id}/workflow` + else + return `/app/${app.id}/configuration` + } +} + export const getRedirection = ( isCurrentWorkspaceEditor: boolean, app: { id: string, mode: AppMode }, redirectionFunc: (href: string) => void, ) => { - if (!isCurrentWorkspaceEditor) { - redirectionFunc(`/app/${app.id}/overview`) - } - else { - if (app.mode === 'workflow' || app.mode === 'advanced-chat') - redirectionFunc(`/app/${app.id}/workflow`) - else - redirectionFunc(`/app/${app.id}/configuration`) - } + const redirectionPath = getRedirectionPath(isCurrentWorkspaceEditor, app) + redirectionFunc(redirectionPath) }