-
Notifications
You must be signed in to change notification settings - Fork 0
SVG components #145
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Open
TSKsmiley
wants to merge
12
commits into
main
Choose a base branch
from
97-svgdrawing-for-components
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
SVG components #145
Changes from all commits
Commits
Show all changes
12 commits
Select commit
Hold shift + click to select a range
3531342
Refactor SVG components and helper functions
TSKsmiley c5223e6
Refactor component and fix typo in LocationType
TSKsmiley be4267f
merge
TSKsmiley a2aff82
progress
TSKsmiley e30d38d
added todo
TSKsmiley ae8e3c7
Merge branch 'main' into 97-svgdrawing-for-components
TSKsmiley ea75484
lint
TSKsmiley 7492111
removed old files
TSKsmiley 31568c7
Merge branch 'main' into 97-svgdrawing-for-components
NybyDK 084a79b
Merge branch 'main' into 97-svgdrawing-for-components
TSKsmiley a0cbc79
fix darkmode
TSKsmiley 145b6f5
Merge branch 'main' into 97-svgdrawing-for-components
TSKsmiley File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,62 @@ | ||
| <script lang="ts"> | ||
| import type { iPoint } from "$lib/interfaces/iPoint"; | ||
| import DraggableSvg from "./helpers/DraggableSVG.svelte"; | ||
|
|
||
| export let position: iPoint = { x: 10, y: 10 }; | ||
|
|
||
| // TODO: these should not be hard coded they should scale with the things inside the component | ||
| let width = 800; | ||
| let height = 1000; | ||
| const cutOff = 100; | ||
| </script> | ||
|
|
||
| <g transform="translate({position.x}, {position.y})"> | ||
| <path | ||
| class="background stroke" | ||
| d="M 0 {cutOff} L {cutOff} 0 L {width} 0 L {width} {height} L 0 {height} Z" | ||
| /> | ||
| <DraggableSvg bind:position> | ||
| <path | ||
| class="bar stroke" | ||
| d="M {cutOff / 2} {cutOff / | ||
| 2} L {cutOff} 0 L {width} 0 L {width} {cutOff / 2} Z" | ||
| /> | ||
| <text x={cutOff} y={cutOff / 3} font-size="2rem">Hello</text> | ||
| <g | ||
| on:pointerup={() => { | ||
| alert("Initiate Text Editor"); | ||
| }} | ||
| > | ||
| <rect | ||
| x={width - 50} | ||
| y="0" | ||
| width={cutOff / 2} | ||
| height={cutOff / 2} | ||
| fill="pink" | ||
| class="stroke" | ||
| ></rect> | ||
| <text x={width - 44} y="34" fill="white" font-size="28px" | ||
| >< ></text | ||
| > | ||
|
Collaborator
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. |
||
| </g> | ||
| <slot /> | ||
| </DraggableSvg> | ||
| </g> | ||
|
|
||
| <style> | ||
| .background { | ||
| fill: blue; | ||
| fill-opacity: 0.5; | ||
| } | ||
|
|
||
| .bar { | ||
| fill: blue; | ||
| } | ||
|
|
||
| .stroke { | ||
| stroke: black; | ||
| stroke-width: 8; | ||
| stroke-linejoin: round; | ||
| stroke-linecap: round; | ||
| } | ||
| </style> | ||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.

There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
We can't merge "hello" into main