Research
Security News
Malicious npm Packages Inject SSH Backdoors via Typosquatted Libraries
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
@speechly/react-ui
Advanced tools
Speechly website | Docs | Blog
@speechly/react-ui
package is an optional UI component library for speeding up voice-enabled web app development using React and Speechly.
Create a React app (if starting from scratch), then install the required packages:
# Create a new React app in current folder
create-react-app .
# Install react-ui and react-client dependency
npm i @speechly/react-client
npm i @speechly/react-ui
Import the required components (e.g. in App.jsx
):
import {
SpeechProvider
} from "@speechly/react-client";
import {
PushToTalkButton,
PushToTalkButtonContainer,
BigTranscript,
BigTranscriptContainer,
ErrorPanel
} from "@speechly/react-ui";
Place the components inside your <SpeechProvider>
block since they depend on the context hook it provides.
function App() {
return (
<SpeechProvider appId="014ce3a6-9bbf-4605-976f-087a8f3ec178" language="en-US">
<BigTranscriptContainer>
<BigTranscript />
</BigTranscriptContainer>
<PushToTalkButtonContainer>
<PushToTalkButton captureKey=" " />
<ErrorPanel/>
</PushToTalkButtonContainer>
</SpeechProvider>
);
}
To test it, run the app with npm start
. If you used the default appId
(Home Automation Demo), hold the push-to-talk button and try saying "Turn off the lights in the kitchen".
If you have already trained your own custom speech model, replace the appId
with your own acquired from Speechly Dashboard.
<PushToTalkButton/>
is a holdable button to control listening for voice input.
The Push-to-Talk button is intended to be placed as a floating button at the lower part of the screen using <PushToTalkButtonContainer/>
so mobile users can reach it with ease.
Desktop users can control it with an optional keyboard hotkey. Our hotkey recommendation is the spacebar.
The placement, size and colors of the button can be customised.
Use
<PushToTalkButton/>
to let users turn listening for voice input on and off
The icon on the button displays the Speechly system state:
Offline (Power-on icon): Pressing the button initialises the Speechly API and may trigger the browser's microphone permission prompt. Shown during SpeechlyState.Idle
Ready (Mic icon). Waiting for user to press and hold the button to start listening. Shown during SpeechlyState.Ready
Listening (Highlighted mic). This state is displayed when the component is being held down and Speechly listens for audio input. Shown during SpeechlyState.Recording
Receiving transcript (Pulsating mic). This state may be briefly displayed when the button is released and Speechly finalizes the stream of results. Shown during SpeechlyState.Loading
Error (Broken mic icon). In case of an error (usually during initialisation), the button turns into a broken mic symbol. If you have the optional <ErrorPanel/>
component in your hierarchy, a description of the problem is displayed. Otherwise, you'll need to look into the browser console to discover the reason for the error. Shown in case of SpeechlyState.Failed
, SpeechlyState.NoAudioConsent
, SpeechlyState.NoBrowserSupport
<PushToTalkButtonContainer>
is a convenience container that places the button at the lower part of the screen. You may replace it with your own <div>
or similar.
The widget size is defined by the size
property. Parameters are in css, e.g. 6rem
.
<PushToTalkButton size="6rem" />
gradientStops
property. Parameter is an array of 2 colors, e.g. ["#aaa","#ddd"].<PushToTalkButton gradientStops={["#aaa", "#ddd"]} />
<BigTranscript/>
is an overlay-style component for displaying real-time speech-to-text transcript.
It is intended to be placed as an overlay near top-left corner of the screen with <BigTranscriptContainer>
. It is momentarily displayed and automatically hidden after the end of voice input.
The placement, typography and colors of the button can be customised. Recognized entities are tagged with css classes so they can be styled individually.
Use
<BigTranscript/>
to display real-time speech-to-text transcript for better feedback
Styling like colors can be assigned to .BigTranscript
container class and to different entity types by using .Entity.<EntityName>
selector. Replace <EntityName>
with the exact entity name defined in your SAL.
.BigTranscript {
color: #fff;
font-family: "Organetto";
font-size: 1.4rem;
line-height: 1.15;
}
.BigTranscript .Entity {
color: #909090;
}
.BigTranscript .Entity.room {
color: #1fd3f3;
}
.BigTranscript .Entity.device {
color: #1fd3f3;
}
<ErrorPanel/>
is a normally hidden panel for voice-related error messages and recovery instructions when there is a problem with voice functions, e.g. when accessing site via http or if microphone permission is denied or unsupported in browser.
<ErrorPanel/>
is intended to be placed inside <PushToTalkButtonContainer>
block. You may, however, place it anywhere in the component hierarchy.
It automatically shows if there is problem detected upon pressing the <PushToTalkButton/>
. Internally, it uses pubsub-js
for component to component communication.
Use
<ErrorPanel/>
to help users diagnose and recover from voice-related issues
Notifications are small messages that are intended to be momentarily displayed.
They are shown inside <BigTranscriptContainer/>
at the top-left of the screen so it needs to be a part of your DOM.
Notifications can be cleared either programmatically or by tapping on them.
Use Notifications to provide utterance examples and feedback, especially when the app is unable to respond to the user's utterance
pubsub-js
package is used to communicate with the notification manager.
npm install --save pubsub-js
Add the following lines to your header:
import PubSub from "pubsub-js";
import { SpeechlyUiEvents } from "@speechly/react-ui/types";
PubSub.publish(SpeechlyUiEvents.Notification, {
message: `Please say again`,
footnote: `Try: "Blue jeans"`
});
The notification consists of a short main message (displayed in big typeface) and an optional footnote (displayed in smaller typeface).
One notification can be displayed at a time. A successive call will instantly replace the previous notification.
PubSub.publish(SpeechlyUiEvents.DismissNotification);
You can find the detailed API documentation in GitHub repository.
Speechly is a developer tool for building real-time multimodal voice user interfaces. It enables developers and designers to enhance their current touch user interface with voice functionalities for better user experience. Speechly key features:
Example application | Description |
---|---|
Instead of using buttons, input fields and dropdowns, Speechly enables users to interact with the application by using voice. User gets real-time visual feedback on the form as they speak and are encouraged to go on. If there's an error, the user can either correct it by using traditional touch user interface or by voice. |
FAQs
Speechly UI Components
The npm package @speechly/react-ui receives a total of 48 weekly downloads. As such, @speechly/react-ui popularity was classified as not popular.
We found that @speechly/react-ui demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 5 open source maintainers collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Research
Security News
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
Security News
MITRE's 2024 CWE Top 25 highlights critical software vulnerabilities like XSS, SQL Injection, and CSRF, reflecting shifts due to a refined ranking methodology.
Security News
In this segment of the Risky Business podcast, Feross Aboukhadijeh and Patrick Gray discuss the challenges of tracking malware discovered in open source softare.