Skip to content

GitLab

  • Projects
  • Groups
  • Snippets
  • Help
    • Loading...
  • Help
    • Help
    • Support
    • Community forum
    • Submit feedback
    • Contribute to GitLab
  • Sign in
I
iTasks-SDK
  • Project overview
    • Project overview
    • Details
    • Activity
    • Releases
  • Repository
    • Repository
    • Files
    • Commits
    • Branches
    • Tags
    • Contributors
    • Graph
    • Compare
  • Issues 84
    • Issues 84
    • List
    • Boards
    • Labels
    • Service Desk
    • Milestones
  • Merge Requests 10
    • Merge Requests 10
  • CI / CD
    • CI / CD
    • Pipelines
    • Jobs
    • Schedules
  • Operations
    • Operations
    • Incidents
    • Environments
  • Analytics
    • Analytics
    • CI / CD
    • Repository
    • Value Stream
  • Wiki
    • Wiki
  • Snippets
    • Snippets
  • Members
    • Members
  • Collapse sidebar
  • Activity
  • Graph
  • Create a new issue
  • Jobs
  • Commits
  • Issue Boards
  • clean-and-itasks
  • iTasks-SDK
  • Issues
  • #362

Closed
Open
Opened Nov 08, 2019 by Pieter Koopman@pieterDeveloper

View of shared list in parallel spoils layout

I have a type Train and a share with a list of them:

import StdEnv
import iTasks

:: Train =
  { name :: String
  , pos  :: Cell
  , dest :: Cell
  , face :: Face
  }
:: Face = N | E | S | W
:: Cell = {x :: Int, y :: Int}
derive class iTask Cell, Train, Face

trains :: SimpleSDSLens [Train]
trains = sharedStore "trains" []

Start w = doTasks (ArrangeHorizontal @>> task) w
where
	task =
			updateSharedInformation [] trains
		-&&-
			updateSharedInformation [] trains

updating this share in parallel with a updateSharedInformation spoils the layout. See screenshots.

I use the 2019-10-01 version of iTasks on Windows with Firefox. This bug is still present on 2020-10-12, and is platform-independent. It seems that some layout functions are not applied correctly.

Screen_Shot_1 Screen_Shot_2

Edited Oct 12, 2020 by Camil Staps
Assignee
Assign to
None
Milestone
None
Assign milestone
Time tracking
None
Due date
None
Reference: clean-and-itasks/iTasks-SDK#362