Page Menu
Home
Phabricator
Search
Configure Global Search
Log In
Files
F3359973
D3889.id12216.diff
No One
Temporary
Actions
View File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Award Token
Flag For Later
Size
1 KB
Referenced Files
None
Subscribers
None
D3889.id12216.diff
View Options
diff --git a/web/assets.js b/web/assets.js
new file mode 100644
--- /dev/null
+++ b/web/assets.js
@@ -0,0 +1,8 @@
+// @flow
+
+export const assetCacheURLPrefix = 'https://dh9fld3hutpxf.cloudfront.net';
+
+// Background Illustration
+export const backgroundIllustrationFileName = 'background-illustration.svg';
+export const backgroundIllustrationHeight = '100px';
+export const backgroundIllustrationWidth = '133px';
diff --git a/web/chat/chat-thread-list.css b/web/chat/chat-thread-list.css
--- a/web/chat/chat-thread-list.css
+++ b/web/chat/chat-thread-list.css
@@ -294,8 +294,14 @@
height: 6px;
}
-div.emptyItem {
- padding: 10px;
+div.emptyItemContainer {
+ display: flex;
+ flex-direction: column;
+ align-items: center;
+}
+
+div.emptyItemText {
+ padding: 16px;
font-size: 16px;
text-align: center;
white-space: pre-wrap;
diff --git a/web/chat/chat-thread-list.react.js b/web/chat/chat-thread-list.react.js
--- a/web/chat/chat-thread-list.react.js
+++ b/web/chat/chat-thread-list.react.js
@@ -5,6 +5,12 @@
import { emptyItemText } from 'lib/shared/thread-utils';
+import {
+ assetCacheURLPrefix,
+ backgroundIllustrationFileName,
+ backgroundIllustrationHeight,
+ backgroundIllustrationWidth,
+} from '../assets';
import Search from '../components/search.react';
import ChatThreadListItem from './chat-thread-list-item.react';
import css from './chat-thread-list.css';
@@ -47,7 +53,16 @@
}
function EmptyItem() {
- return <div className={css.emptyItem}>{emptyItemText}</div>;
+ return (
+ <div className={css.emptyItemContainer}>
+ <img
+ src={`${assetCacheURLPrefix}/${backgroundIllustrationFileName}`}
+ height={backgroundIllustrationHeight}
+ width={backgroundIllustrationWidth}
+ />
+ <div className={css.emptyItemText}>{emptyItemText}</div>
+ </div>
+ );
}
export default ChatThreadList;
File Metadata
Details
Attached
Mime Type
text/plain
Expires
Mon, Nov 25, 11:47 AM (22 h, 22 m)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
2579100
Default Alt Text
D3889.id12216.diff (1 KB)
Attached To
Mode
D3889: [web] Add background illustration to background tab
Attached
Detach File
Event Timeline
Log In to Comment