@financial-times/x-podcast-launchers
v6.8.0
Published
This module allows users to open a podcast series in various podcast apps. The subscribe urls for each podcast app are generated from rss url with config (`/src/app-links.js`).
Downloads
321
Maintainers
Keywords
Readme
x-podcast-launchers
This module allows users to open a podcast series in various podcast apps. The subscribe urls for each podcast app are generated from rss url with config (/src/app-links.js
).
No elements are returned when the conceptId
does not map to a known podcast series, as defined in src/map-concept-to-acast-series.js
.
This component also renders a myFT follow button (x-follow-button) for the conceptId provided. This is acts as an onsite way to follow the series should the user's podcast app not be listed.
Installation
This module is supported on Node 12 and is distributed on npm.
npm install --save @financial-times/x-podcast-launchers
The x-engine
module is used to inject your chosen runtime into the component. Please read the x-engine
documentation first if you are consuming x-
components for the first time in your application.
Styling
The styles required for this components are bundled with it.
Usage
The components provided by this module are all functions that expect a map of properties. They can be used with vanilla JavaScript or JSX (If you are not familiar check out WTF is JSX first). For example if you were writing your application using React you could use the component like this:
import React from 'react';
import { PodcastLaunchers } from '@financial-times/x-podcast-launchers';
// A == B == C
const a = PodcastLaunchers(props);
const b = <PodcastLaunchers {...props} />;
const c = React.createElement(PodcastLaunchers, props);
// within your app's sass file
@import "@financial-times/x-podcast-launchers/dist/PodcastLaunchers";
All x-
components are designed to be compatible with a variety of runtimes, not just React. Check out the x-engine
documentation for a list of recommended libraries and frameworks.
Properties
Feature | Type | Required | Notes
----------------------|----------|----------|------------------
acastRSSHost
| String | Yes | e.g. 'https://acast.access.com'
conceptId
| String | Yes |
renderFollowButton
| Function | No | Optional render prop for the follow button
Additional props such as the conceptName
may be required by x-follow-button. Documentation for these is available over in the component's readme.