Code Block
Masked Env
A list of environment variables with hidden values: a row opens by its own toggle or by the master one in the header, and all of it without client JS.
- env
- secrets
- toggle
- no-js
Preview
Use it with AI
- 1. Copy the link.
- 2. Write to your agent in your own words and drop the link into the sentence.
- 3. The agent opens the link and installs the component from the registry.
put this in the header: https://vibeui.ru/c/codeblock-022?lang=en
- DATABASE_URL=postgres://vibeui:s3cret@db:5432/appтолько сервер
- RESEND_API_KEY=re_9fJk2Lm0_QpZx4Nbтолько сервер
- NEXT_PUBLIC_SITE_URL=https://vibeui.devв браузер
- NEXT_PUBLIC_ANALYTICS_ID=vb-2026-08в браузер
Маскировка визуальная: значения лежат в разметке страницы. Настоящие секреты сюда не кладут — только примеры из .env.example.
Show the full instructions
What the link says, spelled out. Use it when your agent cannot open links — paste this text instead.
# Install and place "codeblock-022" (Masked Env) from VibeUI
## 1. Install first — do not skip, do not recreate
Run this exact command before writing any code:
npx shadcn@latest add https://vibeui.ru/r/codeblock-022.json
Registry item: https://vibeui.ru/r/codeblock-022.json
Installs to: components/vibeui/codeblock-022.tsx (the exact path follows this project's components.json aliases).
npm dependencies: none.
Registry dependencies: none.
Install it from the registry. Do not recreate it from the description,
do not substitute a similar component from another library, and do not
rewrite it to match the project's existing style.
## 2. What it is
A list of environment variables with hidden values: a row opens by its own toggle or by the master one in the header, and all of it without client JS.
Environment variables with masked values: reveal them row by row or all at once, state on checkboxes and :has(). Zero dependencies, no client JS.
## 3. How to use it
import { Codeblock022 } from "@/components/vibeui/codeblock-022"
<Codeblock022
file=".env.local"
revealAll={false}
/>
Read the installed file for the full prop list.
## 4. Where to place it
This is a small inline component. Put it exactly where the user asked,
inside the existing markup. Do not create a new page, section or
wrapper for it. If a similar control already sits in that spot,
replace it instead of adding a second one.
Placement: ___
(The user fills this line in. If it is still blank, ask where to put it
instead of guessing.)
## 5. Keep exactly as installed
- the local --vibeui-codeblock-022-* palette — do not swap it for your theme tokens
- deriving the scope badge from the key name: a hand-set badge eventually lies
- the two independent sources of reveal: the master toggle and the per-row toggle
- hiding the checkboxes with clip-path rather than display:none — otherwise they leave the tab order
- the footer note about the masking being visual: without it the block looks like protection it is not
- the dark surface of the block — light monospaced text is unreadable without it
## 6. You may change
- the list of variables through variables
- the file name through file
- showing every value at once through revealAll
- the colours of the scope badge and the mask
## 7. Rules
- The masking is visual: the values sit in the page markup, so real secrets never go here.
- The master toggle overrides the per-row ones: uncheck it to get the row behaviour back.
- A long value is truncated with an ellipsis — in full it is only visible in the page source.
- Do not lift the CSS variables into globals.css: the component has to stay a single file.
## 8. Verify
- it renders with no console errors;
- it looks like the preview on the VibeUI page you copied this from;
- if it does not, you changed something listed in section 5 — put it back.For developers
npx shadcn@latest add https://vibeui.ru/r/codeblock-022.jsonhttps://vibeui.ru/r/codeblock-022.jsonКомпонент самодостаточен: один файл, без зависимостей, собственная палитра в локальных переменных --vibeui-codeblock-022-*. Серверный: состояние держат нативные чекбоксы, а показ значения включают два независимых селектора :has() — на строке и на всём блоке от общего переключателя в шапке. Область видимости переменной выводится из её имени: ключи с префиксом NEXT_PUBLIC_ получают другой значок, поэтому подпись не может разойтись с реальностью. Чекбоксы спрятаны clip-path, у каждого есть визуально скрытая подпись с именем ключа для читалки экрана.
Component source
The same file your agent installs. Here in case you would rather copy it by hand.
import type { CSSProperties } from "react"
export type Codeblock022Variable = {
key: string
value: string
}
export type Codeblock022Props = {
file?: string
revealAll?: boolean
variables?: Codeblock022Variable[]
className?: string
style?: CSSProperties
}
// Идея компонента: показать состав .env, не показывая сами значения. Каждая
// строка закрыта точками и открывается своим чекбоксом, а общий переключатель
// в шапке открывает все сразу — всё на :has(), без клиентского состояния.
const STYLES = `
:where([data-vibeui-block="codeblock-022"]){
--vibeui-codeblock-022-bg:oklch(0.19 0.014 275);
--vibeui-codeblock-022-head:oklch(0.23 0.018 275);
--vibeui-codeblock-022-fg:oklch(0.93 0.008 275);
--vibeui-codeblock-022-muted:oklch(0.66 0.016 275);
--vibeui-codeblock-022-border:oklch(1 0 0 / 12%);
--vibeui-codeblock-022-key:oklch(0.82 0.12 250);
--vibeui-codeblock-022-value:oklch(0.85 0.12 145);
--vibeui-codeblock-022-mask:oklch(0.6 0.02 275);
--vibeui-codeblock-022-public:oklch(0.84 0.13 75);
--vibeui-codeblock-022-accent:oklch(0.8 0.12 250);
--vibeui-codeblock-022-mono:ui-monospace,SFMono-Regular,Menlo,Consolas,"Liberation Mono",monospace;
--vibeui-codeblock-022-font:ui-sans-serif,system-ui,-apple-system,"Segoe UI",Roboto,"Helvetica Neue",Arial,sans-serif;
}
[data-vibeui-block="codeblock-022"]{
display:flex;flex-direction:column;
width:100%;max-width:34rem;box-sizing:border-box;margin:0;overflow:hidden;
border:1px solid var(--vibeui-codeblock-022-border);border-radius:0.75rem;
background:var(--vibeui-codeblock-022-bg);color:var(--vibeui-codeblock-022-fg);
font-family:var(--vibeui-codeblock-022-font);
}
[data-vibeui-block="codeblock-022"] [data-part="head"]{
display:flex;align-items:center;justify-content:space-between;gap:0.75rem;
padding:0.5rem 0.75rem;
background:var(--vibeui-codeblock-022-head);
border-bottom:1px solid var(--vibeui-codeblock-022-border);
font-family:var(--vibeui-codeblock-022-mono);font-size:0.75rem;
color:var(--vibeui-codeblock-022-muted);
}
[data-vibeui-block="codeblock-022"] input{
position:absolute;width:1px;height:1px;margin:-1px;padding:0;
border:0;clip-path:inset(50%);overflow:hidden;white-space:nowrap;
}
[data-vibeui-block="codeblock-022"] [data-part="sr"]{
position:absolute;width:1px;height:1px;margin:-1px;padding:0;
border:0;clip-path:inset(50%);overflow:hidden;white-space:nowrap;
}
[data-vibeui-block="codeblock-022"] label{
cursor:pointer;display:inline-flex;align-items:center;gap:0.375rem;
padding:0.1875rem 0.5rem;border-radius:999px;
font-family:var(--vibeui-codeblock-022-font);font-size:0.6875rem;font-weight:650;
color:var(--vibeui-codeblock-022-muted);background:oklch(1 0 0 / 8%);
transition:background-color .16s ease,color .16s ease;
}
[data-vibeui-block="codeblock-022"] label:hover{color:var(--vibeui-codeblock-022-fg)}
[data-vibeui-block="codeblock-022"] label:has(input:checked){
color:var(--vibeui-codeblock-022-accent);background:oklch(0.6 0.12 250 / 22%);
}
[data-vibeui-block="codeblock-022"] label:has(input:focus-visible){
outline:2px solid var(--vibeui-codeblock-022-accent);outline-offset:2px;
}
[data-vibeui-block="codeblock-022"] ul{
margin:0;padding:0.375rem 0;list-style:none;
}
[data-vibeui-block="codeblock-022"] li{
display:flex;align-items:center;gap:0.5rem;
padding:0.25rem 0.75rem;min-height:1.875rem;
font-family:var(--vibeui-codeblock-022-mono);font-size:0.8125rem;
}
[data-vibeui-block="codeblock-022"] [data-part="key"]{color:var(--vibeui-codeblock-022-key)}
[data-vibeui-block="codeblock-022"] [data-part="pair"]{
display:flex;align-items:center;gap:0;flex:1 1 auto;min-width:0;
overflow:hidden;text-overflow:ellipsis;white-space:nowrap;
}
[data-vibeui-block="codeblock-022"] [data-part="mask"]{
color:var(--vibeui-codeblock-022-mask);letter-spacing:0.1em;
user-select:none;-webkit-user-select:none;
}
[data-vibeui-block="codeblock-022"] [data-part="real"]{
display:none;color:var(--vibeui-codeblock-022-value);
}
/* Значение открывает либо свой чекбокс строки, либо общий в шапке: два
независимых источника одного состояния, оба — чистый CSS. */
[data-vibeui-block="codeblock-022"] li:has([data-part="eye"]:checked) [data-part="mask"],
[data-vibeui-block="codeblock-022"]:has([data-part="master"]:checked) [data-part="mask"]{display:none}
[data-vibeui-block="codeblock-022"] li:has([data-part="eye"]:checked) [data-part="real"],
[data-vibeui-block="codeblock-022"]:has([data-part="master"]:checked) [data-part="real"]{display:inline}
[data-vibeui-block="codeblock-022"] [data-part="scope"]{
margin-inline-start:auto;flex:none;
padding:0.0625rem 0.4375rem;border-radius:999px;
font-family:var(--vibeui-codeblock-022-font);font-size:0.625rem;font-weight:650;
background:oklch(1 0 0 / 8%);color:var(--vibeui-codeblock-022-muted);
}
[data-vibeui-block="codeblock-022"] [data-part="scope"][data-public="true"]{
color:var(--vibeui-codeblock-022-public);background:oklch(0.6 0.12 75 / 20%);
}
[data-vibeui-block="codeblock-022"] [data-part="foot"]{
margin:0;padding:0.5rem 0.75rem;
border-top:1px solid var(--vibeui-codeblock-022-border);
font-size:0.6875rem;line-height:1.4;color:var(--vibeui-codeblock-022-muted);
}
@media (prefers-reduced-motion:reduce){[data-vibeui-block="codeblock-022"] *{animation:none!important;transition:none!important}}
`
const VARIABLES: Codeblock022Variable[] = [
{ key: "DATABASE_URL", value: "postgres://vibeui:s3cret@db:5432/app" },
{ key: "RESEND_API_KEY", value: "re_9fJk2Lm0_QpZx4Nb" },
{ key: "NEXT_PUBLIC_SITE_URL", value: "https://vibeui.dev" },
{ key: "NEXT_PUBLIC_ANALYTICS_ID", value: "vb-2026-08" },
]
/** Список переменных окружения со скрытыми значениями. */
export function Codeblock022({
file = ".env.local",
revealAll = false,
variables = VARIABLES,
className,
style,
}: Codeblock022Props) {
return (
<>
<style href="vibeui-codeblock-022" precedence="medium">
{STYLES}
</style>
<section
data-vibeui-block="codeblock-022"
className={className}
style={style}
aria-label={`Переменные окружения ${file}`}
>
<header data-part="head">
<span>{file}</span>
<label>
<input
type="checkbox"
data-part="master"
defaultChecked={revealAll}
/>
Показать значения
</label>
</header>
<ul>
{variables.map((variable) => {
const isPublic = variable.key.startsWith("NEXT_PUBLIC_")
return (
<li key={variable.key}>
<span data-part="pair">
<span data-part="key">{variable.key}</span>=
<span data-part="mask" aria-hidden="true">
••••••••••••
</span>
<span data-part="real">{variable.value}</span>
</span>
<span data-part="scope" data-public={isPublic || undefined}>
{isPublic ? "в браузер" : "только сервер"}
</span>
<label>
<input type="checkbox" data-part="eye" />
<span data-part="sr">Показать значение {variable.key}</span>
<span aria-hidden="true">◉</span>
</label>
</li>
)
})}
</ul>
<p data-part="foot">
Маскировка визуальная: значения лежат в разметке страницы. Настоящие
секреты сюда не кладут — только примеры из <code>.env.example</code>.
</p>
</section>
</>
)
}