Pluto compat
This commit is contained in:
parent
a05bc80a1b
commit
af7e915424
@ -972,8 +972,8 @@ const _unicodeplots_scale = [:identity, :ln, :log2, :log10]
|
|||||||
# Additional constants
|
# Additional constants
|
||||||
const _unicodeplots_canvas = Ref(:auto)
|
const _unicodeplots_canvas = Ref(:auto)
|
||||||
const _unicodeplots_border = Ref(:auto)
|
const _unicodeplots_border = Ref(:auto)
|
||||||
const _unicodeplots_width = Ref(40)
|
|
||||||
const _unicodeplots_height = Ref(15)
|
const _unicodeplots_height = Ref(15)
|
||||||
|
const _unicodeplots_width = Ref(40)
|
||||||
|
|
||||||
# ------------------------------------------------------------------------------
|
# ------------------------------------------------------------------------------
|
||||||
# hdf5
|
# hdf5
|
||||||
|
|||||||
@ -1,17 +1,17 @@
|
|||||||
# https://github.com/JuliaPlots/UnicodePlots.jl
|
# https://github.com/JuliaPlots/UnicodePlots.jl
|
||||||
|
|
||||||
# don't warn on unsupported... there's just too many warnings!!
|
# don't warn on unsupported... there's just too many warnings !
|
||||||
warn_on_unsupported_args(::UnicodePlotsBackend, plotattributes) = nothing
|
warn_on_unsupported_args(::UnicodePlotsBackend, plotattributes) = nothing
|
||||||
|
|
||||||
# ------------------------------------------------------------------------------------------
|
# ------------------------------------------------------------------------------------------
|
||||||
const _canvas_map = (
|
const _canvas_map = (
|
||||||
ascii = UnicodePlots.AsciiCanvas,
|
|
||||||
block = UnicodePlots.BlockCanvas,
|
|
||||||
braille = UnicodePlots.BrailleCanvas,
|
braille = UnicodePlots.BrailleCanvas,
|
||||||
density = UnicodePlots.DensityCanvas,
|
density = UnicodePlots.DensityCanvas,
|
||||||
dot = UnicodePlots.DotCanvas,
|
|
||||||
heatmap = UnicodePlots.HeatmapCanvas,
|
heatmap = UnicodePlots.HeatmapCanvas,
|
||||||
lookup = UnicodePlots.LookupCanvas,
|
lookup = UnicodePlots.LookupCanvas,
|
||||||
|
ascii = UnicodePlots.AsciiCanvas,
|
||||||
|
block = UnicodePlots.BlockCanvas,
|
||||||
|
dot = UnicodePlots.DotCanvas,
|
||||||
)
|
)
|
||||||
|
|
||||||
# do all the magic here... build it all at once,
|
# do all the magic here... build it all at once,
|
||||||
@ -25,10 +25,10 @@ function unicodeplots_rebuild(plt::Plot{UnicodePlotsBackend})
|
|||||||
xlim = collect(axis_limits(sp, :x))
|
xlim = collect(axis_limits(sp, :x))
|
||||||
ylim = collect(axis_limits(sp, :y))
|
ylim = collect(axis_limits(sp, :y))
|
||||||
|
|
||||||
# we set x/y to have a single point,
|
# We set x/y to have a single point,
|
||||||
# since we need to create the plot with some data.
|
# since we need to create the plot with some data.
|
||||||
# since this point is at the bottom left corner of the plot,
|
# Since this point is at the bottom left corner of the plot,
|
||||||
# it shouldn't actually be shown
|
# it should be hidden by consecutive plotting commands.
|
||||||
x = Float64[xlim[1]]
|
x = Float64[xlim[1]]
|
||||||
y = Float64[ylim[1]]
|
y = Float64[ylim[1]]
|
||||||
|
|
||||||
@ -51,8 +51,8 @@ function unicodeplots_rebuild(plt::Plot{UnicodePlotsBackend})
|
|||||||
title = texmath2unicode(sp[:title]),
|
title = texmath2unicode(sp[:title]),
|
||||||
xlabel = texmath2unicode(xaxis[:guide]),
|
xlabel = texmath2unicode(xaxis[:guide]),
|
||||||
ylabel = texmath2unicode(yaxis[:guide]),
|
ylabel = texmath2unicode(yaxis[:guide]),
|
||||||
width = _unicodeplots_width[],
|
|
||||||
height = _unicodeplots_height[],
|
height = _unicodeplots_height[],
|
||||||
|
width = _unicodeplots_width[],
|
||||||
xscale = xaxis[:scale],
|
xscale = xaxis[:scale],
|
||||||
yscale = yaxis[:scale],
|
yscale = yaxis[:scale],
|
||||||
border = border,
|
border = border,
|
||||||
@ -196,8 +196,10 @@ end
|
|||||||
|
|
||||||
# ------------------------------------------------------------------------------------------
|
# ------------------------------------------------------------------------------------------
|
||||||
Base.show(plt::Plot{UnicodePlotsBackend}) = show(stdout, plt)
|
Base.show(plt::Plot{UnicodePlotsBackend}) = show(stdout, plt)
|
||||||
|
Base.show(io::IO, plt::Plot{UnicodePlotsBackend}) = _show(io, MIME("text/plain"), plt)
|
||||||
|
|
||||||
function Base.show(io::IO, plt::Plot{UnicodePlotsBackend})
|
# NOTE: _show(..) must be kept for Base.showable (src/output.jl)
|
||||||
|
function _show(io::IO, ::MIME"text/plain", plt::Plot{UnicodePlotsBackend})
|
||||||
unicodeplots_rebuild(plt)
|
unicodeplots_rebuild(plt)
|
||||||
nr, nc = size(plt.layout)
|
nr, nc = size(plt.layout)
|
||||||
if nr == 1 && nc == 1 # fast path
|
if nr == 1 && nc == 1 # fast path
|
||||||
@ -207,13 +209,13 @@ function Base.show(io::IO, plt::Plot{UnicodePlotsBackend})
|
|||||||
i < n && println(io)
|
i < n && println(io)
|
||||||
end
|
end
|
||||||
else
|
else
|
||||||
|
re_col = r"\e\[[0-9;]*m" # m: color, [a-zA-Z]: all escape sequences
|
||||||
have_color = Base.get_have_color()
|
have_color = Base.get_have_color()
|
||||||
|
buf = IOContext(PipeBuffer(), :color => have_color)
|
||||||
lines_colored = Array{Union{Nothing,Vector{String}}}(undef, nr, nc)
|
lines_colored = Array{Union{Nothing,Vector{String}}}(undef, nr, nc)
|
||||||
lines_uncolored = have_color ? similar(lines_colored) : lines_colored
|
lines_uncolored = have_color ? similar(lines_colored) : lines_colored
|
||||||
l_max = zeros(Int, nr)
|
l_max = zeros(Int, nr)
|
||||||
w_max = zeros(Int, nc)
|
w_max = zeros(Int, nc)
|
||||||
buf = IOContext(PipeBuffer(), :color => have_color)
|
|
||||||
re_col = r"\e\[[0-9;]*[a-zA-Z]"
|
|
||||||
sps = 0
|
sps = 0
|
||||||
for r in 1:nr
|
for r in 1:nr
|
||||||
lmax = 0
|
lmax = 0
|
||||||
|
|||||||
@ -217,6 +217,8 @@ for mime in (
|
|||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
|
Base.showable(::MIME"text/html", plt::Plot{UnicodePlotsBackend}) = false # Pluto
|
||||||
|
|
||||||
Base.show(io::IO, m::MIME"application/prs.juno.plotpane+html", plt::Plot) =
|
Base.show(io::IO, m::MIME"application/prs.juno.plotpane+html", plt::Plot) =
|
||||||
showjuno(io, MIME("text/html"), plt)
|
showjuno(io, MIME("text/html"), plt)
|
||||||
|
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user