DayJS and antd improvements.

This commit is contained in:
Patrick Fic
2024-04-18 11:08:50 -07:00
parent 7d7fe9819f
commit 1d155eb42a
16 changed files with 126 additions and 153 deletions

76
src/ipc.types.json Normal file
View File

@@ -0,0 +1,76 @@
{
"webcontent": "webcontent-send",
"quit": "quit-app",
"test": {
"start": "test-start"
},
"app": {
"toMain": {
"setAcceptableInsCoNm": "setAcceptableInsCoNm",
"setUserName": "setUserName",
"track": "analytics_track",
"checkForUpdates": "app_checkForUpdates",
"downloadUpdates": "app_downloadUpdates",
"installUpdates": "app_installupdates",
"getReleaseNotes": "app_getReleaseNotes",
"getAppVersion": "app_getApVersion",
"importJob": "app_importJob",
"log": {
"info": "app_logInfo",
"debug": "app_logDebug",
"warn": "app_logWarn",
"error": "app_logError",
"silly": "app_logSilly"
}
},
"toRenderer": {
"updateAvailable": "app_updateAvailable",
"downloadProgress": "app_downloadProgress",
"signOut": "app_signOut",
"setReleaseNotes": "app_setReleaseNotes",
"appVersion": "app_appVersion"
}
},
"store": {
"get": "store__get",
"getAll": "store_getAll",
"set": "store_set",
"response": "store_response"
},
"fileScan": {
"toMain": {
"scanFilePaths": "fileScan__scanFilePaths",
"importJob": "fileScan__importJob",
"deleteAllEms": "filescan_deleteAllEms"
},
"toRenderer": {
"scanFilePathsResponse": "fileScan__scanFilePathsResponse"
}
},
"fileWatcher": {
"toMain": {
"filepathsGet": "filewatcher__filepathsget",
"start": "filewatcher__start",
"stop": "filewatcher__stop",
"addPath": "filewatcher__addPath",
"removePath": "filewatcher__removePath",
"setPolling": "filewatcher__setPolling"
},
"toRenderer": {
"filepathsList": "filewatcher__filepathslist",
"startSuccess": "filewatcher__start-success",
"startFailure": "filewatcher__start-failure",
"stopSuccess": "filewatcher__stop-success",
"error": "filewatcher__error",
"getPolling": "filewatcher__getPolling"
}
},
"estimate": {
"toRenderer": {
"estimateDecodeStart": "estimatedecode__start",
"estimateDecodeSuccess": "estimatedecode__success",
"estimateDecodeFailure": "estimatedecode__failure",
"getCloseDate": "getclosedate"
}
}
}