dubdiff/src/common/selectors.js

62 lines
1.2 KiB
JavaScript
Raw Normal View History

2016-11-23 22:58:48 +01:00
//per http://redux.js.org/docs/recipes/ComputingDerivedData.html
import { createSelector } from 'reselect'
2016-11-28 18:47:47 +01:00
import React from 'react'
import {Format, Show} from './constants'
2016-11-28 18:47:47 +01:00
import * as Dubdiff from './util/dubdiff'
2016-11-28 18:47:47 +01:00
2016-11-23 22:58:48 +01:00
const input = (state) => state.input
2016-11-28 18:47:47 +01:00
const format = (state) => state.format
const show = (state) => state.show
2016-11-23 22:58:48 +01:00
export const safeInput = createSelector(
[input],
(input) => {
//!!! sanitize the input here and return
return input
}
2016-11-28 18:47:47 +01:00
)
export const isMarkdownFormat = createSelector(
[format],
(format) => {
return format == Format.MARKDOWN
}
)
const isShow = (type) => createSelector(
[show],
(show) => {
return show == type
}
)
export const isShowOriginal = isShow(Show.ORIGINAL)
export const isShowFinal = isShow(Show.FINAL)
export const isShowDifference= isShow(Show.DIFFERENCE)
export const diff = createSelector(
[format, safeInput],
(format, safeInput) => {
2017-01-05 23:18:03 +01:00
if (format==Format.PLAINTEXT)
return Dubdiff.plaintextDiff(safeInput.original, safeInput.final)
else if (format==Format.MARKDOWN)
return Dubdiff.markdownDiff(safeInput.original, safeInput.final)
2016-11-28 18:47:47 +01:00
}
)
2016-11-28 18:47:47 +01:00
/*
html diff
---
diffHtml(parentOriginal, parentFinal) {
create stringOriginal, stringFinal consisting of
}
*/