-
-
Notifications
You must be signed in to change notification settings - Fork 12
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Feat: Error modal and report option in context menu (#190)
* fix: safeExecute working with functions * fix: App version available in modal templating * feat(interface): Error modal appearing when an error occurs during the export process * refactor(tab): separately safeExecute scraping and post-scraping to avoid inconsistency * feat(contextMenu): Adding option to report bugs * fix(tab): Fix error not launching modal * fix(tab): Also report issue * docs: update notes
- Loading branch information
1 parent
92d6f55
commit 404e3eb
Showing
9 changed files
with
68 additions
and
11 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
--- | ||
title: "🤔 Well... The export didn't go as planned..." | ||
buttons: | ||
- { text: "I'll try again" } | ||
- { | ||
text: "🐞 Report this bug", | ||
url: "${appInfos.URLS.REPORT}", | ||
style: "btn-primary", | ||
} | ||
|
||
--- | ||
It seems like an error has occurred during the export process. Please try again. If the issue persists, please report this bug. | ||
This information can help: | ||
- The steps to reproduce the problem | ||
- The URL of this page | ||
- The app version: v${appInfos.APP_VERSION} | ||
- Screenshots illustrating the problem | ||
|
||
❤️ Thank you for your help and sorry for the inconvenience. | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -14,7 +14,8 @@ | |
"STORES": { | ||
"CHROME": "https://chromewebstore.google.com/u/1/detail/agklnagmfeooogcppjccdnoallkhgkod", | ||
"FIREFOX": "https://addons.mozilla.org/firefox/addon/save-my-phind" | ||
} | ||
}, | ||
"REPORT": "https://save.hugocollin.com/issue" | ||
}, | ||
"CONTACT_EMAIL": "[email protected]", | ||
"COPY_MODE": "tab" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters