Skip to content

Commit

Permalink
added chaning content panel for landing page
Browse files Browse the repository at this point in the history
  • Loading branch information
FePrHPI committed Jun 11, 2024
1 parent 187301c commit cc74393
Show file tree
Hide file tree
Showing 10 changed files with 36 additions and 53 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
toolbuilder
buildContentPanelSpecWith: aBuilder

self usedBuilder: aBuilder.
^ aBuilder pluggablePanelSpec new
model: self;
layout: #vertical;
children: #contentPanelChildren;
yourself.
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ buildMainLayoutPanelSpecWith: aBuilder
frame: (0@0 corner: 1@1);
children:
{self buildSidebarSpecWith: aBuilder.
self buildRecentBoardsSpecWith: aBuilder.
self buildContentPanelSpecWith: aBuilder.
};
layout: #horizontal;
yourself.
Expand Down

This file was deleted.

Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
toolbuilder
contentPanelChildren

self lastSidebarPart ifNil: [^ {}].
(self contentSpecDict includesKey: self lastSidebarPart) ifTrue:
[^ (self contentSpecDict at: self lastSidebarPart) collect: [:each| each buildWith: self usedBuilder]].
^ {}.
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
toolbuilder
contentSpecDict

^ {'Recent Boards' -> {
self buildRecentLocalBoardsSpecWith: self usedBuilder.
self buildRecentGitHubBoardsSpecWith: self usedBuilder.}.
} asDictionary.

This file was deleted.

Original file line number Diff line number Diff line change
Expand Up @@ -2,17 +2,5 @@ accessing
lastSidebarPart: anObject

lastSidebarPart := anObject.
self changed: #lastSidebarPart

"self updateMainPanel
self projectDescription: ..
self changed: #projectDescription.
buildWIth: .... pluggableTextSpec new .... model: self ... getText: #projectDescription.
"
self changed: #lastSidebarPart.
self changed: #contentPanelChildren.
Original file line number Diff line number Diff line change
Expand Up @@ -11,11 +11,11 @@
"open" : "Haru 6/1/2024 12:28" },
"instance" : {
"buildAthentificationSpecWith:" : "Haru 6/7/2024 12:15",
"buildMainLayoutPanelSpecWith:" : "FP 6/10/2024 14:23",
"buildContentPanelSpecWith:" : "FP 6/11/2024 11:54",
"buildMainLayoutPanelSpecWith:" : "FP 6/11/2024 11:53",
"buildManageLocalBoardsSpecWith:" : "Haru 6/7/2024 12:15",
"buildNewLocalBoardSpecWith:" : "Haru 6/7/2024 12:14",
"buildOpenBoardSpecWith:" : "Haru 6/7/2024 12:14",
"buildRecentBoardsSpecWith:" : "FP 6/10/2024 15:28",
"buildRecentGitHubBoardsButtonSpecWith:withBoardInfo:" : "FP 6/10/2024 16:27",
"buildRecentGitHubBoardsChildren" : "FP 6/10/2024 16:00",
"buildRecentGitHubBoardsSpecWith:" : "FP 6/10/2024 15:55",
Expand All @@ -25,10 +25,11 @@
"buildResetUserAccountSpecWith:" : "Haru 6/7/2024 12:15",
"buildSidebarSpecWith:" : "FP 6/10/2024 14:36",
"buildWith:" : "FP 6/10/2024 14:22",
"forlaterbuildRecentLocalBoardsSpecWith:" : "Haru 6/9/2024 20:09",
"contentPanelChildren" : "FP 6/11/2024 12:13",
"contentSpecDict" : "FP 6/11/2024 12:07",
"initialize" : "Haru 6/7/2024 11:58",
"lastSidebarPart" : "Haru 6/7/2024 11:57",
"lastSidebarPart:" : "Haru 6/7/2024 11:57",
"lastSidebarPart:" : "FP 6/11/2024 12:05",
"list" : "Haru 6/9/2024 14:12",
"open" : "Haru 6/1/2024 12:22",
"usedBuilder" : "Haru 6/1/2024 12:39",
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
as yet unclassified
queryBoardName

^ 'TestBoard'.
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@
"moveCard:after:toColumn:" : "mcr 6/3/2022 13:16",
"moveCardToTop:toColumn:" : "mcr 6/3/2022 13:17",
"moveColumn:after:" : "tk 7/30/2022 22:00",
"queryBoardName" : "FP 6/11/2024 11:04",
"queryCardContent:" : "FP 5/11/2024 14:57",
"queryColumns" : "tk 7/30/2022 23:31",
"renameColumn:to:" : "FP 5/11/2024 15:01",
Expand Down

0 comments on commit cc74393

Please sign in to comment.