summaryrefslogtreecommitdiffhomepage
path: root/packages/ui/src/components/code.stories.tsx
diff options
context:
space:
mode:
authorAdam <[email protected]>2026-02-26 16:05:04 -0600
committerGitHub <[email protected]>2026-02-26 16:05:04 -0600
commit05d77b7d473d8828671ede90fec1f4da75106738 (patch)
tree4cc219e913108631bc65f5bed2d4bdaad8b21420 /packages/ui/src/components/code.stories.tsx
parent8c484a05b894be0a88c130badb2353d02d1deb23 (diff)
downloadopencode-05d77b7d473d8828671ede90fec1f4da75106738.tar.gz
opencode-05d77b7d473d8828671ede90fec1f4da75106738.zip
chore: storybook (#15285)
Co-authored-by: David Hill <[email protected]>
Diffstat (limited to 'packages/ui/src/components/code.stories.tsx')
-rw-r--r--packages/ui/src/components/code.stories.tsx70
1 files changed, 70 insertions, 0 deletions
diff --git a/packages/ui/src/components/code.stories.tsx b/packages/ui/src/components/code.stories.tsx
new file mode 100644
index 000000000..992fa6302
--- /dev/null
+++ b/packages/ui/src/components/code.stories.tsx
@@ -0,0 +1,70 @@
+// @ts-nocheck
+import * as mod from "./code"
+import { create } from "../storybook/scaffold"
+import { code } from "../storybook/fixtures"
+
+const docs = `### Overview
+Syntax-highlighted code viewer with selection support and large-file virtualization.
+
+Use alongside \`LineComment\` and \`Diff\` in review workflows.
+
+### API
+- Required: \`file\` with file name + contents.
+- Optional: \`language\`, \`annotations\`, \`selectedLines\`, \`commentedLines\`.
+- Optional callbacks: \`onRendered\`, \`onLineSelectionEnd\`.
+
+### Variants and states
+- Supports large-file virtualization automatically.
+
+### Behavior
+- Re-renders when \`file\` or rendering options change.
+- Optional line selection integrates with selection callbacks.
+
+### Accessibility
+- TODO: confirm keyboard find and selection behavior.
+
+### Theming/tokens
+- Uses \`data-component="code"\` and Pierre CSS variables from \`styleVariables\`.
+
+`
+
+const story = create({
+ title: "UI/Code",
+ mod,
+ args: {
+ file: code,
+ language: "ts",
+ },
+})
+
+export default {
+ title: "UI/Code",
+ id: "components-code",
+ component: story.meta.component,
+ tags: ["autodocs"],
+ parameters: {
+ docs: {
+ description: {
+ component: docs,
+ },
+ },
+ },
+}
+
+export const Basic = story.Basic
+
+export const SelectedLines = {
+ args: {
+ enableLineSelection: true,
+ selectedLines: { start: 2, end: 4 },
+ },
+}
+
+export const CommentedLines = {
+ args: {
+ commentedLines: [
+ { start: 1, end: 1 },
+ { start: 5, end: 6 },
+ ],
+ },
+}