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.
@twreporter/redux
Advanced tools
Redux actions and reducers for twreporter website.
CUSTOMER_FOLDER=../entry_project/ npm run dev
// Assume your entry project is located at /home/nickli/entry_project.
// In the entry_project, you install @twreporter/redux,
// all the @twreporter/redux codes will be at /home/nickli/entry_project/@twreporter/redux.
// npm run dev will copy @twreporter/redux transpiled es5 javascript codes to your custom folder, that is entry_project.
npm run build
npm publish
// src/client.js
/* global __DEVELOPMENT__ */
import React from 'react'
import ReactDOM from 'react-dom'
import twreporterRedux from '@twreporter/redux'
import StoreProvider = twreporterRedux.StoreProvider
const ssrReduxState = window.__REDUX_STATE__ || {}
twreporterRedux.createStore(ssrReduxState, null, __DEVELOPMENT__)
.then(store => {
const jsx = (
<StoreProvider store={store}>
<BrowserRouter>
<React.Fragment>
<Route path="/" component={scrollToTopAndFirePageview} />
<App releaseBranch={releaseBranch}/>
</React.Fragment>
</BrowserRouter>
</StoreProvider>
)
if (__DEVELOPMENT__) {
ReactDOM.render(jsx, document.getElementById('root'))
} else {
ReactDOM.hydrate(jsx, document.getElementById('root'))
}
})
// src/containers/article.js
import Article from '@twreporter/react-article-components'
import PropTypes from 'prop-types'
import React from 'react'
import twreporterRedux from '@twreporter/redux'
const ReduxStoreContext = twreporterRedux.ReduxStoreContext
class ArticleContainer extends React.Component {
static contextType = ReduxStoreContext
static propTypes = {
match: PropTypes.shape({
params: PropTypes.shape(
slug: PropTypes.string.isRequired,
)
})
}
componentDidMount() {
const { store } = this.context
const slug = _.get(this.props, 'match.params.slug')
store.actions.fetchAFullPost(slug)
}
render() {
const { store } = this.context
const { entities, selectedPost } = store.getState()
const post = _.get(entities, [ reduxStateFields.postsInEntities, selectedPost.slug ], {})
return (
<Article post={post}/>
)
}
}
// src/data-loaders/article.js
import get from 'lodash/get'
import twreporterRedux from '@twreporter/redux'
const _ = {
get,
}
/**
* loadData function is used for server side rendering.
* It depends on redux store to load data and dispatch loaded results.
* The loaded data is needed by `a/:slug` page.
*
* @param {Object} match - `match` object of `react-router`
* @param {Object} match.params - key/value pairs parsed from the URL corresponding to the dynamic segments of the path
* @param {string} match.params.slug - dynamic path segment
* @param {Object} store - redux store instance
* @returns {Promise} which resolves with loading successfully or rejects with error
*/
export default function loadData({ match, store }) {
const slug = _.get(match, 'params.slug')
return store.dispatch(store.actions.fetchAFullPost(slug)).then(() => {
const state = store.getState()
const selectedPost = _.get(
state,
twreporterRedux.reduxStateFields.selectedPost,
{}
)
if (_.get(selectedPost, 'error')) {
return Promise.reject(_.get(selectedPost, 'error'))
}
return Promise.resolve()
})
}
The redux state will be like the following example.
If you use this library, please make sure the field name of your redux state should match the field name we define.
{
index_page: {
latest_section: [],
editor_picks_section: [],
latest_topic_section: [],
reviews_section: [],
opics_section: [],
photos_section: [],
infographics_section: [],
},
// full topics and posts will be stored here
entities: {
posts: {},
topics: {},
},
lists: {
// list might be any group of posts
listID1: {
total: 10,
// there will be only slugs in items
items: ['slug-1', 'slug-2', 'slug-4'],
error: null,
// pages is used to store items position,
// say, if
// pages = {
// 1: [0, 2]
// }
// which means, items of page 1 are stored
// from items[0] to items[2]
pages: {
1: [0, 3],
}
},
listID2: {
total: 15,
// there will be only slugs in items
items: [],
error: null,
pages: {},
}
},
// list topics we already get
topic_list: {
total: 10,
// only store topic slug
items: [],
totalPages: 1,
// current page
page: 1,
// number per page
nPerPage: 10,
error: null,
isFetching: false,
},
// current post we want to show in article page
selected_post: {
isFetching: true,
slug: 'post-slug',
error: null
},
// current topic we want to show in topic landing page
selected_topic: {
isFetching: true,
slug: 'topic-slug',
error: null
}
}
Fetch all posts and topics index page needed.
reduxState.indexPage
will contain each sections(like editor_picks, review, latest ...etc) in the homepage of twreporter
reduxState.post
will store slug
, error
and isFetching
reduxState.posts
will store items
, error
and total
reduxState.topic
will store slug
, error
and isFetching
reduxState.topics
will store items
, totalPages
, page
, nPerPage
, error
and isFetching
reduxState.entities.posts
will store ${POST_SLUG}: ${POST_DATA} (string: Object) pair in a map
reduxState.entities.topics
will store ${TOPIC_SLUG}: ${TOPIC_DATA} {string: Object} pair in a map
FAQs
redux actions and reducers for twreporter website
The npm package @twreporter/redux receives a total of 263 weekly downloads. As such, @twreporter/redux popularity was classified as not popular.
We found that @twreporter/redux 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.
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.