Skip to content

feat: device settings sync #6

@danielhe4rt

Description

@danielhe4rt

One of our goals is to support inside a single profile, many devices at the same time.

The idea is: read the profile settings and bring all the decks inside of it when you first start with a selected profile.

image

Also, we should be able to easily implement new deck components:

<div className="h-screen w-full overflow-auto flex">
    <ResizablePanelGroup direction="vertical">
        <ResizablePanel defaultSize={200} minSize={0} className="px-10  ">
            {props.selectedDevice === "streamdeckplus" && (
                <StreamDeckPlus droppedItems={props.droppedItems}/>
            )}
        </ResizablePanel>
        <ResizableHandle withHandle/>
        <DeckSettings/>
    </ResizablePanelGroup>
</div>

Tip

To make sure that it's working properly, implement a new component for StreamDeck Mini (3x3 buttons grid)

Metadata

Metadata

Assignees

No one assigned

    Labels

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions