Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
46 commits
Select commit Hold shift + click to select a range
25dae72
FirstPass
saintentropy May 5, 2025
5a87ccd
Progress update
saintentropy May 11, 2025
106b8ed
Add Inport triggers and tooltip
saintentropy May 11, 2025
fa31803
Progress Update
saintentropy May 12, 2025
6724c68
Progress on NodeView
saintentropy May 12, 2025
13b986d
Simplify InPorts including lazy load of level spinner
saintentropy May 13, 2025
7ce45f0
Cleanup + Support Code blocks
saintentropy May 13, 2025
e940553
Simplify Ports and verify with Groups
saintentropy May 13, 2025
1d71b38
Add NodeAutoCompleteHover to InPort
saintentropy May 14, 2025
6c6cdd8
Finish node ui
saintentropy May 15, 2025
f87bcf2
fix typo
saintentropy May 15, 2025
24a854d
Merge branch 'master' into CodeOnlyNodeView
saintentropy May 15, 2025
3d96a27
NodeView clean up, comments, and deregister event handlers
saintentropy May 15, 2025
3f79235
Inport cleanup, comments, and deregister events
saintentropy May 16, 2025
e74e8d8
remove BeginInit / EndInit
saintentropy May 16, 2025
b387f0d
Clean up Outport, add comments, deregister events
saintentropy May 16, 2025
3037ffc
Fix test and realing names with old names
saintentropy May 16, 2025
98a6a11
Update api docs
saintentropy May 16, 2025
3136e36
Fix tests
saintentropy May 16, 2025
c84d3e4
Fix API doc
saintentropy May 16, 2025
3bb8e4b
fIx api doc
saintentropy May 16, 2025
0ccf319
First pass at lazy load
saintentropy May 20, 2025
10ca6ea
Change to background
saintentropy May 23, 2025
c6fecdc
Merge branch 'master' of https://github.com/DynamoDS/Dynamo into Cach…
zeusongit May 27, 2025
5fc3ed3
add missing trigger
zeusongit May 27, 2025
7833644
Merge branch 'master' of https://github.com/DynamoDS/Dynamo into DYN-…
zeusongit Jun 18, 2025
4ae3ee7
Update NodeView.xaml.cs
zeusongit Jun 18, 2025
9d09c73
reinstate opacity converter
zeusongit Jun 19, 2025
dded96f
Apply defer based on node count
zeusongit Jun 19, 2025
ef6af98
record node load time in debug
zeusongit Jun 19, 2025
6a6da15
Add user authentication middleware
zeusongit Jul 2, 2025
d96130f
Merge branch 'master' of https://github.com/DynamoDS/Dynamo into DYN-…
zeusongit Jul 2, 2025
d6a4ac9
deferred load
zeusongit Jul 2, 2025
955df68
Update NodeView.xaml.cs
zeusongit Jul 2, 2025
5c80204
Improve node loading UI and expose loading properties
zeusongit Jul 2, 2025
d1fc40f
comments
zeusongit Jul 2, 2025
a02d7ef
remove customized nodes
zeusongit Jul 7, 2025
400b8a4
Move the ResourceSet to static field
saintentropy Jul 9, 2025
973a34d
Removed commented out sections
saintentropy Jul 9, 2025
1691e06
typo
saintentropy Jul 9, 2025
9dc24fb
typo
saintentropy Jul 9, 2025
3e651d5
Merge pull request #2 from saintentropy/DYN-8303-2
zeusongit Jul 9, 2025
ce53697
Merge branch 'master' of https://github.com/DynamoDS/Dynamo into 8303-t
zeusongit Jul 9, 2025
4de0299
Update NodeView.xaml.cs
zeusongit Jul 9, 2025
9ee2bdd
remove stopwatch
zeusongit Jul 10, 2025
d7a7511
Use Path.GetInvalidFileNameChars for node name sanitization
zeusongit Jul 10, 2025
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
51 changes: 48 additions & 3 deletions src/DynamoCoreWpf/Controls/NotificationsControl.xaml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<UserControl x:Class="Dynamo.Wpf.Controls.NotificationsControl"
<UserControl x:Class="Dynamo.Wpf.Controls.NotificationsControl"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
Expand Down Expand Up @@ -35,6 +35,7 @@
<core:NotificationLevelToColorConverter x:Key="NotificationLevelToColorConverter"></core:NotificationLevelToColorConverter>
<core:ZeroToVisibilityCollapsedConverter x:Key="ZeroToVisibilityCollapsedConverter" />
<converters:EmptyStringToHiddenConverter x:Key="EmptyStringToHiddenConverter" />
<converters:BoolToVisibilityConverter x:Key="BoolToVisibilityConverter" />
<converters:LinterIssueCountToVisibilityConverter x:Key="LinterIssueCountToVisibilityConverter" />
<ResourceDictionary.MergedDictionaries>
<ui:SharedResourceDictionary Source="{x:Static ui:SharedDictionaryManager.DynamoConvertersDictionaryUri}" />
Expand All @@ -45,6 +46,7 @@

<Grid HorizontalAlignment="Stretch" VerticalAlignment="Center">
<Grid.ColumnDefinitions>
<ColumnDefinition Width="Auto" />
<ColumnDefinition Width="Auto" />
<ColumnDefinition Width="Auto" />
<ColumnDefinition Width="*" />
Expand Down Expand Up @@ -128,8 +130,51 @@
</ItemsControl.ItemsPanel>
</ItemsControl>


<Border Style="{StaticResource FooterNotificationItemStyle}" Grid.Column="2"
Visibility="{Binding HomeSpaceViewModel.NodesLoading, Converter={StaticResource BoolToVisibilityConverter}}">
<StackPanel
Orientation="Horizontal" Margin="5,0"
VerticalAlignment="Center">
<Image Name="downloadingIcon"
Copy link
Preview

Copilot AI Jul 9, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

[nitpick] Use x:Name instead of Name in XAML to ensure uniqueness across templates and avoid potential conflicts.

Copilot uses AI. Check for mistakes.

Copy link
Preview

Copilot AI Jul 9, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The progress spinner lacks an automation name or tooltip for screen readers. Consider adding AutomationProperties.Name="Loading nodes" or similar.

Copilot uses AI. Check for mistakes.

Width="16"
Height="16"
VerticalAlignment="Center"
RenderTransformOrigin="0.5,0.5"
Source="/DynamoCoreWpf;component/UI/Images/Progress circle.png"
Visibility="Visible">
<Image.RenderTransform>
<RotateTransform x:Name="AnimatedRotateTransform" Angle="0" />
</Image.RenderTransform>
<Image.Triggers>
<EventTrigger RoutedEvent="Window.Loaded">
<BeginStoryboard>
<Storyboard>
<DoubleAnimation By="10"
FillBehavior="Stop"
RepeatBehavior="Forever"
Storyboard.TargetName="AnimatedRotateTransform"
Storyboard.TargetProperty="Angle"
To="360"
Duration="0:0:0.5" />
</Storyboard>
</BeginStoryboard>
</EventTrigger>
</Image.Triggers>
</Image>
<TextBlock Margin="10,0"
Foreground="White" VerticalAlignment="Center">
<Run Text="Loading nodes: " />
<Run Text="{Binding HomeSpaceViewModel.LoadedNodesCount, Mode=OneWay}" />
<Run Text="/" />
<Run Text="{Binding HomeSpaceViewModel.Nodes.Count, Mode=OneWay}" />
</TextBlock>
</StackPanel>
</Border>


<StackPanel Orientation="Horizontal"
Grid.Column="2"
Grid.Column="3"
HorizontalAlignment="Right"
VerticalAlignment="Center"
Margin="30,0"
Expand All @@ -156,4 +201,4 @@
</StackPanel>

</Grid>
</UserControl>
</UserControl>
3 changes: 2 additions & 1 deletion src/DynamoCoreWpf/DynamoCoreWpf.csproj
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<Project Sdk="Microsoft.NET.Sdk">
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<UILib>true</UILib>
</PropertyGroup>
Expand Down Expand Up @@ -414,6 +414,7 @@
<EmbeddedResource Include="Properties\Resources.ru-RU.resx" />
<EmbeddedResource Include="Properties\Resources.zh-CN.resx" />
<EmbeddedResource Include="Properties\Resources.zh-TW.resx" />
<EmbeddedResource Include="NodeCacheImages.resx" />
</ItemGroup>

<ItemGroup>
Expand Down
Loading
Loading