![Oracle Drags Its Feet in the JavaScript Trademark Dispute](https://cdn.sanity.io/images/cgdhsj6q/production/919c3b22c24f93884c548d60cbb338e819ff2435-1024x1024.webp?w=400&fit=max&auto=format)
Security News
Oracle Drags Its Feet in the JavaScript Trademark Dispute
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
@zohodesk/library-platform
Advanced tools
This library provides components for rendering Table List pages in compliance with the Zoho Desk Module Framework standards. It includes functionality for table handling.
This library provides components for rendering Table List pages in compliance with the Zoho Desk Module Framework standards. It includes functionality for table handling.
To install the library, use the following command:
npm install @zohodesk/library-platform
To create a Table Connected component, you can use the TableConnectedFactory
. Here is a simple example:
import TableConnectedFactory from '@zohodesk/library-platform/TableConnectedFactory';
const myTableComponent = TableConnectedFactory.create({
name: 'MyTableComponent',
dataBroker: myDataBroker,
eventHandlers: {
onRowSelect: row => {
console.log('Selected row:', row);
}
}
});
You can create custom components using the createCustomComponent
function. This function sets up the component with the necessary dependencies and lifecycle methods.
import createCustomComponent from '@zohodesk/library-platform/createCustomComponent';
const MyCustomComponent = createCustomComponent({
name: 'MyCustomComponent',
View: MyComponentView // Your component view
});
// Usage in application
<MyCustomComponent />;
The ComponentRegistry
class is a singleton that allows you to register and retrieve components by name. This can be useful for managing component instances throughout your application.
import ComponentRegistry from '@zohodesk/library-platform/ComponentRegistry';
// Register a component
ComponentRegistry.register('MyComponent', myComponentInstance);
// Retrieve a component
const myComponent = ComponentRegistry.get('MyComponent');
The TableConnectedFactory.create
method accepts the following parameters:
string
- The name of the component.object
- The data broker instance to manage data fetching and manipulation.object
- An object containing event handler functions.React.Component
- Custom view component to render the table.FAQs
This library provides components for rendering Table List pages in compliance with the Zoho Desk Module Framework standards. It includes functionality for table handling.
The npm package @zohodesk/library-platform receives a total of 179 weekly downloads. As such, @zohodesk/library-platform popularity was classified as not popular.
We found that @zohodesk/library-platform 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.
Security News
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
Security News
The Linux Foundation is warning open source developers that compliance with global sanctions is mandatory, highlighting legal risks and restrictions on contributions.
Security News
Maven Central now validates Sigstore signatures, making it easier for developers to verify the provenance of Java packages.