Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Refactoring and cleanup of Chat components #7800

Merged
merged 5 commits into from
Mar 22, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
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
59 changes: 31 additions & 28 deletions panel/chat/feed.py
Original file line number Diff line number Diff line change
Expand Up @@ -797,6 +797,36 @@ def _match_step_status(self, event):
self._callback_state = CallbackState.IDLE
self._run_post_hook(event.obj)

def _build_steps_layout(self, step, layout_params, default_layout):
layout_params = layout_params or {}
input_layout_params = dict(
min_width=100,
styles={
"margin-inline": "10px",
},
css_classes=["chat-steps"],
stylesheets=[f"{CDN_DIST}css/chat_steps.css"]
)
if default_layout == "column":
layout = Column
elif default_layout == "card":
layout = self._card_type
input_layout_params["header_css_classes"] = ["card-header"]
title = layout_params.pop("title", None)
input_layout_params["header"] = HTML(
title or "🪜 Steps",
css_classes=["card-title"],
stylesheets=[f"{CDN_DIST}css/chat_steps.css"]
)
else:
raise ValueError(
f"Invalid default_layout {default_layout!r}; "
f"expected 'column' or 'card'."
)
if layout_params:
input_layout_params.update(layout_params)
return layout(step, **input_layout_params)

def add_step(
self,
step: str | list[str] | ChatStep | None = None,
Expand Down Expand Up @@ -875,34 +905,7 @@ def add_step(
steps_layout = last.object

if steps_layout is None:
layout_params = layout_params or {}
input_layout_params = dict(
min_width=100,
styles={
"margin-inline": "10px",
},
css_classes=["chat-steps"],
stylesheets=[f"{CDN_DIST}css/chat_steps.css"]
)
if default_layout == "column":
layout = Column
elif default_layout == "card":
layout = self._card_type
input_layout_params["header_css_classes"] = ["card-header"]
title = layout_params.pop("title", None)
input_layout_params["header"] = HTML(
title or "🪜 Steps",
css_classes=["card-title"],
stylesheets=[f"{CDN_DIST}css/chat_steps.css"]
)
else:
raise ValueError(
f"Invalid default_layout {default_layout!r}; "
f"expected 'column' or 'card'."
)
if layout_params:
input_layout_params.update(layout_params)
steps_layout = layout(step, **input_layout_params)
steps_layout = self._build_steps_layout(step, layout_params, default_layout)
self.stream(steps_layout, user=user or self.callback_user, avatar=avatar, trigger_post_hook=False)
else:
steps_layout.append(step)
Expand Down
56 changes: 20 additions & 36 deletions panel/chat/message.py
Original file line number Diff line number Diff line change
Expand Up @@ -449,47 +449,32 @@ def _select_renderer(
contents = contents.decode("utf-8")
return contents, renderer

def _include_stylesheets_inplace(self, obj):
if hasattr(obj, "objects"):
obj.objects[:] = [
self._include_stylesheets_inplace(o) for o in obj.objects
]
else:
obj = _panel(obj)
obj.stylesheets = [
stylesheet for stylesheet in self._stylesheets + self.stylesheets
if stylesheet not in obj.stylesheets
] + obj.stylesheets
return obj

def _include_message_css_class_inplace(self, obj):
if hasattr(obj, "objects"):
obj.objects[:] = [
self._include_message_css_class_inplace(o)
for o in obj.objects
]
else:
obj = _panel(obj)
is_markup = isinstance(obj, HTMLBasePane) and not isinstance(obj, FileBase)
if obj.css_classes or not is_markup:
return obj
if len(str(obj.object)) > 0: # only show a background if there is content
obj.css_classes = [*(css for css in obj.css_classes if css != "message"), "message"]
obj.sizing_mode = None
return obj
def _include_styles(self, obj):
obj = _panel(obj)
for o in obj.select():
params = {
"stylesheets": [
stylesheet for stylesheet in self._stylesheets + self.stylesheets
if stylesheet not in o.stylesheets
] + o.stylesheets
}
is_markup = isinstance(o, HTMLBasePane) and not isinstance(o, FileBase)
if is_markup:
params["sizing_mode"] = None
if not o.css_classes and len(str(o.object)) > 0: # only show a background if there is content
params["css_classes"] = [
*(css for css in o.css_classes if css != "message"), "message"
]
o.param.update(**params)

def _set_params(self, obj, **params):
"""
Set the sizing mode and height of the object.
"""
self._include_stylesheets_inplace(obj)
is_markup = isinstance(obj, HTMLBasePane) and not isinstance(obj, FileBase)
if is_markup:
self._include_message_css_class_inplace(obj)
else:
self._include_styles(obj)
if not isinstance(obj, (FileBase, HTMLBasePane)):
if obj.sizing_mode is None and not obj.width:
params['sizing_mode'] = "stretch_width"

if obj.height is None and not isinstance(obj, ParamFunction):
params['height'] = 500
obj.param.update(params)
Expand All @@ -504,8 +489,7 @@ def _create_panel(self, value, old=None):
"""
if isinstance(value, Viewable):
self._internal = False
self._include_stylesheets_inplace(value)
self._include_message_css_class_inplace(value)
self._include_styles(value)
return value

renderer = None
Expand Down
2 changes: 1 addition & 1 deletion panel/dist/css/chat_feed.css
Original file line number Diff line number Diff line change
Expand Up @@ -7,5 +7,5 @@
}

::-webkit-scrollbar-thumb {
background-color: var(--panel-secondary-color, #f1f1f1);
background-color: var(--panel-surface-color, #f1f1f1);
}
2 changes: 1 addition & 1 deletion panel/models/html.ts
Original file line number Diff line number Diff line change
Expand Up @@ -124,7 +124,7 @@ export class HTMLView extends PanelMarkupView {
}

set_html(html: string | null): void {
if (html === null) {
if (html === null || this.container == null) {
return
}
this.container.innerHTML = html
Expand Down
2 changes: 2 additions & 0 deletions panel/models/reactive_esm.ts
Original file line number Diff line number Diff line change
Expand Up @@ -187,6 +187,7 @@ export class ReactiveESMView extends HTMLBoxView {

override initialize(): void {
super.initialize()
this._child_callbacks = new Map()
this.model_proxy = new Proxy(this, {
get: model_getter,
set: model_setter,
Expand Down Expand Up @@ -290,6 +291,7 @@ export class ReactiveESMView extends HTMLBoxView {
this._update_stylesheets()
this._update_css_classes()
this._apply_styles()
this._update_css_variables()
this._apply_visible()

this._child_callbacks = new Map()
Expand Down