Fix spoiler content accidentally get leaked in document.title
- Also add quotes - Add comment to why use 64 chars (soft) limit
This commit is contained in:
parent
2ddc1b8005
commit
94dd2bf627
1 changed files with 12 additions and 5 deletions
|
@ -111,18 +111,25 @@ export default ({ id }) => {
|
||||||
}, [heroStatus]);
|
}, [heroStatus]);
|
||||||
const heroContentText = useMemo(() => {
|
const heroContentText = useMemo(() => {
|
||||||
if (!heroStatus) return '';
|
if (!heroStatus) return '';
|
||||||
const { content } = heroStatus;
|
const { spoilerText, content } = heroStatus;
|
||||||
const div = document.createElement('div');
|
let text;
|
||||||
div.innerHTML = content;
|
if (spoilerText) {
|
||||||
let text = div.innerText.trim();
|
text = spoilerText;
|
||||||
|
} else {
|
||||||
|
const div = document.createElement('div');
|
||||||
|
div.innerHTML = content;
|
||||||
|
text = div.innerText.trim();
|
||||||
|
}
|
||||||
if (text.length > 64) {
|
if (text.length > 64) {
|
||||||
|
// "The title should ideally be less than 64 characters in length"
|
||||||
|
// https://www.w3.org/Provider/Style/TITLE.html
|
||||||
text = text.slice(0, 64) + '…';
|
text = text.slice(0, 64) + '…';
|
||||||
}
|
}
|
||||||
return text;
|
return text;
|
||||||
}, [heroStatus]);
|
}, [heroStatus]);
|
||||||
useTitle(
|
useTitle(
|
||||||
heroDisplayName && heroContentText
|
heroDisplayName && heroContentText
|
||||||
? `${heroDisplayName}: ${heroContentText}`
|
? `${heroDisplayName}: "${heroContentText}"`
|
||||||
: 'Status',
|
: 'Status',
|
||||||
);
|
);
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue