UX: Disclose AI model used and add animation to placeholder (#22670)
* UX: Disclose AI model used and add animation to placeholder * Move text into hbs template DTooltip (weirdly) attaches to a sibling element, so we need something else to be rendered inside the RenderGlimmer wrapper div --------- Co-authored-by: David Taylor <david@taylorhq.com>
This commit is contained in:
parent
00ab94bf53
commit
3820fae041
|
@ -1,5 +1,5 @@
|
||||||
import { createWidget } from "discourse/widgets/widget";
|
import { createWidget } from "discourse/widgets/widget";
|
||||||
import hbs from "discourse/widgets/hbs-compiler";
|
import { hbs } from "ember-cli-htmlbars";
|
||||||
import { ajax } from "discourse/lib/ajax";
|
import { ajax } from "discourse/lib/ajax";
|
||||||
import { popupAjaxError } from "discourse/lib/ajax-error";
|
import { popupAjaxError } from "discourse/lib/ajax-error";
|
||||||
import { cookAsync } from "discourse/lib/text";
|
import { cookAsync } from "discourse/lib/text";
|
||||||
|
@ -7,18 +7,35 @@ import RawHtml from "discourse/widgets/raw-html";
|
||||||
import I18n from "I18n";
|
import I18n from "I18n";
|
||||||
import { shortDateNoYear } from "discourse/lib/formatter";
|
import { shortDateNoYear } from "discourse/lib/formatter";
|
||||||
import { h } from "virtual-dom";
|
import { h } from "virtual-dom";
|
||||||
|
import { iconNode } from "discourse-common/lib/icon-library";
|
||||||
|
import RenderGlimmer from "discourse/widgets/render-glimmer";
|
||||||
|
|
||||||
createWidget("summary-skeleton", {
|
createWidget("summary-skeleton", {
|
||||||
tagName: "section.placeholder-summary",
|
tagName: "section.placeholder-summary",
|
||||||
template: hbs`
|
|
||||||
<div class="placeholder-summary-text placeholder-animation"></div>
|
|
||||||
<div class="placeholder-summary-text placeholder-animation"></div>
|
|
||||||
<div class="placeholder-summary-text placeholder-animation"></div>
|
|
||||||
<div class="placeholder-summary-text">{{transformed.in_progress_label}}</div>
|
|
||||||
`,
|
|
||||||
|
|
||||||
transform() {
|
html() {
|
||||||
return { in_progress_label: I18n.t("summary.in_progress") };
|
const html = [];
|
||||||
|
|
||||||
|
html.push(this.buildPlaceholderDiv());
|
||||||
|
html.push(this.buildPlaceholderDiv());
|
||||||
|
html.push(this.buildPlaceholderDiv());
|
||||||
|
|
||||||
|
html.push(
|
||||||
|
h("span", {}, [
|
||||||
|
iconNode("magic", { class: "rotate-center" }),
|
||||||
|
h(
|
||||||
|
"p.placeholder-generating-summary-text",
|
||||||
|
{},
|
||||||
|
I18n.t("summary.in_progress")
|
||||||
|
),
|
||||||
|
])
|
||||||
|
);
|
||||||
|
|
||||||
|
return html;
|
||||||
|
},
|
||||||
|
|
||||||
|
buildPlaceholderDiv() {
|
||||||
|
return h("div.placeholder-summary-text.placeholder-animation");
|
||||||
},
|
},
|
||||||
});
|
});
|
||||||
|
|
||||||
|
@ -30,41 +47,28 @@ export default createWidget("summary-box", {
|
||||||
return { expandSummarizedOn: false };
|
return { expandSummarizedOn: false };
|
||||||
},
|
},
|
||||||
|
|
||||||
html(attrs, state) {
|
html(attrs) {
|
||||||
const html = [];
|
const html = [];
|
||||||
|
|
||||||
if (attrs.summary) {
|
if (attrs.summary) {
|
||||||
html.push(new RawHtml({ html: `<div>${attrs.summary}</div>` }));
|
html.push(new RawHtml({ html: `<div>${attrs.summary}</div>` }));
|
||||||
|
html.push(
|
||||||
if (state.expandSummarizedOn) {
|
h("div.summarized-on", {}, [
|
||||||
html.push(
|
new RenderGlimmer(
|
||||||
h(
|
this,
|
||||||
"div.summarized-on",
|
"div",
|
||||||
{},
|
hbs`{{@data.summarizedOn}}<DTooltip @placement="top-end">{{d-icon "info-circle"}}
|
||||||
I18n.t("summary.summarized_on", {
|
{{i18n "summary.model_used" model=@data.attrs.summarizedBy}}
|
||||||
method: attrs.summarizedBy,
|
</DTooltip>`,
|
||||||
date: attrs.summarizedOn,
|
{
|
||||||
})
|
attrs,
|
||||||
)
|
summarizedOn: I18n.t("summary.summarized_on", {
|
||||||
);
|
|
||||||
} else {
|
|
||||||
html.push(
|
|
||||||
h("div.summarized-on", [
|
|
||||||
this.attach("button", {
|
|
||||||
className: "btn btn-link summarized-on",
|
|
||||||
translatedTitle: I18n.t("summary.summarized_on", {
|
|
||||||
method: "AI",
|
|
||||||
date: attrs.summarizedOn,
|
date: attrs.summarizedOn,
|
||||||
}),
|
}),
|
||||||
translatedLabel: I18n.t("summary.summarized_on", {
|
}
|
||||||
method: "AI",
|
),
|
||||||
date: attrs.summarizedOn,
|
])
|
||||||
}),
|
);
|
||||||
action: "showFullSummarizedOn",
|
|
||||||
}),
|
|
||||||
])
|
|
||||||
);
|
|
||||||
}
|
|
||||||
} else {
|
} else {
|
||||||
html.push(this.attach("summary-skeleton"));
|
html.push(this.attach("summary-skeleton"));
|
||||||
this.fetchSummary(attrs.topicId);
|
this.fetchSummary(attrs.topicId);
|
||||||
|
|
|
@ -2,6 +2,7 @@
|
||||||
@import "vendor/normalize";
|
@import "vendor/normalize";
|
||||||
@import "vendor/normalize-ext";
|
@import "vendor/normalize-ext";
|
||||||
@import "vendor/pikaday";
|
@import "vendor/pikaday";
|
||||||
|
@import "vendor/rotate-center";
|
||||||
@import "vendor/tippy";
|
@import "vendor/tippy";
|
||||||
@import "vendor/svg-arrow";
|
@import "vendor/svg-arrow";
|
||||||
@import "common/whcm";
|
@import "common/whcm";
|
||||||
|
|
|
@ -58,6 +58,7 @@
|
||||||
@import "tooltip";
|
@import "tooltip";
|
||||||
@import "topic-admin-menu";
|
@import "topic-admin-menu";
|
||||||
@import "topic-post";
|
@import "topic-post";
|
||||||
|
@import "topic-summary";
|
||||||
@import "topic";
|
@import "topic";
|
||||||
@import "upload";
|
@import "upload";
|
||||||
@import "user-badges";
|
@import "user-badges";
|
||||||
|
|
|
@ -838,27 +838,6 @@ aside.quote {
|
||||||
margin-left: 0.25em;
|
margin-left: 0.25em;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
.toggle-summary {
|
|
||||||
.summarization-buttons {
|
|
||||||
display: flex;
|
|
||||||
}
|
|
||||||
|
|
||||||
.placeholder-summary {
|
|
||||||
padding-top: 0.5em;
|
|
||||||
}
|
|
||||||
|
|
||||||
.placeholder-summary-text {
|
|
||||||
display: inline-block;
|
|
||||||
height: 1em;
|
|
||||||
margin-top: 0.6em;
|
|
||||||
width: 100%;
|
|
||||||
}
|
|
||||||
|
|
||||||
.summarized-on {
|
|
||||||
text-align: right;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
.topic-avatar,
|
.topic-avatar,
|
||||||
|
|
|
@ -0,0 +1,38 @@
|
||||||
|
.topic-map {
|
||||||
|
.toggle-summary {
|
||||||
|
.summarization-buttons {
|
||||||
|
display: flex;
|
||||||
|
}
|
||||||
|
|
||||||
|
.placeholder-summary {
|
||||||
|
padding-top: 0.5em;
|
||||||
|
}
|
||||||
|
|
||||||
|
.placeholder-summary-text {
|
||||||
|
display: inline-block;
|
||||||
|
height: 1em;
|
||||||
|
margin-top: 0.6em;
|
||||||
|
width: 100%;
|
||||||
|
}
|
||||||
|
|
||||||
|
.rotate-center {
|
||||||
|
-webkit-animation: rotate-center 3s cubic-bezier(0.68, -0.55, 0.265, 1.55)
|
||||||
|
0.5s infinite both;
|
||||||
|
animation: rotate-center 3s cubic-bezier(0.68, -0.55, 0.265, 1.55) 0.5s
|
||||||
|
infinite both;
|
||||||
|
}
|
||||||
|
|
||||||
|
.placeholder-generating-summary-text {
|
||||||
|
display: inline-block;
|
||||||
|
margin-left: 3px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.summarized-on {
|
||||||
|
text-align: right;
|
||||||
|
|
||||||
|
.model-used {
|
||||||
|
margin-left: 3px;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
|
@ -0,0 +1,32 @@
|
||||||
|
/* ----------------------------------------------
|
||||||
|
* Generated by Animista on 2023-7-17 8:32:34
|
||||||
|
* Licensed under FreeBSD License.
|
||||||
|
* See http://animista.net/license for more info.
|
||||||
|
* w: http://animista.net, t: @cssanimista
|
||||||
|
* ---------------------------------------------- */
|
||||||
|
|
||||||
|
/**
|
||||||
|
* ----------------------------------------
|
||||||
|
* animation rotate-center
|
||||||
|
* ----------------------------------------
|
||||||
|
*/
|
||||||
|
@-webkit-keyframes rotate-center {
|
||||||
|
0% {
|
||||||
|
-webkit-transform: rotate(0);
|
||||||
|
transform: rotate(0);
|
||||||
|
}
|
||||||
|
100% {
|
||||||
|
-webkit-transform: rotate(360deg);
|
||||||
|
transform: rotate(360deg);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
@keyframes rotate-center {
|
||||||
|
0% {
|
||||||
|
-webkit-transform: rotate(0);
|
||||||
|
transform: rotate(0);
|
||||||
|
}
|
||||||
|
100% {
|
||||||
|
-webkit-transform: rotate(360deg);
|
||||||
|
transform: rotate(360deg);
|
||||||
|
}
|
||||||
|
}
|
|
@ -2041,7 +2041,8 @@ en:
|
||||||
|
|
||||||
summary:
|
summary:
|
||||||
in_progress: "Summarizing topic using AI..."
|
in_progress: "Summarizing topic using AI..."
|
||||||
summarized_on: "Summarized with %{method} on %{date}"
|
summarized_on: "Summarized with AI on %{date}"
|
||||||
|
model_used: "AI used: %{model}"
|
||||||
enabled_description: "You're viewing this topic top replies: the most interesting posts as determined by the community."
|
enabled_description: "You're viewing this topic top replies: the most interesting posts as determined by the community."
|
||||||
description:
|
description:
|
||||||
one: "There is <b>%{count}</b> reply."
|
one: "There is <b>%{count}</b> reply."
|
||||||
|
|
Loading…
Reference in New Issue