Socket
Socket
Sign inDemoInstall

@bbc/psammead-bulletin

Package Overview
Dependencies
Maintainers
40
Versions
125
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@bbc/psammead-bulletin

A bulletin component for live and non-live radio and tv.


Version published
Weekly downloads
4
decreased by-99.18%
Maintainers
40
Weekly downloads
 
Created
Source

psammead-bulletin - Known Vulnerabilities Dependency Status peerDependencies Status Storybook GitHub license npm version PRs Welcome

Description

The Bulletin component can be used to render Radio or TVBulletin by passing in the type.

Installation

npm install @bbc/psammead-bulletin --save

Props

Bulletin

ArgumentTypeRequiredDefaultExample
scriptobjectyesN/A{ canon: { groupA: { fontSize: '28', lineHeight: '32',}, groupB: { fontSize: '32', lineHeight: '36', }, groupD: { fontSize: '44', lineHeight: '48', }, }, trafalgar: { groupA: { fontSize: '20', lineHeight: '24', }, groupB: { fontSize: '24', lineHeight: '28', }, groupD: { fontSize: '32', lineHeight: '36', }, }, }
servicestringyesN/A'pidgin'
dirstringno'ltr'One of ['rtl', 'ltr']
imagenodenonull<Image src={src} alt={alt} />
typestringyesN/AOne of ['audio', 'video']
ctaTextstringyesN/AWatch
ctaLinkstringyesN/A'http://link.to.resource'
summarystringnonull'Bulletin summary'
headlineTextstringyesN/A'Bulletin headline'
isLivebooleannofalsetrue
liveTextstringno'Live''Localised Live'
offScreenTextstringyesN/A'Watch Live'
langstringnonull'en-GB'

Usage

import Bulletin from '@bbc/psammead-bulletin';
import { Image } from '@bbc/psammead-image';
import { latin } from '@bbc/gel-foundations/scripts';

const WrappingComponent = () => {
  const image = <Image src="/image.png" altText="alt text" />;

  return (
    <Bulletin
      script={latin}
      service="news"
      image={image}
      type="video"
      ctaLink="/cta"
      ctaText="Watch"
      summary="This is the summary"
      headlineText="This is the headline"
      isLive
      offScreenText="Watch LIVE"
    />
  );
};

When to use this component

The Bulletin component is designed to be used to link to a page on which the user can play the radio or TV content.

Accessibility notes

This component uses full semantic markup for the BulletinHeading, BulletinSummary, and BulletinHeadingLink, using h3, p and a respectively. Other accessibility factors such as image alt text and time elements are passed in as props and aren't explicitly set in this component.

The link is nested inside the h3 for better support with VoiceOver Mac and Safari. We use the faux block link pattern which makes the entire block clickable, whilst also enabling links nested within in that block to also be clickable.

The Call To Action is hidden from screen-readers to prevent the repetition from the title. The hidden text passed in as a prop is used before the headline to indicate to screen-reader users what type of content it is.

Contributing

Psammead is completely open source. We are grateful for any contributions, whether they be new components, bug fixes or general improvements. Please see our primary contributing guide which can be found at the root of the Psammead repository.

Code of Conduct

We welcome feedback and help on this work. By participating in this project, you agree to abide by the code of conduct. Please take a moment to read it.

License

Psammead is Apache 2.0 licensed.

FAQs

Package last updated on 13 Apr 2022

Did you know?

Socket

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.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc