Security News
Fluent Assertions Faces Backlash After Abandoning Open Source Licensing
Fluent Assertions is facing backlash after dropping the Apache license for a commercial model, leaving users blindsided and questioning contributor rights.
@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 7 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
Fluent Assertions is facing backlash after dropping the Apache license for a commercial model, leaving users blindsided and questioning contributor rights.
Research
Security News
Socket researchers uncover the risks of a malicious Python package targeting Discord developers.
Security News
The UK is proposing a bold ban on ransomware payments by public entities to disrupt cybercrime, protect critical services, and lead global cybersecurity efforts.