Socket
Socket
Sign inDemoInstall

grapesjs-component-countdown

Package Overview
Dependencies
0
Maintainers
1
Versions
5
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    grapesjs-component-countdown

Simple countdown component for the GrapesJS Editor


Version published
Weekly downloads
4.8K
decreased by-10.9%
Maintainers
1
Install size
24.9 kB
Created
Weekly downloads
 

Readme

Source

GrapesJS Countdown

Simple countdown component for GrapesJS Editor

GrapesJS


Demo

Summary

  • Plugin name: grapesjs-component-countdown
  • Components: countdown
  • Blocks: countdown

Options

OptionDescriptionDefault
idThe ID used to create the block and component.countdown
labelThe label used for the block and the component.Countdown
blockObject to extend the default block, eg. { label: 'Countdown', category: 'Extra', ... }. Pass a falsy value to avoid adding the block.{}
propsObject to extend the default component properties., eg. { name: 'Countdown', droppable: false, ... }.{}
styleCustom CSS styles for the component. This will replace the default one.''
styleAdditionalAdditional CSS styles for the component. These will be appended to the default one.''
startTimeDefault start time, eg. 2030-01-25 00:00.''
endTextText to show when the countdown is ended.'EXPIRED'
dateInputTypeDate input type, eg. date, datetime-local'date'
labelDaysDays label text used in component.'days'
labelHoursHours label text used in component.'hours'
labelMinutesMinutes label text used in component.'minutes'
labelSecondsSeconds label text used in component.'seconds'
classPrefixCountdown component class prefix.'countdown'

Download

  • CDN
    • https://unpkg.com/grapesjs-component-countdown
  • NPM
    • npm i grapesjs-component-countdown
  • GIT
    • git clone https://github.com/artf/grapesjs-component-countdown.git

Usage

Directly in the browser

<link href="https://unpkg.com/grapesjs/dist/css/grapes.min.css" rel="stylesheet"/>
<script src="https://unpkg.com/grapesjs"></script>
<script src="path/to/grapesjs-component-countdown.min.js"></script>

<div id="gjs"></div>

<script type="text/javascript">
  var editor = grapesjs.init({
      container : '#gjs',
      // ...
      plugins: ['grapesjs-component-countdown'],
      pluginsOpts: {
        'grapesjs-component-countdown': { /* options */ }
      }
  });
</script>

Modern javascript

import grapesjs from 'grapesjs';
import pluginCountdown from 'grapesjs-component-countdown';

const editor = grapesjs.init({
  container : '#gjs',
  // ...
  plugins: [pluginCountdown],
  pluginsOpts: {
    [pluginCountdown]: { /* options */ }
  }
  // or
  plugins: [
    editor => pluginCountdown(editor, { /* options */ }),
  ],
});

Development

Clone the repository

$ git clone https://github.com/artf/grapesjs-component-countdown.git
$ cd grapesjs-component-countdown

Install it

$ npm i

Start the dev server

$ npm start

Build before the commit. This will also increase the patch level version of the package

$ npm run build

License

BSD 3-Clause

Keywords

FAQs

Last updated on 06 Jun 2023

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.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc