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

[DONE] Improve A11y of chapter edition form #938

Merged
merged 8 commits into from
Sep 8, 2023

Conversation

Badatos
Copy link
Collaborator

@Badatos Badatos commented Sep 5, 2023

Work on RGAA 11.04 :
"Dans chaque formulaire, chaque étiquette de champ et son champ associé sont-ils accolés (hors cas particuliers) ?"

P13 (Chapter edition form)

Non-conformité :

  • Voir P5
  • Absence d’information en amont sur le caractère obligatoire des champs avec astérisque rouge
  • Absence d’association des indications d’aide à la saisie et de leur champ respectif :
    • sur "Début"
    • Également sur le bouton "sélectionnez un fichier"
  • Absence d’association du message d’erreur "veuillez entrer un correct temps de début compris entre 0 et 10" et du champ respectif

Piste de correction :

  • Ajouter en amont du formulaire (dans le menu latéral droit), visuellement et dans l’ordre du code, un texte indiquant la présence de champs obligatoires, par exemple

    Champs obligatoires *

    comme sur certaines pages (contact par exemple)
  • Ajouter un attribut aria-describedby="xxx" sur le champ où xxx est la valeur d’id unique sur la page du temps sous la forme 00:00:00. Pour le bouton, faire le lien avec "le fichier….VTT"
  • Ajouter un attribut aria-describedby="xxx" sur le champ en erreur où xxx est la valeur d’id unique sur la page du message d’erreur à associer

P11 (Channel edition form)

Non-conformité :

  • Le bouton "sélectionner une image" n'est pas pertinent

Piste de correction :

  • Ajouter un aria-label="Bannière-sélectionner une image" sur le bouton

@Badatos Badatos self-assigned this Sep 5, 2023
@Badatos Badatos marked this pull request as ready for review September 7, 2023 15:01
@Badatos Badatos requested a review from ptitloup September 7, 2023 15:01
Copy link
Contributor

@ptitloup ptitloup left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

ok pour moi

let inputStart = document.getElementById("id_time_start");
if (inputStart) {
inputStart.insertAdjacentHTML(
"beforebegin",
"&nbsp;<span class='getfromvideo'><a id='getfromvideo_start' class='btn btn-primary btn-sm'>" +
gettext("Get time from the player") +
"</a><span class='timecode'>&nbsp;</span></span>",
"</a><span class='timecode' id='timecode_start'>&nbsp;</span></span>",
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

je me posais la question sur des id en dur dans les champs si il n'y a pas un risque de doublon. Un id doit etre unique dans un DOM

Copy link
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Oui, j'ai justement supprimé des ID en doublons dans cette PR ;)
pour id='timecode_start', il ne s'affiche que dans le cas de l'ajout/modification d'un chapitre, mais on pourrait l'appeler "chapter_time_start" pour qu'il soit moins générique.

@@ -51,6 +51,7 @@


<!-- quality selector -->
<!-- NOTE: hls-quality-selector doesn't seem to work on Safari. -->
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

il est mis à jour dans ma PR #925 , je suis en train de passer à videojs8

Copy link
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Tant mieux ! Si ca remarche avec Safari on pourra enlever le commentaire ^^

@@ -205,7 +204,7 @@
{% endif %}

{% if video.chapter_set.all %}
player.videoJsChapters();
player.podVideoJsChapters();
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

idem, les chapitres seront remplacés dans ma PR #925

Copy link
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

d'acodac. je laisse ca en attendant sinon y'a des trucs qui ne marchent plus ^^

@Badatos Badatos changed the title [WIP] Improve A11y of chapter edition form [DONE] Improve A11y of chapter edition form Sep 8, 2023
@LoicBonavent LoicBonavent self-requested a review September 8, 2023 09:01
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Un console.log n'est pas commenté. J'imagine que c'est fait pour ?

Copy link
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Oui je me suis dit que ce serait bien d'indiquer dans la console cette info si jamais on a un cas ou les enrichissements ne s'affichent pas. Quand tout va bien il ne devrait rien afficher ^^

Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Un détail encore : la ligne 39 pourrait être mise sur plusieurs lignes :)

Copy link
Collaborator

@LoicBonavent LoicBonavent left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Tout fonctionne nickel.
J'ai juste mis quelques commentaires concernant des détails insignifiants.
Merci

@Badatos
Copy link
Collaborator Author

Badatos commented Sep 8, 2023

Tout fonctionne nickel.
J'ai juste mis quelques commentaires concernant des détails insignifiants.
Merci

Merci à toi !
J'ai fait un commit pour mettre la ligne 39 en multi-lignes du coup ;)

@ptitloup ptitloup merged commit edb3649 into EsupPortail:develop Sep 8, 2023
@Badatos Badatos deleted the feature/RGAA_11.04 branch September 8, 2023 10:39
vsabatie pushed a commit to vsabatie/Pod that referenced this pull request Nov 22, 2023
* Improve A11y of chapter edition form

* Coorect bug on video enrichments

* correct bug on chapters.js

* Improve chapter validation process

* link with aria-describedby displayed "timecode" to "start" and "end" inputs in chapters.js
+ add aria-describedby attributes on all channel fields

* correct some missing podVideoJsChapters
+ remove useless nbsp;

* Replace id="timecode_start" by id='chapter_time_start' (less generic)

* QoC (multi lines for attrs loop in customfilewidget)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

3 participants