Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
P
purescript-gargantext
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
131
Issues
131
List
Board
Labels
Milestones
Merge Requests
3
Merge Requests
3
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
gargantext
purescript-gargantext
Commits
e001b112
Commit
e001b112
authored
Nov 29, 2017
by
Alexandre Delanoë
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
[Compiling, ok] need to rename function and map on sentence and paragraph.
parent
7be031c3
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
42 additions
and
22 deletions
+42
-22
randomText.purs
src/randomText.purs
+42
-22
No files found.
src/randomText.purs
View file @
e001b112
...
...
@@ -14,11 +14,16 @@ import Partial.Unsafe (unsafePartial)
import Unsafe.Coerce (unsafeCoerce)
--rando Ran x [] = Ran x []
--rando Ran x xs = Ran (x <> [x']) (rando xs')
-- where
-- Ran x' xs' = randomIt xs
--
data RanR = RanR { l :: Array Char, r :: Array Char}
instance showRanR :: Show RanR where
show (RanR {l:l', r:r'}) = show $ (show l') /\ (show r')
rando (RanR {l:x,r:[]}) = pure $ RanR {l:x,r:[]}
rando (RanR {l:x,r:xs}) = do
Ran {l:x',r:xs'} <- randomIt xs
rando (RanR {l:(x <> [x']), r: xs'})
remove :: forall t5. Int -> Array t5 -> Array t5
remove n [] = []
...
...
@@ -29,29 +34,44 @@ remove n xs = unsafePartial $ case n of
data Ran = Ran { l :: Char, r :: Array Char}
randomIt :: forall t46. String -> Eff ( random :: RANDOM | t46 ) Ran
instance showRan :: Show Ran where
show (Ran {l:l', r:r'}) = show $ (show l') /\ (show r')
randomIt :: forall t46. Array Char -> Eff ( random :: RANDOM | t46 ) Ran
randomIt ar = unsafePartial $ do
let ar' = toCharArray ar
n <- randomInt 0 (length ar
'
- 1)
--
let ar' = toCharArray ar
n <- randomInt 0 (length ar - 1)
let maybeChar = (ar
'
!! n )
let rest = remove n ar
'
let maybeChar = (ar !! n )
let rest = remove n ar
case maybeChar of
Nothing ->
crash "it should not happen"
Just char ->
pure $ Ran {l : char, r : rest}
Nothing ->
crash "it should not happen"
Just char ->
pure $ Ran {l : char, r : rest}
randomize :: forall t98. String -> Eff ( random :: RANDOM | t98) String
randomize string = do
RanR rr <- rando (RanR {l:[], r:(toCharArray string)})
pure $ fromCharArray (rr.l)
randomize' :: forall t98. (Array Char) -> Eff ( random :: RANDOM | t98) (Array Char)
randomize' string = do
RanR rr <- rando (RanR {l:[], r:string})
pure rr.l
randomText ::
String ->
String
randomText txt =
fromCharArray ( start <> middle
<> end)
randomText ::
forall t114. String -> Eff( random :: RANDOM| t114)
String
randomText txt =
randomize' middle >>= \middle' -> pure $ fromCharArray ( start <> middle'
<> end)
where
txt' = toCharArray txt
start = take 2 txt'
middle = dropEnd 2 $ drop 2 txt'
end = takeEnd 2 txt'
txt'
= toCharArray txt
start
= take 2 txt'
middle
= dropEnd 2 $ drop 2 txt'
end
= takeEnd 2 txt'
testText ::
String ->
String
testText ::
forall t114. String -> Eff( random :: RANDOM| t114)
String
testText txt = case (length (toCharArray txt)) >= 5 of
true -> randomText txt
_ -> txt
_ ->
pure
txt
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment