
Security News
Crates.io Users Targeted by Phishing Emails
The Rust Security Response WG is warning of phishing emails from rustfoundation.dev targeting crates.io users.
apostrophe-twitter
Advanced tools
This module was for A2 0.5.x. For new projects, use the apostrophe-twitter-widgets module.
apostrophe-twitter is a widget for the Apostrophe content management system. apostrophe-twitter lets you add a Twitter feed to any content area created with Apostrophe. apostrophe-twitter is also intended as a demonstration of how to add custom widgets to Apostrophe and enable their use in your project. See apostrophe-sandbox for a project that demonstrates how to use apostrophe-twitter.
Due to Twitter's API access policies, you must register a Twitter "app" to use this module. The consumerKey
and consumerSecret
, accessToken
and accessTokenSecret
options must be set when initializing the module. After registering your app on dev.twitter.com, click "create my access token." Then refresh the page as Twitter usually fails to display the token on the first try.
nodemon## Setup
If you are using apostrophe-site
(and you should be), adding this module is as simple as:
npm install apostrophe-twitter
And in your app.js file:
modules: {
... other modules ...
'apostrophe-twitter': {
consumerKey: 'get',
consumerSecret: 'your',
accessToken: 'own',
accessTokenSecret: 'credentials'
},
... yet more modules ...
}
Now it will be included in the default set of controls. If you are setting the controls
option on your areas, the widget's name is twitter
.
To insert it as a singleton, you might write:
{{ aposSingleton(page, 'twitter', 'twitter', { limit: 3 }) }}
If you want the same feed to appear on many pages, you might use the global
virtual page:
{{ aposSingleton(global, 'twitter', 'twitter', { limit: 3 }) }}
The limit
option controls the number of tweets to be displayed, at most. The limit
option defaults to 5
.
By default the profile picture is present but hidden by CSS. You can override this by setting the apos-tweet-profile-image
class to display: block
at project level. The background image of that div is the user's profile picture. Keep in mind they are only 48x48.
Once the tweets have been fully loaded into the template, an event called 'aposTwitterReady' fires. If you are manipulating the tweets on the front-end, you will want to listen for aposTwitterReady, rather than other DOM events. If you don't, the tweets may take a few seconds to load and your wonderful functions will fire before the tweets are accessible. You can then target the twitter widget with a simple declaration.For example:
$('body').on('aposTwitterReady', '.apos-widget', function() {
$widget = $(this);
$widget.find('.apos-tweets').makeThemMoreAwesome();
});
If no tweets could be found, an event called 'aposTwitterNull' fires. If you want something special to happen if there are no tweets available, this is your event.
$('body').on('aposTwitterNull', '.apos-widget', function() {
$widget = $(this);
$widget.find('.apos-tweets').seeYaLaterTemplate();
});
Enjoy!
FAQs
Adds a Twitter feed widget to Apostrophe's rich content editor
The npm package apostrophe-twitter receives a total of 2 weekly downloads. As such, apostrophe-twitter popularity was classified as not popular.
We found that apostrophe-twitter demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 9 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
The Rust Security Response WG is warning of phishing emails from rustfoundation.dev targeting crates.io users.
Product
Socket now lets you customize pull request alert headers, helping security teams share clear guidance right in PRs to speed reviews and reduce back-and-forth.
Product
Socket's Rust support is moving to Beta: all users can scan Cargo projects and generate SBOMs, including Cargo.toml-only crates, with Rust-aware supply chain checks.