diff --git a/src/App.js b/src/App.js
index 2a6afb7..6657576 100644
--- a/src/App.js
+++ b/src/App.js
@@ -2,8 +2,6 @@ import React from 'react'
import { RsvpReader } from './components/RsvpReader'
-import { IconContext } from 'react-icons'
-
export const App = () => {
return
}
diff --git a/src/components/Options.js b/src/components/Options.js
index b1ace58..88c326d 100644
--- a/src/components/Options.js
+++ b/src/components/Options.js
@@ -1,4 +1,4 @@
-import React, { useCallback } from 'react'
+import React from 'react'
import { useSelector, useDispatch } from 'react-redux'
import { debounce } from 'debounce'
diff --git a/src/components/PivotMarker.js b/src/components/PivotMarker.js
new file mode 100644
index 0000000..2d38e6e
--- /dev/null
+++ b/src/components/PivotMarker.js
@@ -0,0 +1,11 @@
+import React from 'react'
+
+export const PipeMarker = ({ children }) => {
+ return (
+
-
+
+
+
diff --git a/src/components/RsvpSegment.js b/src/components/RsvpSegment.js
deleted file mode 100644
index a704f59..0000000
--- a/src/components/RsvpSegment.js
+++ /dev/null
@@ -1,8 +0,0 @@
-import React from 'react'
-import { useSelector } from 'react-redux'
-import { selectCurrentSegment } from '../store/selectors'
-
-export const RsvpSegment = () => {
- const segment = useSelector(selectCurrentSegment)
- return
{segment}
-}
diff --git a/src/components/Segment.css b/src/components/Segment.css
new file mode 100644
index 0000000..5e83510
--- /dev/null
+++ b/src/components/Segment.css
@@ -0,0 +1,14 @@
+.container {
+ display: flex;
+ font-size: 2.4em;
+}
+.pivot {
+ color: red;
+}
+.prefix {
+ flex: 1;
+ text-align: right;
+}
+.suffix {
+ flex: 1;
+}
diff --git a/src/components/Segment.js b/src/components/Segment.js
new file mode 100644
index 0000000..9b1a17f
--- /dev/null
+++ b/src/components/Segment.js
@@ -0,0 +1,16 @@
+import React from 'react'
+import { useSelector } from 'react-redux'
+import { selectPivotizedSegment } from '../store/selectors'
+
+import styles from './Segment.css'
+
+export const Segment = () => {
+ const [prefix, pivot, suffix] = useSelector(selectPivotizedSegment)
+ return (
+
+ {prefix}
+ {pivot}
+ {suffix}
+
+ )
+}
diff --git a/src/components/Slider.js b/src/components/Slider.js
index 235107e..0f4c771 100644
--- a/src/components/Slider.js
+++ b/src/components/Slider.js
@@ -1,4 +1,4 @@
-import React, { useState, useEffect, useLayoutEffect, useRef } from 'react'
+import React, { useState, useEffect, useRef } from 'react'
import styles from './Slider.css'
diff --git a/src/store/selectors.js b/src/store/selectors.js
index 69a5d47..0b95322 100644
--- a/src/store/selectors.js
+++ b/src/store/selectors.js
@@ -2,6 +2,7 @@ import { createSelector } from 'reselect'
import { parseText } from '../lib/parseText'
import { getNextBiggerNumber, getNextSmallerNumber } from '../lib/array-util.js'
+import { pivotize } from '../lib/pivotize'
// parsedText selectors
@@ -26,6 +27,11 @@ export const selectCurrentSegment = createSelector(
(parsedText, curIdx) => parsedText.segments[curIdx]
)
+export const selectPivotizedSegment = createSelector(
+ selectCurrentSegment,
+ pivotize
+)
+
export const hasNextSegment = createSelector(
selectSegments,
selectCurrentSegmentIndex,