Kvaser CanKing GUI Extensions SDK - v7.3.0
    Preparing search index...

    Module controls

    This module includes UI controls implemented as React components.

    To be able to use these controls the CanKingDataProvider component must be present in the component tree above your component. Normally the CanKingDataProvider is added at the root of the component tree.

    import { useSearchParams } from 'react-router-dom';
    import { useProjectData } from '@kvaser/canking-api/canking';
    import { CanChannelSelectControl, FillBox } from '@kvaser/canking-api/controls';

    // If any data should be stored in the project file then add it to this interface
    interface IProjectViewData {
    // This is an example showing how to store the selected channel id to the project file
    channelId: string;
    }

    // Define any default values for the project data that will be used when the component is created
    const defaultProjectViewData: IProjectViewData = {
    channelId: '',
    };

    function WorkspaceView() {
    // Get this view's unique id from search params
    const [searchParams] = useSearchParams();
    const idString = searchParams.get('id');
    const id = idString !== null ? Number.parseInt(idString, 10) : -1;

    // Use the useProjectData hook to serialize/deserialize your view data to the project
    const [projectData, setProjectData] = useProjectData<IProjectViewData>(id, defaultProjectViewData);

    // A callback that will get the new selected channel id and save it to the project data
    const onChannelIdentifierChange = (channelId: string) => {
    const data = { ...projectData };
    data.channelId = channelId;
    setProjectData(data);
    };

    return (
    <FillBox component="form">
    <div>Add your elements here!</div>
    <div>This is an example how to use the CanChannelSelectControl:</div>
    <CanChannelSelectControl
    channelIdentifier={projectData.channelId}
    onChannelIdentifierChange={onChannelIdentifierChange}
    hideSectionControl
    />
    </FillBox>
    );
    }

    export default WorkspaceView;

    Interfaces

    ButtonGroupProps
    ButtonProps
    CanChannelSelectControlProps
    CanIdentifierControlProps
    CanIdentifierFrameControlProps
    CanIdentifierGeneratorControlProps
    CanIdentifierGeneratorSettingsControlProps
    CheckboxControlProps
    ContextMenuProps
    FormControlRowProps
    ILocalizedStrings
    IMessageDatabase
    InlineEditorProps
    LabelProps
    LinChannelSelectControlProps
    LinIdentifierControlProps
    LinIdentifierFrameControlProps
    LinIdentifierGeneratorControlProps
    LinIdentifierGeneratorSettingsControlProps
    NumberRangeControlProps
    RadioControlProps
    RadioGroupControlProps
    SectionControlProps
    SelectControlProps
    SelectMessageDialogProps
    SelectSignalDialogProps
    TableColumn
    TableControlProps
    TextControlProps
    ToggleButtonGroupProps
    ToggleButtonProps
    ToolbarControlProps
    toolbarItem
    ValidateableTextControlProps

    Type Aliases

    canIdentifierGeneratorType
    canIdentifierType
    ContextMenuOption
    linIdentifierGeneratorType
    SelectOption
    StringsMap

    Variables

    FillBox
    OneLineButton
    SizedBox
    TabsPanel

    Functions

    CanChannelSelectControl
    CanIdentifierControl
    CanIdentifierFrameControl
    CanIdentifierGeneratorControl
    CanIdentifierGeneratorSettingsControl
    CanKingDataProvider
    CheckboxControl
    ColumnItemControl
    ContextMenu
    FormControlRow
    InlineEditor
    LinChannelSelectControl
    LinIdentifierControl
    LinIdentifierFrameControl
    LinIdentifierGeneratorControl
    LinIdentifierGeneratorSettingsControl
    NumberRangeControl
    RadioControl
    RadioGroupControl
    SectionControl
    SelectControl
    SelectMessageDialog
    SelectSignalDialog
    TableControl
    TextControl
    ToolbarControl
    useColumnItem
    useColumnItems
    useMessageDatabases
    ValidateableTextControl