Package com.storedobject.vaadin
Class RubikCube
java.lang.Object
com.vaadin.flow.component.Component
com.vaadin.flow.component.littemplate.LitTemplate
com.storedobject.vaadin.RubikCube
- All Implemented Interfaces:
com.vaadin.flow.component.AttachNotifier
,com.vaadin.flow.component.DetachNotifier
,com.vaadin.flow.component.HasElement
,com.vaadin.flow.component.HasSize
,com.vaadin.flow.component.HasStyle
,com.vaadin.flow.internal.Template
,Serializable
@Tag("scary-cube")
@NpmPackage(value="resize-observer-polyfill",
version="1.5.1")
@JsModule("./so/scarycube/scary-cube.js")
public class RubikCube
extends com.vaadin.flow.component.littemplate.LitTemplate
implements com.vaadin.flow.component.HasSize
Rubik's Cube (created by wrapping Scarygami's @scarygami/scary-cube).
Please note: I have included the JS file directly to handle Polymer version compatibility.
- Author:
- Syam
- See Also:
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptioncom.vaadin.flow.shared.Registration
addSolvedListener
(Consumer<RubikCube> solvedListener) Add a "solved listener" that will be informed about if the cube is solved.void
move
(CharSequence moves) Do moves.void
reset()
Reset the cube.void
shuffle
(int moves) Shuffle the cube.Methods inherited from class com.vaadin.flow.component.littemplate.LitTemplate
getChildren
Methods inherited from class com.vaadin.flow.component.Component
addListener, findAncestor, fireEvent, from, get, getElement, getEventBus, getId, getListeners, getLocale, getParent, getTranslation, getTranslation, getTranslation, getTranslation, getTranslation, getTranslation, getUI, hasListener, isAttached, isTemplateMapped, isVisible, onAttach, onDetach, onEnabledStateChanged, removeFromParent, scrollIntoView, scrollIntoView, set, setElement, setId, setVisible
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
Methods inherited from interface com.vaadin.flow.component.AttachNotifier
addAttachListener
Methods inherited from interface com.vaadin.flow.component.DetachNotifier
addDetachListener
Methods inherited from interface com.vaadin.flow.component.HasElement
getElement
Methods inherited from interface com.vaadin.flow.component.HasSize
getHeight, getHeightUnit, getMaxHeight, getMaxWidth, getMinHeight, getMinWidth, getWidth, getWidthUnit, setHeight, setHeight, setHeightFull, setMaxHeight, setMaxHeight, setMaxWidth, setMaxWidth, setMinHeight, setMinHeight, setMinWidth, setMinWidth, setSizeFull, setSizeUndefined, setWidth, setWidth, setWidthFull
Methods inherited from interface com.vaadin.flow.component.HasStyle
addClassName, addClassNames, getClassName, getClassNames, getStyle, hasClassName, removeClassName, removeClassNames, setClassName, setClassName
-
Constructor Details
-
RubikCube
public RubikCube()Constructor.
-
-
Method Details
-
move
-
reset
public void reset()Reset the cube. -
shuffle
public void shuffle(int moves) Shuffle the cube. The cube is considered as shuffled only if it was shuffled with at least 10 moves.- Parameters:
moves
- Number of moves to be used for shuffling.
-
addSolvedListener
Add a "solved listener" that will be informed about if the cube is solved. (The cube will be considered solved only if it was previously shuffled).
-