35 lines
904 B
JavaScript
35 lines
904 B
JavaScript
import { formatMm } from 'shared/utils.mjs'
|
|
import { XrayAttributes } from './attributes.mjs'
|
|
import { XrayPathOps } from './path-ops.mjs'
|
|
|
|
export const XrayPath = ({ pathName, partName, draft, units }) => null
|
|
/*{
|
|
const path = draft?.parts?.[partName]?.paths?.[pathName]
|
|
|
|
if (!path) return null
|
|
return (
|
|
<Ul>
|
|
<XrayAttributes attr={path.attributes} />
|
|
<Li>
|
|
<NoSumDiv>
|
|
<Deg />
|
|
<span className="font-bold mr-2">path.render =</span>
|
|
<span>{JSON.stringify(path.render)}</span>
|
|
</NoSumDiv>
|
|
</Li>
|
|
<Li>
|
|
<NoSumDiv>
|
|
<Deg />
|
|
<span className="font-bold mr-2">path.length() =</span>
|
|
<span
|
|
dangerouslySetInnerHTML={{
|
|
__html: formatMm(path.length(), units),
|
|
}}
|
|
/>
|
|
</NoSumDiv>
|
|
</Li>
|
|
<XrayPathOps ops={path.ops} />
|
|
</Ul>
|
|
)
|
|
}
|
|
*/
|