-
Notifications
You must be signed in to change notification settings - Fork 0
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
Basic flow editor and connect dots tool #179
base: main
Are you sure you want to change the base?
Conversation
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.
Looks good! After this we can actually start making shows!
<style scoped lang="scss"> | ||
.grapher--flow-line { | ||
fill: none; | ||
stroke: $founders-rock; |
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.
🐻
@@ -0,0 +1,39 @@ | |||
<template> | |||
<div> | |||
<b-field label="View Mode"> |
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.
What if we put "View Mode" under the view menu bar?
super(); | ||
GlobalStore.commit(Mutations.CLEAR_SELECTED_DOTS); | ||
this.openToast( | ||
"Connect Dots tool activated. Select a dot from the current stuntsheet." |
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.
These helpful hints are really cool
return this.$props.isConnected | ||
? nextSSDotAppearance | ||
: nextSSUnconnectedDotAppearance; | ||
} |
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.
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.
Good idea... Let's re-visit this once we get this in the hands of STUNT.
Following our discussion in the mtg today, we'll be breaking this PR up into smaller issues:
|
Description
Fixes issue #96
Basic flow editor and connect dots tool
Pre-PR checklist
npm run serve
and:npm run lint
npm run test:unit
npm run test:e2e
and ran relevant testsScreenshots/GIFs
Original state: 2 dots, with 2 stuntsheets
After clicking the "Connect Dots" tool, it changes to "Flow" View Mode and shows a toast at the top of the screen with directions
Selecting a dot from the current stuntsheet
Selecting a dot from the next stuntsheet
Changing the tool to Box Select, and selecting the dot to see the new flow
A fun continuity!