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

@makecode/template-manager

v1.0.0

Published

템플릿 관리

Downloads

67

Readme

@makecode/template-manager

@makecode/template-manager는 HTML 템플릿을 파싱하고 렌더링하기 위한 JavaScript/TypeScript 라이브러리입니다. 이 라이브러리를 통해 커스텀 태그를 정의하고, 동적으로 데이터를 주입하여 HTML을 생성할 수 있습니다. 템플릿에 기반하여 효율적인 UI 구성을 지원하며, 다양한 사용 사례에 대응하기 쉽도록 설계되었습니다.

설치

npm 또는 yarn을 이용하여 설치할 수 있습니다.

npm install @makecode/template-manager

또는

yarn add @makecode/template-manager

사용법

기본 사용 예시

import templateManager from '@makecode/template-manager';

// 커스텀 엘리먼트 정의용 템플릿
const defineTemplate = `
  <p>Use the <strong>{{=power}}</strong>, {{title}}!</p>
  <template-people>
    <p class="{{=test}}">{{title}}</p>
    <template-deep>
      <div>{{=ysm}}</div>
      <template-haha>
        {{=ysm}}
      </template-haha>
    </template-deep>
    <template-hidden>
      <p>This will not appear.</p>
      {{=test}}
    </template-hidden>
  </template-people>
  <p>{{=event}} ysm</p>
`;

let defineData = {
  power: 'Force',
  title: 'Jedi',
  people: {
    test: 'warrior',
    title: 'Luke Skywalker',
    deep: { ysm: 'Skywalker', haha: { ysm: 'Master' } },
    hidden: { test: '성공!' },
  },
  event: 'Victory',
};

const { contents, html } = templateManager.define(defineTemplate, defineData, {
  onRender: element => {
    if (element.tagName.toLowerCase() === 'template-deep') {
      element.style.color = 'red'; // 특정 태그 스타일 변경
    }
  },
});

document.body.innerHTML += html;

위 코드에서는 템플릿에 따라 커스텀 태그를 정의하고, 데이터와 함께 렌더링합니다. 각 커스텀 태그는 HTML 엘리먼트로 변환되어 브라우저에서 사용할 수 있으며, onRender 콜백을 통해 특정 엘리먼트의 스타일을 변경할 수 있습니다.

동적 데이터 변경

templateManager는 데이터 변경을 감지하여 UI를 자동으로 갱신할 수 있습니다. 예를 들어, 아래와 같이 데이터 객체를 변경하면 렌더링된 HTML이 자동으로 갱신됩니다.

setTimeout(() => {
  console.log('데이터 변경 시도!', contents);
  contents.people.title = 'Master Yoda';
  contents.people.test = 'Jedi Master';
}, 2000);

위 코드에서는 2초 후에 people 객체의 titletest 속성을 변경하여 HTML이 업데이트됩니다.

paint 사용 예시

paint 메서드는 배열을 포함한 데이터를 사용하여 HTML을 생성할 때 유용합니다. 예를 들어, 아래와 같은 템플릿을 사용할 수 있습니다.

const paintTemplate = `
  <p>Use the <strong>{{=power}}</strong>, {{title}}!</p>
  <template-people>
    <p class="{{=test}}">{{title}}</p>
    <template-deep>
      <div>{{=ysm}}</div>
      <template-haha>
        {{=ysm}}
      </template-haha>
    </template-deep>
  </template-people>
  <p>{{=event}} ysm</p>
`;

console.log(
  'paint',
  templateManager.paint(paintTemplate, {
    power: 'Force',
    title: 'Jedi',
    people: [
      {
        test: 'warrior',
        title: 'Luke Skywalker',
        deep: { ysm: 'Skywalker', haha: { ysm: 'Master' } },
      },
      {
        test: 'fighter',
        title: 'Leia Organa',
        deep: { ysm: 'Organa', haha: null },
      },
    ],
    event: 'Victory',
  }),
);

주요 메서드 설명

  • parse(template: string): Parse: 템플릿을 파싱하여 트리를 생성합니다.
  • render(template: string, contents: Record<string, any>): TreeNode[]: 파싱된 템플릿에 데이터를 적용하여 트리 노드를 생성합니다.
  • paint(template: string, contents: Record<string, any>): string: 트리 노드를 HTML 문자열로 변환합니다.
  • define(template: string, contents: Record<string, any>, options?: { onChangeContents?: Function, onRender?: Function }): { contents: Record<string, any>, html: string }: 템플릿을 정의하고 커스텀 엘리먼트를 등록합니다.