Socket
Book a DemoInstallSign in
Socket

@deleteagency/dc

Package Overview
Dependencies
Maintainers
6
Versions
13
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@deleteagency/dc

[Live Demo](https://delete-agency.github.io/dc/)

4.0.2
latest
Source
npmnpm
Version published
Weekly downloads
117
-18.75%
Maintainers
6
Weekly downloads
 
Created
Source

DC

Live Demo

Motivation

TODO

Installation

Use the package manager npm for installation.

$ npm install @deleteagency/dc

Usage

// collapsed/collapsed.js
import { DcComponent } from  '@deleteagency/dc';

class CollapsedComponent extends DcBaseComponent {
	static namespace = 'collapsed';
	static requiredRefs = ['button', 'content'];

	init = () => {
		console.log('CollapsedComponent was instantiated on the element', this.element);
		console.log('Options', this.options);
		console.log('Refs', this.refs);

		this.addListener(this.refs.button, 'click', this.onClick);
	}

	onClick = () => {
		if (this.refs.content.classList.contains('show')) {
			this.refs.content.classList.remove('show');
		} else {
			this.refs.content.classList.add('show');
		}
	}
}

// collapsed/index.js
import './scss/index.scss';

import { dcFactory } from  '@deleteagency/dc';
import CollapsedComponent from './collapsed.js';
dcFactory.register(CollapsedComponent);


// later after registering all your components, when your page is ready
dcFactory.init(document.body);

API

dcFactory.register(componentClass[, selector])

componentClass

Required
Type: typeof DcBaseComponent

Class which inherits DcBaseComponent and will be instantiated

selector

Optional
Type: string | CallableFunction: HTMLElement[]

CSS selector which will override searching by getNamespace() and be used for searching elements of given componentClass.

dcFactory.init(root, withLazy = true)

Starts the factory on a given root: finds and creates all registered components within the root

root

Optional
Type: HTMLElement

withLazy

Optional
Type: boolean

Defines whether or not components which are marked as lazy should be created during this particular initialization. To mark components as lazy you need to add data-dc-lazy attribute on its element or any of its parent elements

dcFactory.destroy(root)

Destroy all previously registered components within the passed element

root

Required
Type: HTMLElement

License

MIT

FAQs

Package last updated on 09 Dec 2021

Did you know?

Socket

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.

Install

Related posts

SocketSocket SOC 2 Logo

Product

About

Packages

Stay in touch

Get open source security insights delivered straight into your inbox.

  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc

U.S. Patent No. 12,346,443 & 12,314,394. Other pending.