Security News
Bun 1.2 Released with 90% Node.js Compatibility and Built-in S3 Object Support
Bun 1.2 enhances its JavaScript runtime with 90% Node.js compatibility, built-in S3 and Postgres support, HTML Imports, and faster, cloud-first performance.
piral-feeds
Advanced tools
This is a plugin that only has a peer dependency to piral-core
. What piral-feeds
brings to the table is a set of Pilet API extensions that can be used with piral
or piral-core
.
By default, these API extensions are not integrated in piral
, so you'd need to add them to your Piral instance.
The following functions are brought to the Pilet API.
createConnector
Creates a new feed connector, which is an abstraction over a state container driven by the typical lifecycle of a data feed connection.
Returns a higher-order component for providing a data
prop that reflects the current feed data.
For authors of pilets
You can use the createConnector
function from the Pilet API to create a global container managed data feed inside the Piral instance.
There are two kind of calls. The simple variant just uses a callback to populate the data via a lazy loading mechanism.
Example use:
import { PiletApi } from '<name-of-piral-instance>';
import { Page } from './Page';
export function setup(piral: PiletApi) {
const connect = createConnector(() => fetch('http://example.com').then(res => res.json()));
piral.registerPage('/sample', connect(Page));
}
The most powerful variant declares three different sections:
initialize
to declare how data should be loaded initially (e.g., by loading from some API)connect
to define how updates of the data should be retrieved (e.g., via a WebSocket connection)update
to handle the patching of data (e.g., combining the current data with the data retrieved from a WebSocket connection)Example use:
import { PiletApi } from '<name-of-piral-instance>';
import { Page } from './Page';
export function setup(piral: PiletApi) {
const connect = createConnector({
initialize() {
return fetch('http://example.com').then(res => res.json());
},
connect(cb) {
const ws = new WebSocket();
ws.onmessage = e => cb(JSON.parse(e.data));
return () => ws.close();
},
update(data, item) {
return [...data, item];
},
});
piral.registerPage('/sample', connect(({ data }) => <Page items={data} />));
}
Calling createConnector
returns a higher-order component that injects a new prop called data
into the component.
For Piral instance developers
The provided library only brings API extensions for pilets to a Piral instance.
For the setup of the library itself you'll need to import createFeedsApi
from the piral-feeds
package.
import { createFeedsApi } from 'piral-feeds';
The integration looks like:
const instance = createInstance({
// important part
extendApi: [createFeedsApi()],
// ...
});
There are no options available.
Piral is released using the MIT license. For more information see the license file.
0.10.0 (February 2, 2020)
piral-mithril
for Mithril.js (#79)piral-aurelia
for Aurelia (#80)piral-litel
for LitElement (#85)piral-ember
for Ember.js (#96)piral-svelte
for Svelte (#97)piral-elm
for Elm (#118)piral-riot
for Riot.jspiral-react-15
for React v15piral-lazy
for generic lazy loadingreact-arbiter
with piral-base
(#109)--skip-install
(default: false
) flag to --install
(default: true
) for scaffolding--only-core
to --framework
(supporting piral-base
)--tag
to be a positional argument (for pilet upgrade
)setup
in piletsteardown
function in piletsdispatch
and readState
actionsstate
and router
in foreign contextFAQs
Plugin for connecting data feeds in Piral.
We found that piral-feeds demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 0 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.
Security News
Bun 1.2 enhances its JavaScript runtime with 90% Node.js compatibility, built-in S3 and Postgres support, HTML Imports, and faster, cloud-first performance.
Security News
Biden's executive order pushes for AI-driven cybersecurity, software supply chain transparency, and stronger protections for federal and open source systems.
Security News
Fluent Assertions is facing backlash after dropping the Apache license for a commercial model, leaving users blindsided and questioning contributor rights.