Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[FEATURE] Export & Import Download History #139

Closed
Explorare opened this issue Feb 18, 2024 · 3 comments
Closed

[FEATURE] Export & Import Download History #139

Explorare opened this issue Feb 18, 2024 · 3 comments
Labels
enhancement New feature or request

Comments

@Explorare
Copy link

It would be great if I could export the download history of this extension from MS Edge to Firefox, which is my main Web browser. And it would also be useful while transferring data to a new computer. With download history every tweet with a media that have been downloaded in the past will show a yellow icon to prevent duplicate. But a local deduplicate software will do the same job. So, I think this feature has a low priority and doesn't affect the main function.

@Explorare Explorare added the enhancement New feature or request label Feb 18, 2024
@EltonChou
Copy link
Owner

EltonChou commented Feb 18, 2024

It can export and import download history.

The exported data can be droped on the histsory table to import,
but this was for development usage and it was disabled in production build.
So you need to run the script in options page's console by yourself.

Backup your history before importing it.

Change chrome to browser in firefox.

Export:

await chrome.runtime.sendMessage({action: 4})

Import:

await chrome.runtime.sendMessage({action: 5, data: <JSON_STRING_DATA>})

Related code

const handleExportHistory: ExchangeHandler<Action.ExportHistory> = async exchange => {
try {
const useCase = new DownloadHistoryUseCase(downloadHistoryRepo)
await useCase.export()
return { status: 'success' }
} catch (error) {
return { status: 'error', error: error }
}
}
const handleImportHistory: ExchangeHandler<Action.ImportHistory> = async exchange => {
try {
const useCase = new DownloadHistoryUseCase(downloadHistoryRepo)
const history = await useCase.parse(exchange.data)
await useCase.import(history.items)
return { status: 'success' }
} catch (error) {
return { status: 'error', error: error }
}
}

const handlePortableHistoryFileDrop: React.DragEventHandler<
HTMLDivElement
> = async e => {
e.preventDefault()
const getJsonFileContent = pipe(
e.dataTransfer.files,
Array.from,
A.filter(isJSONFile),
A.head,
TE.fromOption(() => toError('Not a json file.')),
TE.chain(fileToText),
TE.chain(content =>
TE.tryCatch(async () => downloadHistory.handler.import(content), toError)
),
TE.tapError(e => pipe(e, C.error, TE.fromIO))
)
await getJsonFileContent()
}

@Explorare
Copy link
Author

The function you provide worked as intended for me. And I'd like to append a note for others who want to do the same thing, use online tool to stringify the JSON file generated from the export command to escape any special characters (eg. ' .), or the JSON parser in browser will not happy with it.

Thanks for your kind help and the time and effort to create this useful extension. Have a good day. 😉

@EltonChou
Copy link
Owner

I am glad that you like this extension. 👍

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
enhancement New feature or request
Projects
None yet
Development

No branches or pull requests

2 participants