parent
2bd1498af0
commit
1b79416d2a
|
@ -78,6 +78,12 @@ export function renameDisc({ newName }: { newName: string }) {
|
||||||
|
|
||||||
export function deleteTracks(indexes: number[]) {
|
export function deleteTracks(indexes: number[]) {
|
||||||
return async function(dispatch: AppDispatch) {
|
return async function(dispatch: AppDispatch) {
|
||||||
|
const confirmation = window.confirm(
|
||||||
|
`Proceed with Delete Track${indexes.length !== 1 ? 's' : ''}? This operation cannot be undone.`
|
||||||
|
);
|
||||||
|
if (!confirmation) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
const { netmdService } = serviceRegistry;
|
const { netmdService } = serviceRegistry;
|
||||||
dispatch(appStateActions.setLoading(true));
|
dispatch(appStateActions.setLoading(true));
|
||||||
indexes = indexes.sort();
|
indexes = indexes.sort();
|
||||||
|
@ -91,6 +97,10 @@ export function deleteTracks(indexes: number[]) {
|
||||||
|
|
||||||
export function wipeDisc() {
|
export function wipeDisc() {
|
||||||
return async function(dispatch: AppDispatch) {
|
return async function(dispatch: AppDispatch) {
|
||||||
|
const confirmation = window.confirm(`Proceed with Wipe Disc? This operation cannot be undone.`);
|
||||||
|
if (!confirmation) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
const { netmdService } = serviceRegistry;
|
const { netmdService } = serviceRegistry;
|
||||||
dispatch(appStateActions.setLoading(true));
|
dispatch(appStateActions.setLoading(true));
|
||||||
await netmdService!.wipeDisc();
|
await netmdService!.wipeDisc();
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
import { Disc, Track, Encoding, Wireformat, TrackFlag } from 'netmd-js';
|
import { Channels, Track, Encoding, Wireformat, TrackFlag } from 'netmd-js';
|
||||||
import { NetMDService } from './netmd';
|
import { NetMDService } from './netmd';
|
||||||
import { sleep, sanitizeTitle } from '../utils';
|
import { sleep, sanitizeTitle } from '../utils';
|
||||||
import { assert } from 'netmd-js/dist/utils';
|
import { assert } from 'netmd-js/dist/utils';
|
||||||
|
@ -13,6 +13,7 @@ class NetMDMockService implements NetMDService {
|
||||||
// duration: 5 * 60 * 512,
|
// duration: 5 * 60 * 512,
|
||||||
// encoding: Encoding.sp,
|
// encoding: Encoding.sp,
|
||||||
// index: 0,
|
// index: 0,
|
||||||
|
// channel: Channels.stereo,
|
||||||
// protected: TrackFlag.unprotected,
|
// protected: TrackFlag.unprotected,
|
||||||
// title: 'Mock Track 1',
|
// title: 'Mock Track 1',
|
||||||
// },
|
// },
|
||||||
|
@ -20,6 +21,7 @@ class NetMDMockService implements NetMDService {
|
||||||
// duration: 5 * 60 * 512,
|
// duration: 5 * 60 * 512,
|
||||||
// encoding: Encoding.sp,
|
// encoding: Encoding.sp,
|
||||||
// index: 1,
|
// index: 1,
|
||||||
|
// channel: Channels.stereo,
|
||||||
// protected: TrackFlag.unprotected,
|
// protected: TrackFlag.unprotected,
|
||||||
// title: 'Mock Track 2',
|
// title: 'Mock Track 2',
|
||||||
// },
|
// },
|
||||||
|
@ -27,6 +29,7 @@ class NetMDMockService implements NetMDService {
|
||||||
// duration: 5 * 60 * 512,
|
// duration: 5 * 60 * 512,
|
||||||
// encoding: Encoding.sp,
|
// encoding: Encoding.sp,
|
||||||
// index: 2,
|
// index: 2,
|
||||||
|
// channel: Channels.stereo,
|
||||||
// protected: TrackFlag.unprotected,
|
// protected: TrackFlag.unprotected,
|
||||||
// title: 'Mock Track 3',
|
// title: 'Mock Track 3',
|
||||||
// },
|
// },
|
||||||
|
@ -34,6 +37,7 @@ class NetMDMockService implements NetMDService {
|
||||||
// duration: 5 * 60 * 512,
|
// duration: 5 * 60 * 512,
|
||||||
// encoding: Encoding.sp,
|
// encoding: Encoding.sp,
|
||||||
// index: 3,
|
// index: 3,
|
||||||
|
// channel: Channels.stereo,
|
||||||
// protected: TrackFlag.unprotected,
|
// protected: TrackFlag.unprotected,
|
||||||
// title: 'Mock Track 4',
|
// title: 'Mock Track 4',
|
||||||
// },
|
// },
|
||||||
|
|
Loading…
Reference in New Issue