summaryrefslogtreecommitdiff
path: root/animism-align/frontend/views/align/align.actions.js
diff options
context:
space:
mode:
Diffstat (limited to 'animism-align/frontend/views/align/align.actions.js')
-rw-r--r--animism-align/frontend/views/align/align.actions.js93
1 files changed, 0 insertions, 93 deletions
diff --git a/animism-align/frontend/views/align/align.actions.js b/animism-align/frontend/views/align/align.actions.js
deleted file mode 100644
index 2ace824..0000000
--- a/animism-align/frontend/views/align/align.actions.js
+++ /dev/null
@@ -1,93 +0,0 @@
-import * as types from '../../types'
-import { store, history, dispatch } from '../../store'
-import { api, post, pad, preloadImage } from '../../util'
-import actions from '../../actions'
-import { session } from '../../session'
-import throttle from 'lodash.throttle'
-import debounce from 'lodash.debounce'
-
-import { ZOOM_STEPS } from './constants'
-import { getFirstPunctuationMarkIndex, cutFirstSentence } from './align.util'
-
-export const setScrollPosition = start_ts => dispatch => (
- dispatch({ type: types.align.set_display_setting, key: 'start_ts', value: start_ts })
-)
-
-export const setZoom = zoom => dispatch => {
- if (0 <= zoom && zoom < ZOOM_STEPS.length) {
- dispatch({ type: types.align.set_display_setting, key: 'zoom', value: zoom })
- }
-}
-export const throttledSetZoom = throttle(zoom => dispatch => {
- setZoom(zoom)(dispatch)
-}, 250, { leading: true })
-
-export const setCursor = cursor_ts => dispatch => (
- dispatch({ type: types.align.set_display_setting, key: 'cursor_ts', value: cursor_ts })
-)
-
-export const setSelectedAnnotation = annotation => dispatch => {
- dispatch({ type: types.align.set_selected_annotation, data: annotation })
- debouncedUpdateAnnotation.flush()
-}
-export const clearSelectedAnnotation = () => dispatch => {
- dispatch({ type: types.align.clear_selected_annotation })
- debouncedUpdateAnnotation.flush()
-}
-export const updateSelectedAnnotation = annotation => dispatch => {
- dispatch({ type: types.align.set_selected_annotation, data: { ...annotation } })
- debouncedUpdateAnnotation(annotation)
-}
-export const debouncedUpdateAnnotation = debounce(annotation => {
- console.log('updating annotation', annotation)
- actions.annotation.update(annotation)
-}, 2000, { leading: false, trailing: true })
-
-
-export const setSelectedParagraph = paragraph_id => dispatch => {
- dispatch({ type: types.align.set_display_setting, key: 'selected_paragraph_id', value: paragraph_id })
-}
-export const clearSelectedParagraph = paragraph_id => dispatch => {
- dispatch({ type: types.align.set_display_setting, key: 'selected_paragraph_id', value: -1 })
-}
-
-export const showNewAnnotationForm = (start_ts, text) => dispatch => {
- let croppedText;
- if (store.getState().align.annotation.start_ts) {
- croppedText = store.getState().align.annotation.text
- } else {
- croppedText = cutFirstSentence(text)
- }
- // console.log(croppedText)
- dispatch({
- type: types.align.set_temporary_annotation,
- data: {
- id: 'new',
- start_ts,
- end_ts: 0.0,
- text: croppedText,
- type: 'sentence',
- settings: {},
- }
- })
-}
-export const showEditAnnotationForm = (annotation) => dispatch => {
- dispatch({
- type: types.align.set_temporary_annotation,
- data: annotation,
- })
-}
-
-export const updateAnnotationForm = (key, value) => dispatch => {
- dispatch({ type: types.align.update_temporary_annotation, key, value })
-}
-export const updateAnnotationSettings = (key, value) => dispatch => {
- dispatch({ type: types.align.update_temporary_annotation_settings, key, value })
-}
-
-export const hideAnnotationForm = () => dispatch => {
- dispatch({
- type: types.align.set_temporary_annotation,
- data: {}
- })
-}