0.0.1-test5 ā€¢ Published 3 months ago

nuxt-telegram-miniapps v0.0.1-test5

Weekly downloads
-
License
-
Repository
-
Last release
3 months ago

Nuxt Telegram Miniapps UI Kit

This is an experiment in building a library of Telegram web application interface components with Tailwind CSS. All components inherit the design concept of Telegram for Android, but do not try to match it exactly.

āš ļø Please do not use this library in real projects until the first stable version is published. Breaking changes may occur without prior notice!

Installation

npm install -D nuxt-telegram-webapps

Note: This also installs required nuxt modules:

Usage

This component library is Nuxt Layer. To use it, just add the extends setting.

// nuxt.config.ts
export default defineNuxtConfig({
  extends: [
    'nuxt-telegram-miniapps',
  ]
})

Then create a page that is supposed to be a web application or place the web application components in the app.vue. It's recommended to place all components inside helper component TgContent.

<template>
  <TgContent>
    <TgSection>
      <TgCell title="Some title" />
    </TgSection>
  </TgContent>
</template>

Components

TgSection

A component within which you can place TgCell`s groups or any content block of a web application

Props

NameTypeDescription
titlestringThe panel title
contentbooleanSpecifies whether to add paddings
insetbooleanSpecifies whether to add margins
<!-- Section with cells -->
<TgSection title="Section title">
  <TgCell title="Cell 1" />
  <TgCell title="Cell 2" />
</TgSection>

<!-- Section with content -->
<TgSection title="Section title" content>
  <p>Some section content</p>
</TgSection>

TgCell

This is the main component of the menu. It automatically sets paddings, icon positioning, colors and dividers.

Props

NameTypeDescription
titlestringThe main text of the cell
descriptionstringThe faded small text or hint
subtitlestringNot faded small text, positioned before description
iconstringThe name of the icon (look: https://icones.js.org/)
line-clampstringThe line clamp of the subtitle and description
colorstringCan be default, primary, danger
borderbooleanDetermines whether to show the border at the bottom

Slots

NameDescription
defaultYou can add any content you want to the cell
iconPlaces the content to the left of the main content, usually there is an icon there
rightPlaces the content to the right of the main content
<!-- Simple cell -->
<TgCell title="Some title" description="Some description" />

<!-- Cell with content -->
<TgCell>
  <p>Some content inside the cell</p>
</TgCell>

<!-- Cell with slots -->
<TgCell title="Some title" description="Some description">
  <template #icon>
    <TgIconBox icon="material-symbols:qr-code" />
  </template>
  <template #right>
    <TgButton size="sm">Button</TgButton>
  </template>
</TgCell>

TgButton

This is just button, not something special šŸ’ā€ā™‚ļø It is used to trigger some actions

Props

NameTypeDescription
colorstringMay be primary or danger
typestringMay be button, submit or reset
tostringVue-Router route location
hrefstringExternal link
disabledbooleanDisabled state
relstringRel attribute
targetstringTarget attribute
sizestringMay be sm, md, lg or xl
textbooleanSet true if you want to make button look like link
iconstringThe name of the icon (look: https://icones.js.org/)

TgIconBox

A component to display an icon inside a circle or rectangle with rounded corners. The icon can be replaced by text

Props

NameTypeDescription
iconstringThe name of the icon (look: https://icones.js.org/)
textstringText to display instead of an icon
roundbooleanDisplay a circle or rectangle
sizestringMay be sm, md, lg or xl
colorstringMay be primary or danger
classstringIf you want to make a unique color or gradient, you can pass a class instead of color

You can place the TgIconBox in the icon slot of the TgCell component:

<TgCell title="Some title" description="Some description">
  <template #icon>
    <TgIconBox icon="material-symbols:qr-code" />
  </template>
</TgCell>

TgInput

Just input without borders

Props

NameTypeDescription
v-model:valuestringInput text
placeholderstringPlaceholder text
<TgSection title="Section title" content>
  <TgInput v-model:value="input" />
</TgSection>
0.0.1-test5

3 months ago

0.0.1-test4

3 months ago

0.0.1-test3

3 months ago

0.0.1-test2

7 months ago

0.0.1-test1

7 months ago

0.0.1

7 months ago