New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

aurum-canvas

Package Overview
Dependencies
Maintainers
1
Versions
53
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

aurum-canvas

Aurum style scene graph management for rendering in canvas

  • 0.0.50
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
18
decreased by-63.27%
Maintainers
1
Weekly downloads
 
Created
Source

Aurum style scene graph management for rendering in canvas Depends on aurum.js

Allows creating canvas drawings using familar concepts from Aurum.js Supports data sources for all attributes and dynamic scene graphs with array data sources

<AurumCanvas width="200" height="200">
	<AurumRectangle x={a} y={20} fillColor="red" width={20} height={20}>
		<AurumRectangle x={20} y={a} fillColor="blue" width={20} height={20}></AurumRectangle>
	</AurumRectangle>
	<AurumRectangle x={50} y={50} fillColor="green" width={20} height={20}></AurumRectangle>
	<AurumText x={10} y={10} fillColor="black">
		{name}
	</AurumText>
</AurumCanvas>

Create canvas components just the way you create any aurum component:

function Triangle(props: { x: number; y: number }) {
	const { x, y } = props;

	return (
		<AurumGroup x={x} y={y}>
			<AurumLine lineWidth={3} strokeColor="red" x={0} y={0} tx={30} ty={30}></AurumLine>
			<AurumLine lineWidth={3} strokeColor="red" x={30} y={30} tx={-30} ty={30}></AurumLine>
			<AurumLine lineWidth={3} strokeColor="red" x={-30} y={30} tx={0} ty={0}></AurumLine>
		</AurumGroup>
	);
}

Reuse components that weren't even intended for use in the canvas:

<AurumCanvas width="200" height="200">
	<Switch state={triangular}>
		<SwitchCase when={true}>
			<Triangle x={50} y={50}></Triangle>
		</SwitchCase>
		<SwitchCase when={false}>
			<AurumRectangle x={50} y={50} fillColor="green" width={20} height={20}></AurumRectangle>
		</SwitchCase>
	</Switch>
</AurumCanvas>

Declarative animation and interaction support

<AurumCanvas width="400" height="200">
	<AurumRectangle
		onMouseDown={(e, target) => {
			state.update('highlight');
		}}
		state={state}
		strokeColor="red"
		x={0}
		y={0}
		width={30}
		height={30}
	>
		<State opacity={1} id="highlight" width={300} transitionTime={2000}></State>
	</AurumRectangle>
</AurumCanvas>

Keywords

FAQs

Package last updated on 23 Jan 2024

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc