Page Menu
Home
Phabricator
Search
Configure Global Search
Log In
Files
F3359808
D3889.id12146.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.id12146.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,4 @@
+// @flow
+
+export const assetCacheURLPrefix = 'https://dh9fld3hutpxf.cloudfront.net';
+export const backgroundIllustrationFileName = 'background-illustration.svg';
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,13 @@
height: 6px;
}
-div.emptyItem {
- padding: 10px;
+div.emptyItemContainer {
+ display: flex;
+ flex-direction: column;
+}
+
+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,7 @@
import { emptyItemText } from 'lib/shared/thread-utils';
+import { assetCacheURLPrefix, backgroundIllustrationFileName } 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 +48,12 @@
}
function EmptyItem() {
- return <div className={css.emptyItem}>{emptyItemText}</div>;
+ return (
+ <div className={css.emptyItemContainer}>
+ <img src={`${assetCacheURLPrefix}/${backgroundIllustrationFileName}`} />
+ <div className={css.emptyItemText}>{emptyItemText}</div>
+ </div>
+ );
}
export default ChatThreadList;
File Metadata
Details
Attached
Mime Type
text/plain
Expires
Mon, Nov 25, 11:00 AM (21 h, 27 m)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
2579418
Default Alt Text
D3889.id12146.diff (1 KB)
Attached To
Mode
D3889: [web] Add background illustration to background tab
Attached
Detach File
Event Timeline
Log In to Comment