Skip to content

Commit

Permalink
[antd5] add Skeleton component
Browse files Browse the repository at this point in the history
  • Loading branch information
georg-malahov committed Nov 28, 2023
1 parent 8c2bb25 commit ccca386
Showing 1 changed file with 137 additions and 0 deletions.
137 changes: 137 additions & 0 deletions plasmicpkgs/antd5/src/registerSkeleton.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,137 @@
import { Skeleton, SkeletonProps } from "antd";
import React from "react";
import { Registerable, registerComponentHelper } from "./utils";

export type AntdSkeletonProps = SkeletonProps & {
type?: "Basic" | "Button" | "Avatar" | "Input" | "Image" | "Node";
};

export function AntdSkeleton(props: AntdSkeletonProps) {
if (props.type === "Button") {
return <Skeleton.Button {...props} />;
}

if (props.type === "Avatar") {
return <Skeleton.Avatar {...props} />;
}

if (props.type === "Input") {
return <Skeleton.Input {...props} />;
}

if (props.type === "Image") {
return <Skeleton.Image {...props} />;
}

if (props.type === "Node") {
return <Skeleton.Node {...props} />;
}

return <Skeleton {...props} />;
}

export const skeletonComponentName = "plasmic-antd5-skeleton";

export function registerSkeleton(loader?: Registerable) {
registerComponentHelper(loader, AntdSkeleton, {
name: skeletonComponentName,
displayName: "Skeleton",
props: {
type: {
type: "choice",
defaultValueHint: "Basic",
options: ["Basic", 'Button','Avatar', 'Input', 'Image', 'Node', "Paragraph"],
},
active: {
type: "boolean",
description: "Show animation effect",
hidden: (ps) => ps.type !== "Basic" && ps.type !== "Button" && ps.type !== "Avatar" && ps.type !== "Input",
defaultValueHint: false,
},
avatar: {
type: "boolean",
description: "Show avatar placeholder",
hidden: (ps) => ps.type !== "Basic",
defaultValueHint: false,
},
loading: {
type: "boolean",
description: "Display the skeleton when true",
defaultValueHint: false,
},
paragraph: {
type: "boolean",
description: "Show paragraph placeholder",
hidden: (ps) => ps.type !== "Basic",
defaultValueHint: true,
},
round: {
type: "boolean",
description: "Show paragraph and title radius when true",
hidden: (ps) => ps.type !== "Basic",
defaultValueHint: false,
},
title: {
type: "boolean",
description: "Show title placeholder",
hidden: (ps) => ps.type !== "Basic",
defaultValueHint: true,
},
size: {
type: "choice",
defaultValueHint: "default",
description: `Size of the skeleton for types: Avatar, Button and Input`,
hidden: (ps) => ps.type !== "Avatar" && ps.type !== "Button" && ps.type !== "Input" && ps.avatar !== true,
advanced: true,
options: ["large", "small", "default"],
},
// SkeletonAvatarProps
shape: {
type: "choice",
defaultValueHint: "circle",
description: `Set the shape of avatar`,
hidden: (ps) => ps.type !== "Avatar" && ps.avatar !== true,
advanced: true,
options: ["circle", "square"],
},
// SkeletonTitleProps
widthTitle: {
type: "string",
description: "Width of the title",
hidden: (ps) => !ps.title,
advanced: true,
},
// SkeletonParagraphProps
width: {
type: "array",
description: "Set the width of paragraph. When width is an Array, it can set the width of each row. Otherwise only set the last row width",
hidden: (ps) => !ps.paragraph && ps.type !== "Basic",
advanced: true,
},
rows: {
type: "number",
description: "Set the row count of paragraph",
hidden: (ps) => !ps.paragraph && ps.type !== "Basic",
advanced: true,
},
// SkeletonButtonProps
shapeButton: {
type: "choice",
defaultValueHint: "default",
description: `Set the shape of button`,
hidden: (ps) => ps.type !== "Button",
advanced: true,
options: ["default", "circle", "round", "square"],
},
block: {
type: "boolean",
description: "Option to fit button width to its parent width",
hidden: (ps) => ps.type !== "Button",
defaultValueHint: false,
advanced: true,
},
},
importPath: "@plasmicpkgs/antd5/skinny/registerSkeleton",
importName: "AntdSkeleton",
});
}

0 comments on commit ccca386

Please sign in to comment.