Skip to content

Commit 671fe35

Browse files
authored
Update plotlyfig.m to work offline by default
After setting plotly to work in offline mode, it now works without the need to API Key or internet, etc.
1 parent d3a5175 commit 671fe35

File tree

1 file changed

+25
-15
lines changed

1 file changed

+25
-15
lines changed

plotly/plotlyfig.m

+25-15
Original file line numberDiff line numberDiff line change
@@ -37,16 +37,6 @@
3737
obj.layout = struct();
3838
obj.url = '';
3939

40-
%-UserData-%
41-
try
42-
[obj.UserData.Username,...
43-
obj.UserData.ApiKey,...
44-
obj.UserData.PlotlyDomain] = signin;
45-
catch
46-
errkey = 'plotlyfigConstructor:notSignedIn';
47-
error(errkey, plotlymsg(errkey));
48-
end
49-
5040
obj.UserData.Verbose = true;
5141

5242
%-PlotOptions-%
@@ -74,7 +64,23 @@
7464
obj.PlotOptions.LinkText = obj.get_link_text;
7565
obj.PlotOptions.IncludePlotlyjs = true;
7666
obj.PlotOptions.SaveFolder = pwd;
77-
67+
68+
%-UserData-%
69+
try
70+
[obj.UserData.Username,...
71+
obj.UserData.ApiKey,...
72+
obj.UserData.PlotlyDomain] = signin;
73+
catch
74+
if obj.PlotOptions.Offline
75+
obj.UserData.Username = 'offlineUser';
76+
obj.UserData.ApiKey = '';
77+
obj.UserData.PlotlyDomain = 'https://plot.ly';
78+
else
79+
errkey = 'plotlyfigConstructor:notSignedIn';
80+
error(errkey, plotlymsg(errkey));
81+
end
82+
end
83+
7884
%-PlotlyDefaults-%
7985
obj.PlotlyDefaults.MinTitleMargin = 80;
8086
obj.PlotlyDefaults.TitleHeight = 0.01;
@@ -1008,10 +1014,14 @@ function delete(obj)
10081014
end
10091015

10101016
function link_text = get_link_text(obj)
1011-
plotly_domain = obj.UserData.PlotlyDomain;
1012-
link_domain = strrep(plotly_domain, 'https://', '');
1013-
link_domain = strrep(link_domain, 'http://', '');
1014-
link_text = ['Export to ' link_domain];
1017+
if obj.PlotOptions.Offline
1018+
plotly_domain = 'https://plot.ly';
1019+
else
1020+
plotly_domain = obj.UserData.PlotlyDomain;
1021+
end
1022+
link_domain = strrep(plotly_domain, 'https://', '');
1023+
link_domain = strrep(link_domain, 'http://', '');
1024+
link_text = ['Export to ' link_domain];
10151025
end
10161026
end
10171027
end

0 commit comments

Comments
 (0)