File size: 4,868 Bytes
cf86710 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 | import * as SelectPrimitive from "@radix-ui/react-select";
import * as React from "react";
import { Chevron } from "react-day-picker";
const Select = SelectPrimitive.Root;
const SelectGroup = SelectPrimitive.Group;
const SelectValue = SelectPrimitive.Value;
const SelectTrigger = ({
children,
...props
}: SelectPrimitive.SelectTriggerProps) => (
<SelectPrimitive.Trigger
className={
"flex h-7 w-full items-center justify-between whitespace-nowrap rounded-md border border-current bg-transparent px-3 py-2 text-sm color-current"
}
{...props}
>
{children}
<SelectPrimitive.Icon asChild>
<Chevron className="h-4 w-4 fill-current" orientation="down" />
</SelectPrimitive.Icon>
</SelectPrimitive.Trigger>
);
const SelectScrollUpButton = (props: SelectPrimitive.SelectProps) => (
<SelectPrimitive.ScrollUpButton
className="flex cursor-default items-center justify-center py-1"
{...props}
>
<Chevron className="h-4 w-4 fill-current" orientation="up" />
</SelectPrimitive.ScrollUpButton>
);
const SelectScrollDownButton = (
props: SelectPrimitive.SelectScrollDownButtonProps,
) => (
<SelectPrimitive.ScrollDownButton
className="flex cursor-default items-center justify-center py-1 color-current"
{...props}
>
<Chevron className="h-4 w-4 fill-current" orientation="down" />
</SelectPrimitive.ScrollDownButton>
);
type SelectContentProps = SelectPrimitive.SelectContentProps & {
container?: SelectPrimitive.SelectPortalProps["container"];
};
const SelectContent: React.FC<SelectContentProps> = ({
children,
position = "popper",
container,
...props
}) => (
<SelectPrimitive.Portal container={container}>
<SelectPrimitive.Content
className={
position === "popper"
? "relative z-50 max-h-96 min-w-[8rem] overflow-hidden rounded-md border bg-popover shadow-md translate-y-1"
: "relative z-50 max-h-96 min-w-[8rem] overflow-hidden rounded-md border bg-popover shadow-md translate-y-1"
}
position={position}
{...props}
>
<SelectScrollUpButton />
<SelectPrimitive.Viewport
className={position === "popper" ? "p-1 " : "p-1"}
>
{children}
</SelectPrimitive.Viewport>
<SelectScrollDownButton />
</SelectPrimitive.Content>
</SelectPrimitive.Portal>
);
const SelectItem = ({
children,
...props
}: SelectPrimitive.SelectItemProps) => (
<SelectPrimitive.Item
className="relative flex w-full cursor-default select-none items-center rounded-sm py-1.5 pl-2 pr-8 text-sm outline-none focus:bg-accent focus:text-accent-foreground color-current"
{...props}
>
<SelectPrimitive.ItemText>{children}</SelectPrimitive.ItemText>
</SelectPrimitive.Item>
);
function SelectStyles() {
return (
<style>
{`
.h-7 { height: 1.75rem; }
.w-full { width: 100%; }
.flex { display: flex; }
.items-center { align-items: center; }
.justify-between { justify-content: space-between; }
.justify-center { justify-content: center; }
.whitespace-nowrap { white-space: nowrap; }
.rounded-md { border-radius: 0.375rem; }
.rounded-sm { border-radius: 0.125rem; }
.border { border-width: 1px; }
.border-current { border-color: currentColor; }
.bg-transparent { background-color: transparent; }
.bg-popover { background-color: var(--ifm-background-color); }
.px-3 { padding-left: 0.75rem; padding-right: 0.75rem; }
.py-1 { padding-top: 0.25rem; padding-bottom: 0.25rem; }
.py-1\\.5 { padding-top: 0.375rem; padding-bottom: 0.375rem; }
.py-2 { padding-top: 0.5rem; padding-bottom: 0.5rem; }
.pl-2 { padding-left: 0.5rem; }
.pr-8 { padding-right: 2rem; }
.text-sm { font-size: 0.875rem; line-height: 1.25rem; }
.shadow-md { box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1); }
.fill-current { fill: currentColor; }
.color-current { color: currentColor; }
.h-4 { height: 1rem; }
.w-4 { width: 1rem; }
.min-w-[8rem] { min-width: 8rem; }
.max-h-96 { max-height: 24rem; }
.relative { position: relative; }
.z-50 { z-index: 50; }
.cursor-default { cursor: default; }
.select-none { user-select: none; }
.outline-none { outline: none; }
[data-highlighted] { background-color: var(--ifm-menu-color-background-hover); }
.translate-y-1 { transform: translateY(0.25rem); }
.overflow-hidden { overflow: hidden; }
.p-1 { padding: 0.25rem; }
`}
</style>
);
}
export {
Select,
SelectGroup,
SelectValue,
SelectTrigger,
SelectContent,
SelectItem,
SelectScrollUpButton,
SelectScrollDownButton,
SelectStyles,
};
|