Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
P
privatestoragemobile
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Model registry
Operate
Terraform modules
Analyze
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
PrivateStorage
privatestoragemobile
Merge requests
!50
Add directory interactions to the tech demo page
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
Add directory interactions to the tech demo page
integrate-directory-download-demo
into
main
Overview
0
Commits
4
Pipelines
3
Changes
14
Merged
Jean-Paul Calderone
requested to merge
integrate-directory-download-demo
into
main
1 year ago
Overview
0
Commits
4
Pipelines
3
Changes
14
Expand
Enter an SDMF directory read cap to see its children
Click on its directory children to see their children
Use standard forward/backward navigation to traverse interaction history
0
0
Merge request reports
Compare
main
version 2
499ac230
1 year ago
version 1
a171ca15
1 year ago
main (base)
and
latest version
latest version
8f24a84f
4 commits,
1 year ago
version 2
499ac230
3 commits,
1 year ago
version 1
a171ca15
2 commits,
1 year ago
14 files
+
178
−
14
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
14
Search (e.g. *.vue) (Ctrl+P)
obelisk/common/src/Common/Route.hs
+
5
−
3
Options
@@ -36,8 +36,10 @@ data FrontendRoute :: * -> * where
-- | A technology demo page. This is not part of the user-facing
-- application proper. Instead, it's a dumping ground for experiments and
-- demos.
FrontendRoute_TechDemo
::
FrontendRoute
()
-- demos. The payload is [] for the basic page and each time the directory
-- widget is used to navigate deeper into a directory hierarchy the visited
-- directory is pushed on the front of the list.
FrontendRoute_TechDemo
::
FrontendRoute
[
Text
]
-- | Show the list of magic-folders
FrontendRoute_MagicFolders
::
FrontendRoute
()
@@ -63,7 +65,7 @@ fullRouteEncoder = mkFullRouteEncoder
BackendRoute_Missing
->
PathSegment
"missing"
$
unitEncoder
mempty
)
(
\
case
FrontendRoute_Main
->
PathEnd
$
unitEncoder
mempty
FrontendRoute_TechDemo
->
PathSegment
"techdemo"
$
unitEncoder
mempty
FrontendRoute_TechDemo
->
PathSegment
"techdemo"
$
pathOnlyEncoder
FrontendRoute_MagicFolders
->
PathSegment
"magic-folders"
$
unitEncoder
mempty
FrontendRoute_FileBrowser
->
PathSegment
"browse"
$
pathOnlyEncoder
FrontendRoute_AcceptFolderInvite
->
PathSegment
"folder-invite"
$
pathOnlyEncoder
.
singletonListEncoder
Loading