Security News
The Risks of Misguided Research in Supply Chain Security
Snyk's use of malicious npm packages for research raises ethical concerns, highlighting risks in public deployment, data exfiltration, and unauthorized testing.
@gooddata/gdc-afm-connect
Advanced tools
This package may help to build react-redux apps with GoodData.UI faster. Use at your own risk.
Install gdc-afm-connect yarn add '@gooddata/gdc-afm-connect'
Import AFM reducers and combine
import { createStore, combineReducers } from 'redux';
import { AfmReducers } from '@gooddata/gdc-afm-connect';
const configureStore = () => {
const store = createStore(
combineReducers({
...AfmReducers
})
);
return store;
};
Wrap regular components with afmConnect
import { ColumnChart as ColumnChartOrig } from '@gooddata/react-components';
import { afmConnect } from '@gooddata/gdc-afm-connect';
const ColumnChart = afmConnect(ColumnChartOrig);
<ColumnChart
projectId="<project-id"
filterGroup="<filter-group>"
measures="<measures>"
/>
Wrap AFM components with afmWrapper
import { AfmComponents } from '@gooddata/react-components';
import { afmWrapper } from '@gooddata/gdc-afm-connect';
const ColumnChart = afmWrapper(AfmComponents.ColumnChart);
<ColumnChart
projectId="<project-id"
filterGroup="<filter-group>"
afm="<afm>"
/>
❗️Please note that AFM components are being DEPRECATED. Use regular components as shown above.
UPDATE_POSITIVE_ATTRIBUTE_FILTER
updatePositiveAttributeFilter(
filterGroup: '<string>', // name of the filter group context
attributeDisplayForm: '<string>', // uri or identifier of attribute display form
inValues: '<array>' // array of attribute element uris
)
UPDATE_NEGATIVE_ATTRIBUTE_FILTER
updateNegativeAttributeFilter(
filterGroup: '<string>', // name of the filter group context
attributeDisplayForm: '<string>', // uri or identifier of attribute display form
notInValues: '<array>' // array of attribute element uris
)
REMOVE_ATTRIBUTE_FILTER
removeAttributeFilter(
filterGroup: '<string>', // name of the filter group context
attributeDisplayForm: '<string>' // uri or identifier of attribute display form
)
UPDATE_DATE_FILTER
updateDateFilter(
filterGroup: '<string>', // name of the filter group context
dataSet: '<string>', // uri or identifier of date display form
grain: '<string>', // date granularity, currently only 'GDC.time.date' is supported
start: '<string>', // start date, can be absolute (i.e. 'YYYY-MM-DD') or relative (e.g. 0)
end: '<string>' // end date, can be absolute (i.e. 'YYYY-MM-DD') or relative (e.g. -1)
)
REMOVE_DATE_FILTER
// TODO not yet implemented
yarn validate
yarn build
package.json
accordinglynpm publish --access=restricted
FAQs
GoodData.UI AFM Redux Connector
We found that @gooddata/gdc-afm-connect demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 37 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
Snyk's use of malicious npm packages for research raises ethical concerns, highlighting risks in public deployment, data exfiltration, and unauthorized testing.
Research
Security News
Socket researchers found several malicious npm packages typosquatting Chalk and Chokidar, targeting Node.js developers with kill switches and data theft.
Security News
pnpm 10 blocks lifecycle scripts by default to improve security, addressing supply chain attack risks but sparking debate over compatibility and workflow changes.