1
0
Fork 0

chore(shared): Consolidate tab components

This commit is contained in:
Joost De Cock 2023-08-28 20:30:00 +02:00
parent 44a3b194cc
commit c98a67885c
6 changed files with 50 additions and 43 deletions

View file

@ -15,13 +15,14 @@ import { ResetIcon, DocsIcon, UploadIcon } from 'shared/components/icons.mjs'
import { ModalWrapper } from 'shared/components/wrappers/modal.mjs'
import { isDegreeMeasurement } from 'config/measurements.mjs'
import { measurementAsMm, measurementAsUnits, parseDistanceInput } from 'shared/utils.mjs'
import { Tabs, Tab } from 'shared/components/tabs.mjs'
export const ns = ['account', 'measurements', 'designs']
/*
* Helper component to display a tab heading
*/
export const Tab = ({
export const _Tab = ({
id, // The tab ID
label, // A label for the tab, if not set we'll use the ID
activeTab, // Which tab (id) is active
@ -427,29 +428,29 @@ export const MarkdownInput = ({
}) => {
const [activeTab, setActiveTab] = useState('edit')
const tabs = ['edit', 'preview']
return (
<FormControl {...{ label, labelBL, labelBR, docs }} forId={id}>
<div className="tabs w-full">
{['edit', 'preview'].map((tab) => (
<Tab id={tab} key={tab} label={tab} {...{ activeTab, setActiveTab }} />
))}
</div>
<div className="flex flex-row items-center mt-4">
{activeTab === 'edit' ? (
<textarea
id={id}
rows="5"
className="textarea textarea-bordered textarea-lg w-full"
value={current}
placeholder={placeholder}
onChange={(evt) => update(evt.target.value)}
/>
) : (
<div className="text-left px-4 border w-full">
<Tabs tabs={tabs}>
<Tab key="edit">
<div className="flex flex-row items-center mt-4">
<textarea
id={id}
rows="5"
className="textarea textarea-bordered textarea-lg w-full"
value={current}
placeholder={placeholder}
onChange={(evt) => update(evt.target.value)}
/>
</div>
</Tab>
<Tab key="preview">
<div className="flex flex-row items-center mt-4">
<Markdown>{current}</Markdown>
</div>
)}
</div>
</Tab>
</Tabs>
</FormControl>
)
}