-
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
Changes from 2 commits
3a082f2
4664c28
4f9fba9
048e40e
7f2edb1
3541ea5
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
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) 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 { | ||
Comment on lines
+13
to
+19
There was a problem hiding this comment. Choose a reason for hiding this commentThe 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 commentThe 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 commentThe 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 commentThe 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 commentThe 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 commentThe reason will be displayed to describe this comment to others. Learn more. |
||
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.
Original file line number | Diff line number | Diff line change | ||||
---|---|---|---|---|---|---|
|
@@ -54,7 +54,7 @@ | |||||
</div> | ||||||
<div> | ||||||
<% if @all_invitations_attempted %> | ||||||
<%= link_to "Terminer", @user_list_upload.structure_users_path, class: "btn btn-primary d-block mx-auto", data: { turbo_frame: "_top" } %> | ||||||
<%= link_to "Terminer", @user_list_upload.structure_users_path, class: "btn btn-primary d-block mx-auto", data: { turbo_frame: "_top", controller: "tally", "tally-form-id": "nWjZGj", "tally-delay-in-ms": 1000, action: "click->tally#showPopup" } %> | ||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Il vaudrait pas mieux mettre l'id dans une variable d'env ? Ça permettrait de l'activer qu'en prod d'ailleurs There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Alors je l'ai pas mis dans une variable d'env car c'est vraiment lié à ce formulaire en particulier pas à Tally au global, et je me disais qu'on pourrait potentiellement en avoir 3-4 en même temps, rendant un peu pénible l'usage d'une variable d'env. There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Pour le coup je pense que ce n'est pas une bonne idée de le laisser en dur, ne serait-ce que pour ne pouvoir l'afficher dans tous les env. On veut pas l'avoir en staging et en demo non ? There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Suggested change
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Bien vu 😅 |
||||||
<% else %> | ||||||
<%= link_to "Terminer", "#", class: "btn btn-primary d-block mx-auto disabled" %> | ||||||
<% end %> | ||||||
|
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 une erreur au moment de passer aprés la création des usagers, au moment de passer aux invitations quand je clic sur le CTA.

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.
Ah bah justement ce changement était pour éviter cette erreur 🤔, mais l'erreur ne vient pas de cette branche
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.
ce controller passe à la trappe dans #2574 mais j'ai l'impression que c'est pas lié à la fonctionnalité ici de toute façon
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.
Non effectivement 👍