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
const OrderList: React.FC<IProps> = props => { | |
const [request, completeRequest] = React.useState(false); | |
const [requestId, upddateRequestId] = React.useState(0); | |
if (request && checkCompleteTask(props.asyncTasks, requestId)) { | |
completeRequest(false); | |
} | |
React.useEffect(() => { | |
const { |
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
import * as React from "react" | |
import { Frame, useCycle } from "framer" | |
// Open Preview (CMD + P) | |
// API Reference: https://www.framer.com/api | |
export function BlinkingCircle() { | |
const [animate, cycle] = useCycle( | |
{ backgroundColor: "#ff2020" }, | |
{ backgroundColor: "#ffbc20" } |
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
import { Data, animate, Override, Animatable } from "framer" | |
const data = Data({ | |
plusOpacity: 1, | |
minusOpacity: 0.3, | |
page: 0 | |
}) | |
export const PlusButtonStatus: Override = () => { | |
return { |
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
import { Data, animate, Override, Animatable } from "framer" | |
const STABLE_COLOR = '#FFF' | |
const GROWING_COLOR = '#F00' | |
let isGrowing = false | |
const data = Data({ | |
backgroundColor: Animatable(STABLE_COLOR), | |
likeScale: Animatable(1) |
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
import { Data, animate, Override, Animatable } from "framer" | |
let isOriginalSize = true | |
const data = Data({ | |
scale: Animatable(1) | |
}) | |
export const ToggleButton: Override = () => { | |
return { |
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
START_POSITION = 60 | |
ADJUIST = 5 | |
boxMaker = (y) -> new Layer | |
name: 'box' | |
opacity: 0 | |
x: Align.center | |
y: y | |
backgroundColor: Utils.randomColor() | |
width: Screen.width - 10 |
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
import Woowahan from 'woowahan'; | |
import template from './main.handlebars'; | |
export const Main = Woowahan.View.create('Main', { | |
template, | |
initialize() { | |
this.setModel({ | |
myList: [ | |
{ all: '부각용', wait: '7', ad: '10', deal: '8' }, |
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
var pad = size => num => (Array(size-String(num).length+1)).join('0')+num; |
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
const myview = Woowahan.View.create('bindExample', { | |
initialize() { | |
this.onDragend = this.onDragend.bind(this); | |
this.super(); | |
}, | |
viewDidMount() { | |
this.map.addListener(markerId, 'dragend', this.onDragend); |
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
import * as actions from './actions'; | |
import * as plugins from './plugins'; | |
import myMiddleware from './middleware/mymiddleware'; | |
import reducers from './reducers'; | |
import views from './views'; | |
export default { | |
view: views.shopFinder, | |
setup: function(app) { |