[PR #703] [MERGED] Implemented stand alone speech to text component #2283

Open
opened 2026-01-29 18:18:06 +00:00 by claunia · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/radzenhq/radzen-blazor/pull/703
Author: @groogiam
Created: 11/13/2022
Status: Merged
Merged: 11/29/2022
Merged by: @akorchev

Base: masterHead: issue_699_refactor


📝 Commits (10+)

  • 4442588 Implemented stand alone speech to text component radzenhq#699 radzenhq#700
  • 24c8240 Addressed radzenhq#703 PR review comments.
  • 86e57cb radzenhq#703 Changed position of default title and aria-label attributes so caller can override them.
  • e4e7348 radzradzenhq#703 Added unit test for verify default title and aria-label can be overridden.
  • b067331 radzradzenhq#703 Added speech recognication error handling. Minor refactor to toggleDictation js function.
  • c7904f4 Refactor the implementation of toggleDictation. Change the class name. Use the Reference inherited from RadzenComponent. Other smaller changes.
  • d0529fe Check what component started the speech recording.
  • 025bc9b Update speech to text button styles
  • af81d3c Remove important rule
  • 2046772 Update demo and add it to main menu

📊 Changes

9 files changed (+443 additions, -9 deletions)

View changed files

Radzen.Blazor.Tests/SpeechToTextButtonTests.cs (+197 -0)
Radzen.Blazor/RadzenSpeechToTextButton.razor (+3 -0)
Radzen.Blazor/RadzenSpeechToTextButton.razor.cs (+105 -0)
📝 Radzen.Blazor/themes/_components.scss (+2 -1)
Radzen.Blazor/themes/components/blazor/_speech-to-text-button.scss (+36 -0)
📝 Radzen.Blazor/wwwroot/Radzen.Blazor.js (+46 -8)
📝 RadzenBlazorDemos/Pages/Index.razor (+1 -0)
RadzenBlazorDemos/Pages/SpeechToTextButtonPage.razor (+45 -0)
📝 RadzenBlazorDemos/Services/ExampleService.cs (+8 -0)

📄 Description

radzenhq#699

Refactored original pull request: radzenhq#700


🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.

## 📋 Pull Request Information **Original PR:** https://github.com/radzenhq/radzen-blazor/pull/703 **Author:** [@groogiam](https://github.com/groogiam) **Created:** 11/13/2022 **Status:** ✅ Merged **Merged:** 11/29/2022 **Merged by:** [@akorchev](https://github.com/akorchev) **Base:** `master` ← **Head:** `issue_699_refactor` --- ### 📝 Commits (10+) - [`4442588`](https://github.com/radzenhq/radzen-blazor/commit/4442588b060a296f84a576b68f22a65ca48d31ce) Implemented stand alone speech to text component radzenhq#699 radzenhq#700 - [`24c8240`](https://github.com/radzenhq/radzen-blazor/commit/24c8240b2acf9e275cd45fcfe8574588d3255c13) Addressed radzenhq#703 PR review comments. - [`86e57cb`](https://github.com/radzenhq/radzen-blazor/commit/86e57cbe2453005799d543db88a7cc4d74037b8c) radzenhq#703 Changed position of default title and aria-label attributes so caller can override them. - [`e4e7348`](https://github.com/radzenhq/radzen-blazor/commit/e4e73483fe4f1d6c9a9cbd15b5f9d18390aabea0) radzradzenhq#703 Added unit test for verify default title and aria-label can be overridden. - [`b067331`](https://github.com/radzenhq/radzen-blazor/commit/b067331c0178b9719fd55d21e9f351ad19cce67f) radzradzenhq#703 Added speech recognication error handling. Minor refactor to toggleDictation js function. - [`c7904f4`](https://github.com/radzenhq/radzen-blazor/commit/c7904f44c3da1e1576ac4abe333732af288750f8) Refactor the implementation of toggleDictation. Change the class name. Use the Reference inherited from RadzenComponent. Other smaller changes. - [`d0529fe`](https://github.com/radzenhq/radzen-blazor/commit/d0529feaea79b8dde04bb19989661d65543d2b39) Check what component started the speech recording. - [`025bc9b`](https://github.com/radzenhq/radzen-blazor/commit/025bc9b68c23e0ed874f8adcbe8d75bee7ceb58f) Update speech to text button styles - [`af81d3c`](https://github.com/radzenhq/radzen-blazor/commit/af81d3c84786558fe1b59a851e1f0dff91291f54) Remove important rule - [`2046772`](https://github.com/radzenhq/radzen-blazor/commit/20467720c3596e597c6371b909eb8fe0934f9e9c) Update demo and add it to main menu ### 📊 Changes **9 files changed** (+443 additions, -9 deletions) <details> <summary>View changed files</summary> ➕ `Radzen.Blazor.Tests/SpeechToTextButtonTests.cs` (+197 -0) ➕ `Radzen.Blazor/RadzenSpeechToTextButton.razor` (+3 -0) ➕ `Radzen.Blazor/RadzenSpeechToTextButton.razor.cs` (+105 -0) 📝 `Radzen.Blazor/themes/_components.scss` (+2 -1) ➕ `Radzen.Blazor/themes/components/blazor/_speech-to-text-button.scss` (+36 -0) 📝 `Radzen.Blazor/wwwroot/Radzen.Blazor.js` (+46 -8) 📝 `RadzenBlazorDemos/Pages/Index.razor` (+1 -0) ➕ `RadzenBlazorDemos/Pages/SpeechToTextButtonPage.razor` (+45 -0) 📝 `RadzenBlazorDemos/Services/ExampleService.cs` (+8 -0) </details> ### 📄 Description radzenhq#699 Refactored original pull request: radzenhq#700 --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
claunia added the pull-request label 2026-01-29 18:18:06 +00:00
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: starred/radzen-blazor#2283