* -------------------------------------------------------------------------
* This file is part of the MindStudio project.
* Copyright (c) 2025 Huawei Technologies Co.,Ltd.
*
* MindStudio is licensed under Mulan PSL v2.
* You can use this software according to the terms and conditions of the Mulan PSL v2.
* You may obtain a copy of Mulan PSL v2 at:
*
* http://license.coscl.org.cn/MulanPSL2
*
* THIS SOFTWARE IS PROVIDED ON AN "AS IS" BASIS, WITHOUT WARRANTIES OF ANY KIND,
* EITHER EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO NON-INFRINGEMENT,
* MERCHANTABILITY OR FIT FOR A PARTICULAR PURPOSE.
* See the Mulan PSL v2 for more details.
* -------------------------------------------------------------------------
*/
import styled from '@emotion/styled';
import { observer } from 'mobx-react';
import * as React from 'react';
import type { Session } from '../entity/session';
import { TimeMakerButton } from './TimeMakerButton';
import { UnitsFilter } from './UnitsFilter';
import { CategorySearch } from './CategorySearch';
import { FilterLinkLine } from './FilterLinkLine';
const Container = styled.div`
display: flex;
align-items: center;
text-align: center;
font-size: 12px;
margin-right: 3px;
svg {
cursor: pointer;
}
`;
export const ButtonGroup = observer(({ session }: { session: Session }) => {
const unit = session.selectedUnits[0];
const isRenderLink = !(session.isSimulation && session.areFlagEventsHidden);
return (<Container>
<TimeMakerButton session={session} />
<UnitsFilter session={session} />
<CategorySearch session={session} />
{isRenderLink && <FilterLinkLine session={session}/>}
{session.buttons.map((_Button, index) => <_Button session={session} key={`${session.id}-${index}`} />)}
{unit?.buttons?.map((_Button, index) => <_Button session={session} key={`${unit.name}-${index}`} />)}
</Container>);
});