-
Notifications
You must be signed in to change notification settings - Fork 4
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
feat(tally): integrate tally poll #2715
Merged
Merged
Changes from all commits
Commits
Show all changes
6 commits
Select commit
Hold shift + click to select a range
3a082f2
feat: integrate tally poll
Michaelvilleneuve 4664c28
fix(tally): improve show/hide logic
Michaelvilleneuve 4f9fba9
Merge branch 'staging' into feat/add-tally-poll
Michaelvilleneuve 048e40e
Merge branch 'staging' into feat/add-tally-poll
Michaelvilleneuve 7f2edb1
fix: extract tally poll to env variable
Michaelvilleneuve 3541ea5
fix tally poll id
Michaelvilleneuve File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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,49 @@ | ||
import { Controller } from "@hotwired/stimulus"; | ||
|
||
export default class extends Controller { | ||
async showPopup() { | ||
if (this.#hasAlreadyAnswered || !this.element.dataset.tallyFormId) return | ||
|
||
await this.#loadScript() | ||
this.#displayForm() | ||
} | ||
|
||
#loadScript() { | ||
return new Promise((resolve) => { | ||
if (!document.querySelector("script#tally-script")) { | ||
const script = document.createElement("script"); | ||
script.src = "https://tally.so/widgets/embed.js"; | ||
script.id = "tally-script" | ||
script.onload = resolve | ||
document.head.appendChild(script); | ||
} else { | ||
resolve(); | ||
} | ||
}) | ||
} | ||
|
||
#displayForm() { | ||
setTimeout(() => { | ||
window.Tally.openPopup(this.element.dataset.tallyFormId, { | ||
onSubmit: () => { | ||
this.#hasAlreadyAnswered = true | ||
|
||
// Give time for the user to read success message in Tally's popup | ||
setTimeout(() => window.Tally.closePopup(this.element.dataset.tallyFormId), 1000); | ||
} | ||
}) | ||
}, this.element.dataset.tallyDelayInMs || 0) | ||
} | ||
|
||
set #hasAlreadyAnswered(value) { | ||
aminedhobb marked this conversation as resolved.
Show resolved
Hide resolved
|
||
localStorage.setItem(this.#hasAlreadyAnsweredKey, value) | ||
} | ||
|
||
get #hasAlreadyAnswered() { | ||
return !!localStorage.getItem(this.#hasAlreadyAnsweredKey) | ||
} | ||
|
||
get #hasAlreadyAnsweredKey() { | ||
return `tally-answered-${this.element.dataset.tallyFormId}` | ||
} | ||
} |
This file was deleted.
Oops, something went wrong.
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
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
je sais pas si ça va passer avec les nouveaux csp, mais on peut pas le loader sur la page avant au pire ?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Je trouve ça plutôt bien de justement le loader au besoin depuis là. Mais je pense qu'on doit pouvoir juste faire une exception non ?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Si y a pas de souci niveau csp ça me va de le laisser là
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
J'ai fait le check après avoir mergé c'est ok visiblement 👍
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
En dev ça passe ?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Oui oui, chez moi ça fonctionne bien, même après redémarrage du serveur :
