feat(wired-ui): expand advanced wired editors

This commit is contained in:
Lorenzune
2026-03-21 14:27:57 +01:00
parent cb0a9242b5
commit 27cb71f0cc
90 changed files with 3529 additions and 538 deletions
@@ -9,8 +9,20 @@ import { WiredActionSendSignalView } from './WiredActionSendSignalView';
import { WiredActionFurniAreaView } from '../selectors/WiredActionFurniAreaView';
import { WiredSelectorFurniNeighborhoodView } from '../selectors/WiredSelectorFurniNeighborhoodView';
import { WiredSelectorFurniByTypeView } from '../selectors/WiredSelectorFurniByTypeView';
import { WiredSelectorFurniAltitudeView } from '../selectors/WiredSelectorFurniAltitudeView';
import { WiredSelectorFurniOnFurniView } from '../selectors/WiredSelectorFurniOnFurniView';
import { WiredSelectorFurniPicksView } from '../selectors/WiredSelectorFurniPicksView';
import { WiredSelectorFurniSignalView } from '../selectors/WiredSelectorFurniSignalView';
import { WiredSelectorUsersAreaView } from '../selectors/WiredSelectorUsersAreaView';
import { WiredSelectorUsersByTypeView } from '../selectors/WiredSelectorUsersByTypeView';
import { WiredSelectorUsersByActionView } from '../selectors/WiredSelectorUsersByActionView';
import { WiredSelectorUsersByNameView } from '../selectors/WiredSelectorUsersByNameView';
import { WiredSelectorUsersOnFurniView } from '../selectors/WiredSelectorUsersOnFurniView';
import { WiredSelectorUsersGroupView } from '../selectors/WiredSelectorUsersGroupView';
import { WiredSelectorUsersHandItemView } from '../selectors/WiredSelectorUsersHandItemView';
import { WiredSelectorUsersNeighborhoodView } from '../selectors/WiredSelectorUsersNeighborhoodView';
import { WiredSelectorUsersSignalView } from '../selectors/WiredSelectorUsersSignalView';
import { WiredSelectorUsersTeamView } from '../selectors/WiredSelectorUsersTeamView';
import { WiredActionBotFollowAvatarView } from './WiredActionBotFollowAvatarView';
import { WiredActionBotGiveHandItemView } from './WiredActionBotGiveHandItemView';
import { WiredActionBotMoveView } from './WiredActionBotMoveView';
@@ -28,6 +40,7 @@ import { WiredActionJoinTeamView } from './WiredActionJoinTeamView';
import { WiredActionKickFromRoomView } from './WiredActionKickFromRoomView';
import { WiredActionLeaveTeamView } from './WiredActionLeaveTeamView';
import { WiredActionMoveAndRotateFurniView } from './WiredActionMoveAndRotateFurniView';
import { WiredActionMoveRotateUserView } from './WiredActionMoveRotateUserView';
import { WiredActionMoveFurniToView } from './WiredActionMoveFurniToView';
import { WiredActionMoveFurniView } from './WiredActionMoveFurniView';
import { WiredActionMuteUserView } from './WiredActionMuteUserView';
@@ -37,6 +50,8 @@ import { WiredActionSetFurniStateToView } from './WiredActionSetFurniStateToView
import { WiredActionTeleportView } from './WiredActionTeleportView';
import { WiredActionToggleFurniStateView } from './WiredActionToggleFurniStateView';
import { WiredActionUnfreezeView } from './WiredActionUnfreezeView';
import { WiredExtraFilterFurniView } from '../extras/WiredExtraFilterFurniView';
import { WiredExtraFilterUserView } from '../extras/WiredExtraFilterUserView';
export const WiredActionLayoutView = (code: number) =>
{
@@ -92,6 +107,8 @@ export const WiredActionLayoutView = (code: number) =>
return <WiredActionMoveFurniView />;
case WiredActionLayoutCode.MOVE_AND_ROTATE_FURNI:
return <WiredActionMoveAndRotateFurniView />;
case WiredActionLayoutCode.MOVE_ROTATE_USER:
return <WiredActionMoveRotateUserView />;
case WiredActionLayoutCode.MOVE_FURNI_TO:
return <WiredActionMoveFurniToView />;
case WiredActionLayoutCode.MUTE_USER:
@@ -116,10 +133,38 @@ export const WiredActionLayoutView = (code: number) =>
return <WiredSelectorFurniNeighborhoodView />;
case WiredActionLayoutCode.FURNI_BYTYPE_SELECTOR:
return <WiredSelectorFurniByTypeView />;
case WiredActionLayoutCode.FURNI_ALTITUDE_SELECTOR:
return <WiredSelectorFurniAltitudeView />;
case WiredActionLayoutCode.FURNI_ON_FURNI_SELECTOR:
return <WiredSelectorFurniOnFurniView />;
case WiredActionLayoutCode.FURNI_PICKS_SELECTOR:
return <WiredSelectorFurniPicksView />;
case WiredActionLayoutCode.FURNI_SIGNAL_SELECTOR:
return <WiredSelectorFurniSignalView />;
case WiredActionLayoutCode.USERS_AREA_SELECTOR:
return <WiredSelectorUsersAreaView />;
case WiredActionLayoutCode.USERS_NEIGHBORHOOD_SELECTOR:
return <WiredSelectorUsersNeighborhoodView />;
case WiredActionLayoutCode.USERS_SIGNAL_SELECTOR:
return <WiredSelectorUsersSignalView />;
case WiredActionLayoutCode.USERS_BY_TYPE_SELECTOR:
return <WiredSelectorUsersByTypeView />;
case WiredActionLayoutCode.USERS_BY_ACTION_SELECTOR:
return <WiredSelectorUsersByActionView />;
case WiredActionLayoutCode.USERS_BY_NAME_SELECTOR:
return <WiredSelectorUsersByNameView />;
case WiredActionLayoutCode.USERS_ON_FURNI_SELECTOR:
return <WiredSelectorUsersOnFurniView />;
case WiredActionLayoutCode.USERS_GROUP_SELECTOR:
return <WiredSelectorUsersGroupView />;
case WiredActionLayoutCode.USERS_HANDITEM_SELECTOR:
return <WiredSelectorUsersHandItemView />;
case WiredActionLayoutCode.USERS_TEAM_SELECTOR:
return <WiredSelectorUsersTeamView />;
case WiredActionLayoutCode.FILTER_FURNI_EXTRA:
return <WiredExtraFilterFurniView />;
case WiredActionLayoutCode.FILTER_USER_EXTRA:
return <WiredExtraFilterUserView />;
case WiredActionLayoutCode.SEND_SIGNAL:
return <WiredActionSendSignalView />;
}