@@ -23,7 +23,7 @@ import log from 'electron-log';
23
23
import { debounce } from 'lodash-es' ;
24
24
import { DownloaderHelper } from 'node-downloader-helper' ;
25
25
import { KitEvent , emitter } from '../shared/events' ;
26
- import { type ProcessAndPrompt , cachePreview , ensureIdleProcess , processes } from './process' ;
26
+ import { type ProcessAndPrompt , ensureIdleProcess , processes } from './process' ;
27
27
28
28
import { getAssetPath } from '../shared/assets' ;
29
29
import { noChoice } from '../shared/defaults' ;
@@ -33,7 +33,7 @@ import { runPromptProcess } from './kit';
33
33
import type { KitPrompt } from './prompt' ;
34
34
import { prompts } from './prompts' ;
35
35
import { debounceInvokeSearch , invokeFlagSearch , invokeSearch } from './search' ;
36
- import { kitCache , kitState } from './state' ;
36
+ import { kitState } from './state' ;
37
37
38
38
let actionsOpenTimeout : NodeJS . Timeout ;
39
39
let prevTransformedInput = '' ;
@@ -197,26 +197,26 @@ export const startIpc = () => {
197
197
ipcMain . on (
198
198
AppChannel . ERROR_RELOAD ,
199
199
debounce (
200
- async ( event , data : any ) => {
200
+ ( _event , data : any ) => {
201
201
log . info ( 'AppChannel.ERROR_RELOAD' ) ;
202
- const { scriptPath, pid } = data ;
202
+ const { /* scriptPath,*/ pid } = data ;
203
203
const prompt = prompts . get ( pid ) ;
204
- const onReload = async ( ) => {
205
- const markdown = `# Error
206
-
207
- ${ data . message }
208
-
209
- ${ data . error }
210
- ` ;
211
- emitter . emit ( KitEvent . RunPromptProcess , {
212
- scriptPath : kitPath ( 'cli' , 'info.js' ) ,
213
- args : [ path . basename ( scriptPath ) , 'Error... ' , markdown ] ,
214
- options : {
215
- force : true ,
216
- trigger : Trigger . Info ,
217
- } ,
218
- } ) ;
219
- } ;
204
+ // const onReload = async () => {
205
+ // const markdown = `# Error
206
+ //
207
+ // ${data.message}
208
+ //
209
+ // ${data.error}
210
+ // `;
211
+ // emitter.emit(KitEvent.RunPromptProcess, {
212
+ // scriptPath: kitPath('cli', 'info.js'),
213
+ // args: [path.basename(scriptPath), 'Error... ', markdown],
214
+ // options: {
215
+ // force: true,
216
+ // trigger: Trigger.Info,
217
+ // },
218
+ // });
219
+ // };
220
220
221
221
// TODO: Reimplement
222
222
if ( prompt ) {
@@ -257,7 +257,7 @@ ${data.error}
257
257
event . sender . send ( AppChannel . GET_ASSET , { assetPath } ) ;
258
258
} ) ;
259
259
260
- ipcMain . on ( AppChannel . RESIZE , ( event , resizeData : ResizeData ) => {
260
+ ipcMain . on ( AppChannel . RESIZE , ( _event , resizeData : ResizeData ) => {
261
261
const prompt = prompts . get ( resizeData . pid ) ;
262
262
// log.info(`>>>>>>>>>>>>> AppChannel.RESIZE`, {
263
263
// prompt,
@@ -282,7 +282,7 @@ ${data.error}
282
282
} ) ;
283
283
} ) ;
284
284
285
- ipcMain . on ( AppChannel . OPEN_SCRIPT_LOG , async ( event , script : Script ) => {
285
+ ipcMain . on ( AppChannel . OPEN_SCRIPT_LOG , async ( _event , script : Script ) => {
286
286
const logPath = getLogFromScriptPath ( ( script as Script ) . filePath ) ;
287
287
await runPromptProcess ( kitPath ( 'cli/edit-file.js' ) , [ logPath ] , {
288
288
force : true ,
@@ -291,14 +291,14 @@ ${data.error}
291
291
} ) ;
292
292
} ) ;
293
293
294
- ipcMain . on ( AppChannel . END_PROCESS , ( event , { pid } ) => {
294
+ ipcMain . on ( AppChannel . END_PROCESS , ( _event , { pid } ) => {
295
295
const processInfo = processes . getByPid ( pid ) ;
296
296
if ( processInfo ) {
297
297
processes . removeByPid ( pid ) ;
298
298
}
299
299
} ) ;
300
300
301
- ipcMain . on ( AppChannel . OPEN_SCRIPT_DB , async ( event , { focused, script } : AppState ) => {
301
+ ipcMain . on ( AppChannel . OPEN_SCRIPT_DB , async ( _event , { focused, script } : AppState ) => {
302
302
const filePath = ( focused as any ) ?. filePath || script ?. filePath ;
303
303
const dbPath = path . resolve ( filePath , '..' , '..' , 'db' , `_${ path . basename ( filePath ) . replace ( / j s $ / , 'json' ) } ` ) ;
304
304
await runPromptProcess ( kitPath ( 'cli/edit-file.js' ) , [ dbPath ] , {
@@ -308,7 +308,7 @@ ${data.error}
308
308
} ) ;
309
309
} ) ;
310
310
311
- ipcMain . on ( AppChannel . OPEN_SCRIPT , async ( event , { script, description, input } : Required < AppState > ) => {
311
+ ipcMain . on ( AppChannel . OPEN_SCRIPT , async ( _event , { script, description, input } : Required < AppState > ) => {
312
312
// When the editor is editing a script. Toggle back to running the script.
313
313
const descriptionIsFile = await isFile ( description ) ;
314
314
const descriptionIsInKenv = isInDir ( kenvPath ( ) ) ( description ) ;
@@ -340,8 +340,8 @@ ${data.error}
340
340
} ) ;
341
341
} ) ;
342
342
343
- ipcMain . on ( AppChannel . EDIT_SCRIPT , async ( event , { script } : Required < AppState > ) => {
344
- if ( ( isInDir ( kitPath ( ) ) , script . filePath ) ) {
343
+ ipcMain . on ( AppChannel . EDIT_SCRIPT , async ( _event , { script } : Required < AppState > ) => {
344
+ if ( isInDir ( kitPath ( ) ) ( script . filePath ) ) {
345
345
return ;
346
346
}
347
347
await runPromptProcess ( kitPath ( 'main/edit.js' ) , [ script . filePath ] , {
@@ -351,7 +351,7 @@ ${data.error}
351
351
} ) ;
352
352
} ) ;
353
353
354
- ipcMain . on ( AppChannel . OPEN_FILE , async ( event , { script, focused } : Required < AppState > ) => {
354
+ ipcMain . on ( AppChannel . OPEN_FILE , async ( _event , { script, focused } : Required < AppState > ) => {
355
355
const filePath = ( focused as any ) ?. filePath || script ?. filePath ;
356
356
357
357
await runPromptProcess ( kitPath ( 'cli/edit-file.js' ) , [ filePath ] , {
@@ -361,21 +361,21 @@ ${data.error}
361
361
} ) ;
362
362
} ) ;
363
363
364
- ipcMain . on ( AppChannel . RUN_MAIN_SCRIPT , async ( ) => {
364
+ ipcMain . on ( AppChannel . RUN_MAIN_SCRIPT , ( ) =>
365
365
runPromptProcess ( getMainScriptPath ( ) , [ ] , {
366
366
force : true ,
367
367
trigger : Trigger . Kit ,
368
368
sponsorCheck : false ,
369
- } ) ;
370
- } ) ;
369
+ } ) ,
370
+ ) ;
371
371
372
- ipcMain . on ( AppChannel . RUN_PROCESSES_SCRIPT , async ( ) => {
372
+ ipcMain . on ( AppChannel . RUN_PROCESSES_SCRIPT , ( ) =>
373
373
runPromptProcess ( kitPath ( 'cli' , 'processes.js' ) , [ ] , {
374
374
force : true ,
375
375
trigger : Trigger . Kit ,
376
376
sponsorCheck : false ,
377
- } ) ;
378
- } ) ;
377
+ } ) ,
378
+ ) ;
379
379
380
380
for ( const channel of [
381
381
Channel . ACTIONS_INPUT ,
@@ -460,7 +460,7 @@ ${data.error}
460
460
}
461
461
462
462
const isArg = message . state . ui === UI . arg ;
463
- const hasFlag = message . state . flaggedValue ;
463
+ // const hasFlag = message.state.flaggedValue;
464
464
465
465
if ( isArg ) {
466
466
const shouldSearch = checkShortcodesAndKeywords ( prompt , input ) ;
@@ -510,7 +510,7 @@ ${data.error}
510
510
}
511
511
512
512
if ( channel === Channel . ABANDON ) {
513
- log . info ( '⚠️ ABANDON' , message . pid ) ;
513
+ log . info ( '! ABANDON' , message . pid ) ;
514
514
}
515
515
// log.info({ channel, message });
516
516
if ( [ Channel . VALUE_SUBMITTED , Channel . TAB_CHANGED ] . includes ( channel ) ) {
@@ -582,11 +582,11 @@ ${data.error}
582
582
) ;
583
583
}
584
584
585
- ipcMain . on ( AppChannel . DRAG_FILE_PATH , async ( event , { filePath, icon } : { filePath : string ; icon : string } ) => {
585
+ ipcMain . on ( AppChannel . DRAG_FILE_PATH , async ( event , { filePath } : { filePath : string ; icon : string } ) => {
586
586
try {
587
587
let newPath = filePath ;
588
588
if ( filePath . startsWith ( 'http' ) ) {
589
- newPath = await new Promise ( ( resolve , reject ) => {
589
+ newPath = await new Promise ( ( resolve ) => {
590
590
const dl = new DownloaderHelper ( filePath , tmpDownloadsDir , {
591
591
override : true ,
592
592
} ) ;
@@ -626,7 +626,7 @@ ${data.error}
626
626
}
627
627
} ) ;
628
628
629
- ipcMain . on ( AppChannel . FEEDBACK , async ( event , data : Survey ) => {
629
+ ipcMain . on ( AppChannel . FEEDBACK , async ( _event , data : Survey ) => {
630
630
// runScript(kitPath('cli', 'feedback.js'), JSON.stringify(data));
631
631
632
632
try {
@@ -646,19 +646,19 @@ ${data.error}
646
646
} ) ;
647
647
648
648
type levelType = 'debug' | 'info' | 'warn' | 'error' | 'silly' ;
649
- ipcMain . on ( AppChannel . LOG , async ( event , { message, level } : { message : any ; level : levelType } ) => {
649
+ ipcMain . on ( AppChannel . LOG , ( _event , { message, level } : { message : any ; level : levelType } ) => {
650
650
log [ level ] ( message ) ;
651
651
} ) ;
652
652
653
- ipcMain . on ( AppChannel . LOGIN , async ( ) => {
653
+ ipcMain . on ( AppChannel . LOGIN , ( ) => {
654
654
runPromptProcess ( kitPath ( 'pro' , 'login.js' ) , [ ] , {
655
655
force : true ,
656
656
trigger : Trigger . App ,
657
657
sponsorCheck : false ,
658
658
} ) ;
659
659
} ) ;
660
660
661
- ipcMain . on ( AppChannel . APPLY_UPDATE , async ( event , data : any ) => {
661
+ ipcMain . on ( AppChannel . APPLY_UPDATE , ( _event , _data : any ) => {
662
662
log . info ( '🚀 Applying update' ) ;
663
663
kitState . applyUpdate = true ;
664
664
} ) ;
0 commit comments