tuneflow-plugin-basic
Version:
Basic TuneFlow plugins
62 lines (57 loc) • 1.49 kB
text/typescript
import { Track, TuneflowPlugin, WidgetType } from 'tuneflow';
import type {
InputNumberWidgetConfig,
TrackSelectorWidgetConfig,
ParamDescriptor,
Song,
} from 'tuneflow';
export class RemoveTrackSend extends TuneflowPlugin {
static providerId(): string {
return 'andantei';
}
static pluginId(): string {
return 'remove-track-send';
}
params(): { [paramName: string]: ParamDescriptor } {
return {
trackId: {
displayName: {
zh: '轨道',
en: 'Track',
},
defaultValue: undefined,
widget: {
type: WidgetType.TrackSelector,
config: {} as TrackSelectorWidgetConfig,
},
hidden: true,
},
sendIndex: {
displayName: {
zh: '母线',
en: 'Bus',
},
defaultValue: undefined,
widget: {
type: WidgetType.InputNumber,
config: {
minValue: 0,
maxValue: Track.MAX_NUM_SENDS - 1,
step: 1,
} as InputNumberWidgetConfig,
},
hidden: true,
optional: true,
},
};
}
async run(song: Song, params: { [paramName: string]: any }): Promise<void> {
const trackId = this.getParam<string>(params, 'trackId');
const track = song.getTrackById(trackId);
if (!track) {
throw new Error('Track not ready');
}
const sendIndex = this.getParam<number>(params, 'sendIndex');
track.removeSendAt(sendIndex);
}
}