npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

carbon-copy

v0.1.92

Published

Copy a template inside a DOM node

Downloads

53

Readme

Published on webcomponents.org

b-c-c size:

c-c size:

<carbon-copy>

NB: These components work best in a futuristic HTML-friendly world. In the meantime, they may work best with the help of one of these.

Copy a template inside a DOM node.

b-c-c

For basic functionality, reference carbon-copy/b-c-c.js and use element name: b-c-c. It just clones the source template into the shadowDOM or innerHTML of the element (depending on the value of the noshadow attribute).

Syntax:

<template id="no-matter">No matter what we
    <slot name="verb1"></slot> (no matter what we <slot name="verb2"></slot>)
</template>
...
<b-c-c copy from="/no-matter">
    <span slot="verb1">
        do
    </span>
    <span slot="verb2">
        say
    </span>
</b-c-c>

Note the use of the attribute "copy". This attribute/property makes the tag more readable, but also acts as an "if" logical operator. If attribute/property "copy" is present/true, only then will it clone the contents of the referenced template (based on id).

The copy property is reflected via the data-copy-is attribute ("true"/"false"),except on browsers that support custom pseudostate. This attribute/state can be used for styling.

In short, b-c-c can be used as a kind of basic "Reverse Polish Notation" version of Polymer's dom-if.

If the attribute "from" changes, b-c-c will blow away what was there before, and clone in the new template. [c-c, on the other hand, will preserve the existing inner (Shadow) DOM, and make it get hidden via display:none. If the value of "/from" reverts back, that original DOM will be re-rendered (and the last template hidden). c-c can be used, combined with templ-mount, to provide an alternative to Polymer's iron-pages, with no legacy dependencies. Subject to change]

Templates can come from outside any shadow DOM if the value of "from" starts with a slash. If "from" starts with "./", the search for the matching template is done within the shadow DOM of the (b-)c-c element (or outside any ShadowDOM if the (b-)c-c element is outside any ShadowDOM). If from starts with "../" then the search is done one level up, etc.

At each stage, if a host web component is hosting the shadowDOM, and it has a property with the list case of the id, then that property is assumed to reference an HTMLTemplateElement. This allows hosting web components to inject the property template dynamically.

By default, b-c-c will copy in the referenced template into a Shadow DOM snippet. However, if you prefer it copy straight into innerHTML, add attribute / property "noshadow." Doing so will, of course, eliminate the slot mechanism from functioning. Hopefully, if template instantiation becomes a thing, that will provide an alternative for this scenario, in terms of declarative support for dynamic content.

In the meantime / in addition, b-c-c supports two additional properties for adjusting the content dynamically:

If toBeTransformed/to-be-transformed property/attribute is set, then b-c-c won't append the clone, until a trans-render context object is passed in to property trContext.

Templatize a materialized DOM element

b-c-c can not only be used to instantiate a template (repeatedly), but also an already materialized DOM element. It does this by creating a template copy of that DOM element first, and then cloning. Subsequent copies from the same DOM element will derive from the template copy (so if the DOM element mutates, copies won't see that).

b-c-c demo

Sample Markup of b-c-c

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta http-equiv="X-UA-Compatible" content="IE=edge">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Document</title>
</head>
<body>
    <div>
        <style>
          div {
            background-color: cornsilk;
          }
        </style>
    
        <h3><a href="https://www.youtube.com/watch?v=eAfyFTzZDMM" target="_blank">Beautiful</a></h3>
        <h4>Christina Aguilera</h4>
        <template id="no-matter">
          <style>
            :host {
              background-color: blanchedalmond;
            }
          </style>
          No matter what we <slot name="verb1"></slot> (no matter what we <slot name="verb2"></slot>)
        </template>
        <template id="beautiful">
          <style>
            div {
              background-color: burlywood;
            }
          </style>
          <div>
            <slot name="subjectIs"></slot> beautiful
          </div>
        </template>
        <template id="down">
          <div>So don't you bring me down today</div>
        </template>
        <template id="chorus">
          <style>
            div {
              background-color: paleturquoise;
            }
          </style>
          <b-c-c copy from="/beautiful">
            <span slot="subjectIs">
              <slot name="subjectIs1"></slot>
            </span>
          </b-c-c>
          <div>No matter what they say</div>
          <div prop-pronoun>Words
            <slot name="verb1"></slot> bring
            <slot name="pronoun1"></slot> down</div>
          <div>Oh no</div>
          <b-c-c copy from="/beautiful">
            <span slot="subjectIs">
              <slot name="subjectIs2"></slot>
            </span>
          </b-c-c>
          <div>In every single way</div>
          <div prop-pronoun>Yes words
            <slot name="verb2"></slot> bring
            <slot name="pronoun2"></slot> down</div>
          <div>Oh no</div>
          <b-c-c copy from="/down"></b-c-c>
        </template>

        <p>Don't look at me</p>
        <p>
          <div>Everyday is so wonderful</div>
          <div>Then suddenly</div>
          <div>It's hard to breathe</div>
          <div>Now and then I get insecure</div>
          <div>From all the pain</div>
          <div>I'm so ashamed</div>
        </p>
        <p>
          <b-c-c copy from="/chorus">
    
            <span slot="verb1">can't</span>
            <span slot="verb2">can't</span>
            <span slot="pronoun1">me</span>
            <span slot="pronoun2">me</span>
            <span slot="subjectIs1">I am</span>
            <span slot="subjectIs2">I am</span>
          </b-c-c>
        </p>
        <p>
    
          <div>To all your friends you're delirious</div>
          <div>So consumed</div>
          <div>In all your doom, ooh</div>
          <div>Trying hard to fill the emptiness</div>
          <div>The pieces gone</div>
          <div>Left the puzzle undone</div>
          <div>Ain't that the way it is</div>
        </p>
        <p>
          <b-c-c copy from="/chorus">
            <span slot="verb1">can't</span>
            <span slot="verb2">can't</span>
            <span slot="pronoun1">you</span>
            <span slot="pronoun2">you</span>
            <span slot="subjectIs1">You are</span>
            <span slot="subjectIs2">You are</span>
          </b-c-c>
        </p>
        <br>
        <b-c-c copy from="/no-matter">
          <span slot="verb1">do</span>
          <span slot="verb2">do</span>
        </b-c-c>
        <br>
        <b-c-c copy from="/no-matter">
          <span slot="verb1">say</span>
          <span slot="verb2">say</span>
        </b-c-c>
        <div>We're the song inside the tune (yeah, oh yeah)</div>
        <div>Full of beautiful mistakes</div>
        <p>
          <div>And everywhere we go (and everywhere we go)</div>
          <div>The sun will always shine (the sun will always, always, shine)</div>
          <div>And tomorrow we might awake</div>
          <div>On the other side</div>
        </p>
        <p>
          <b-c-c copy from="/chorus">
            <span slot="verb1">won't</span>
            <span slot="verb2">can't</span>
            <span slot="pronoun1">us</span>
            <span slot="pronoun2">us</span>
            <span slot="subjectIs1">We are</span>
            <span slot="subjectIs2">We are</span>
          </b-c-c>
        </p>
        <p>
          <div>Oh, oh</div>
          <div>Don't you bring me down today</div>
          <div>Don't you bring me down, ooh</div>
          <div>Today</div>
        </p>
    
      </div>
      <script type=module src="https://unpkg.com/[email protected]/b-c-c.js?module"></script>
</body>
</html>

c-c -- Codeless Web Components

For more extended functionality, use element c-c, "codeless component" (reference: carbon-copy/c-c.js).

Unlike b-c-c, c-c actually generates a custom (web) component on the fly, based on the id of the template. If the template is a simple word, like "mytemplate" the generated custom element will have name c-c-mytemplate. If the id has a dash in it, it will create a custom element with that name (so id's are limited to what is allowed in terms of custom element names).

So here are the steps to create a web component using c-c:

Step 1. Define a template:

<template id="hello-world">
    Hello, world
</template>

Step 2. Register the web component

<c-c copy from="/hello-world"></c-c>

Or, if the c-c element comes right after the template element:

<template id="hello-world">
    Hello, world
</template>
<c-c copy from-prev-sibling></c-c>

Step 3. Add your web component to the page

<body>
  ...
    <hello-world></hello-world>
  ...
</body>

Step 4. Stare into the abyss.

Adding string/numeric/bool properties to your declarative web component

The template can specify a list of primitive properties to add to the automatically generated web component:

<template id="pow">
    <div>
        <slot name="subjectIs"></slot> 
    </div>
</template>
...
<c-c from ="/pow" string-props='["name","rank", "serialNumber"]' num-props='["age", "weight"]' bool-props='["mia"]'>

These properties can be read via attributes on the "c-c-pow" element instances (in this example), or passed in as properties. They will reflect to custom psuedo states when the browser allows it.

Bind to the properties

c-c (or carbon-copy) supports binding to the UI using an extension of Github's Template-Parts library.

Example:

<template id=hello-world>
    <div>Hello, {{place}}</div>
</template>
<c-c copy from="/hello-world" string-props='["place"]'></c-c>

<hello-world place="mars"></hello-world>

Results in displaying "Hello mars".

The value of place can be manipulated either via the attribute value or the property value. Lisp-case/camelCase is used for attributes/properties.

Demo

Setting default values

<template id=hello-world>
    <div>Hello, {{place}}</div>
</template>
<c-c copy from="/hello-world" string-props='["place=World"]'></c-c>

<hello-world place="mars"></hello-world>

Attaching event handlers

Use on-to-me or other declarative vocabulary libraries.

carbon-copy [TODO]

Finally we get to element carbon-copy. It synthesizes some of the features of both b-c-c and c-c together.

Like b-c-c, it can take a materialized DOM element as its input, not just a template. Like b-c-c, it can perform a transform on the (materialized) DOM fragment.

This transformed fragment can become the template used for generating the custom element. The transform can be used to insert dynamic "parts" in the template.

So while c-c encourages a 100% JS-free web component, with not much support for SSR, carbon-copy allows an initial view based on SSR, but then it transforms the initial view into a general template used by web component instances.

Viewing Your Element Locally

  1. Install node.
  2. Clone or for fork this git repo.
  3. In a command prompt from the folder of this git repo:
$ npm run serve
  1. Open browser to http://localhost/demo.