-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #89 from metrico/joel-query-type
Feature: Query Type
- Loading branch information
Showing
38 changed files
with
898 additions
and
262 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains 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 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 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 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 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 |
---|---|---|
@@ -1,7 +1,8 @@ | ||
export default function setFromTime(toTime){ | ||
return function (dispatch){ | ||
dispatch({ | ||
type:"SET_FROM_TIME" | ||
}) | ||
} | ||
export default function setFromTime(toTime){ | ||
return function (dispatch){ | ||
dispatch({ | ||
type:"SET_FROM_TIME", | ||
toTime | ||
}) | ||
} | ||
} |
This file contains 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,8 @@ | ||
const setIsEmptyView = (isEmptyView) => (dispatch) => { | ||
dispatch({ | ||
type: 'SET_IS_EMPTY_VIEW', | ||
isEmptyView, | ||
}) | ||
} | ||
|
||
export default setIsEmptyView; |
This file contains 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 |
---|---|---|
@@ -1,7 +1,7 @@ | ||
const setLabelValues = (labelValues) => (dispatch) => { | ||
dispatch({ | ||
type: 'SET_LABEL_VALUES', | ||
labelValues | ||
}); | ||
} | ||
export default setLabelValues; | ||
const setLabelValues = (labelValues) => (dispatch) => { | ||
dispatch({ | ||
type: 'SET_LABEL_VALUES', | ||
labelValues | ||
}); | ||
} | ||
export default setLabelValues; |
This file contains 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 |
---|---|---|
@@ -1,6 +1,6 @@ | ||
export const setLabels = (labels) => (dispatch) => { | ||
dispatch({ | ||
type: 'SET_LABELS', | ||
labels: labels | ||
}); | ||
}; | ||
export const setLabels = (labels) => (dispatch) => { | ||
dispatch({ | ||
type: 'SET_LABELS', | ||
labels: labels | ||
}); | ||
}; |
Oops, something went wrong.