Security News
GitHub Removes Malicious Pull Requests Targeting Open Source Repositories
GitHub removed 27 malicious pull requests attempting to inject harmful code across multiple open source repositories, in another round of low-effort attacks.
@dpc-sdp/myvic-data-driven-component
Advanced tools
**This is a "@dpc-sdp/ripple-nuxt-tide" submodule, for Single Digital Presence projects use only.**
This is a "@dpc-sdp/ripple-nuxt-tide" submodule, for Single Digital Presence projects use only.
A module to allow editors in SDP Tide CMS to add charts/maps into a content page.
npm install @dpc-sdp/myvic-data-driven-component --save
In SDP project "tide.config.js"(it should be found in SDP site project root "/tide/tide.config.js"), add module as below example.
const tideConfig = {
nodeModules: [
'@dpc-sdp/myvic-data-driven-component'
]
}
To add custom components, set customComponents
to true
.
const tideConfig = {
nodeModules: [
['@dpc-sdp/myvic-data-driven-component', { customComponents: true }]
]
}
Then add a file "/tide/data-driven-component-loader.js" to map and load your custom components, as below example.
const loadComponent = (configs) => {
let dataDrivenComp
switch (configs.name) {
case 'my_chart':
dataDrivenComp = {
name: () => import(/* webackChunkName: 'my-chart' */ '~/components/MyChart').then(m => m.MyChart)
}
break
case 'myvic_barchart_demo_1':
dataDrivenComp = {
name: () => import(/* webackChunkName: 'myvic-bar-chart' */ '@dpc-sdp/myvic-bar-chart'),
props: {
title: 'test bar chart',
data: {
labels: ['January', 'February', 'March', 'April', 'May', 'June'],
datasets: [
{
label: 'Dataset 1',
data: [40, 20, 12, 52, 10, 39]
}
]
}
}
}
break
}
return dataDrivenComp
}
export default loadComponent
For components like map, we are not going to support IE browsers. To disable IE support, set ieSupport
to false
in the configuration.
case 'my_map':
dataDrivenComp = {
name: () => import(/* webackChunkName: 'my-map' */ '~/components/MyMap').then(m => m.MyMap),
ieSupport: false
}
break
The map will not be rendered. A alert will be displayed to the user.
FAQs
**This is a "@dpc-sdp/ripple-nuxt-tide" submodule, for Single Digital Presence projects use only.**
The npm package @dpc-sdp/myvic-data-driven-component receives a total of 47 weekly downloads. As such, @dpc-sdp/myvic-data-driven-component popularity was classified as not popular.
We found that @dpc-sdp/myvic-data-driven-component demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 6 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
GitHub removed 27 malicious pull requests attempting to inject harmful code across multiple open source repositories, in another round of low-effort attacks.
Security News
RubyGems.org has added a new "maintainer" role that allows for publishing new versions of gems. This new permission type is aimed at improving security for gem owners and the service overall.
Security News
Node.js will be enforcing stricter semver-major PR policies a month before major releases to enhance stability and ensure reliable release candidates.