@ -1,4 +1,3 @@
Placeholder component:
Placeholder component:
```jsx
```jsx
@ -17,21 +16,17 @@ const outgoing = new Whisper.Message({
body: 'How are you doing this fine day?',
body: 'How are you doing this fine day?',
sent_at: Date.now() - 18000,
sent_at: Date.now() - 18000,
});
});
const incoming = new Whisper.Message(Object.assign({}, outgoing.attributes, {
const incoming = new Whisper.Message(
source: '+12025550003',
Object.assign({}, outgoing.attributes, {
type: 'incoming',
source: '+12025550003',
}));
type: 'incoming',
})
);
const View = Whisper.MessageView;
const View = Whisper.MessageView;
< util.ConversationContext theme = {util.theme} >
< util.ConversationContext theme = {util.theme} >
< util.BackboneWrapper
< util.BackboneWrapper View = {View} options = {{ model: incoming } } / >
View={View}
< util.BackboneWrapper View = {View} options = {{ model: outgoing } } / >
options={{ model: incoming }}
< / util.ConversationContext > ;
/>
< util.BackboneWrapper
View={View}
options={{ model: outgoing }}
/>
< / util.ConversationContext >
```
```
### In a group conversation
### In a group conversation
@ -42,21 +37,17 @@ const outgoing = new Whisper.Message({
body: 'How are you doing this fine day?',
body: 'How are you doing this fine day?',
sent_at: Date.now() - 200000,
sent_at: Date.now() - 200000,
});
});
const incoming = new Whisper.Message(Object.assign({}, outgoing.attributes, {
const incoming = new Whisper.Message(
source: '+12025550003',
Object.assign({}, outgoing.attributes, {
type: 'incoming',
source: '+12025550003',
}));
type: 'incoming',
})
);
const View = Whisper.MessageView;
const View = Whisper.MessageView;
< util.ConversationContext theme = {util.theme} type = "group" >
< util.ConversationContext theme = {util.theme} type = "group" >
< util.BackboneWrapper
< util.BackboneWrapper View = {View} options = {{ model: incoming } } / >
View={View}
< util.BackboneWrapper View = {View} options = {{ model: outgoing } } / >
options={{ model: incoming }}
< / util.ConversationContext > ;
/>
< util.BackboneWrapper
View={View}
options={{ model: outgoing }}
/>
< / util.ConversationContext >
```
```
### With an error
### With an error
@ -72,22 +63,18 @@ const outgoing = new Whisper.Message({
sent_at: Date.now() - 200000,
sent_at: Date.now() - 200000,
errors: [error],
errors: [error],
});
});
const incoming = new Whisper.Message(Object.assign({}, outgoing.attributes, {
const incoming = new Whisper.Message(
source: '+12025550003',
Object.assign({}, outgoing.attributes, {
type: 'incoming',
source: '+12025550003',
body: null,
type: 'incoming',
}));
body: null,
})
);
const View = Whisper.MessageView;
const View = Whisper.MessageView;
< util.ConversationContext theme = {util.theme} >
< util.ConversationContext theme = {util.theme} >
< util.BackboneWrapper
< util.BackboneWrapper View = {View} options = {{ model: incoming } } / >
View={View}
< util.BackboneWrapper View = {View} options = {{ model: outgoing } } / >
options={{ model: incoming }}
< / util.ConversationContext > ;
/>
< util.BackboneWrapper
View={View}
options={{ model: outgoing }}
/>
< / util.ConversationContext >
```
```
#### Network error (outgoing only)
#### Network error (outgoing only)
@ -103,12 +90,9 @@ const outgoing = new Whisper.Message({
body: "This message won't get through...",
body: "This message won't get through...",
});
});
const View = Whisper.MessageView;
const View = Whisper.MessageView;
< util.ConversationContext theme = {util.theme} type = "group" >
< util.ConversationContext theme = {util.theme} type = "group" >
< util.BackboneWrapper
< util.BackboneWrapper View = {View} options = {{ model: outgoing } } / >
View={View}
< / util.ConversationContext > ;
options={{ model: outgoing }}
/>
< / util.ConversationContext >
```
```
#### Network error, partial send in group (outgoing only)
#### Network error, partial send in group (outgoing only)
@ -125,12 +109,9 @@ const outgoing = new Whisper.Message({
body: "This message won't get through...",
body: "This message won't get through...",
});
});
const View = Whisper.MessageView;
const View = Whisper.MessageView;
< util.ConversationContext theme = {util.theme} type = "group" >
< util.ConversationContext theme = {util.theme} type = "group" >
< util.BackboneWrapper
< util.BackboneWrapper View = {View} options = {{ model: outgoing } } / >
View={View}
< / util.ConversationContext > ;
options={{ model: outgoing }}
/>
< / util.ConversationContext >
```
```
#### No message contents
#### No message contents
@ -140,22 +121,18 @@ const outgoing = new Whisper.Message({
type: 'outgoing',
type: 'outgoing',
sent_at: Date.now() - 200000,
sent_at: Date.now() - 200000,
});
});
const incoming = new Whisper.Message(Object.assign({}, outgoing.attributes, {
const incoming = new Whisper.Message(
source: '+12025550003',
Object.assign({}, outgoing.attributes, {
type: 'incoming',
source: '+12025550003',
}));
type: 'incoming',
})
);
const View = Whisper.MessageView;
const View = Whisper.MessageView;
< util.ConversationContext theme = {util.theme} >
< util.ConversationContext theme = {util.theme} >
< util.BackboneWrapper
< util.BackboneWrapper View = {View} options = {{ model: incoming } } / >
View={View}
< util.BackboneWrapper View = {View} options = {{ model: outgoing } } / >
options={{ model: incoming }}
< / util.ConversationContext > ;
/>
< util.BackboneWrapper
View={View}
options={{ model: outgoing }}
/>
< / util.ConversationContext >
```
```
### Disappearing
### Disappearing
@ -168,22 +145,18 @@ const outgoing = new Whisper.Message({
expirationStartTimestamp: Date.now() - 1000,
expirationStartTimestamp: Date.now() - 1000,
body: 'This message will self-destruct in two minutes',
body: 'This message will self-destruct in two minutes',
});
});
const incoming = new Whisper.Message(Object.assign({}, outgoing.attributes, {
const incoming = new Whisper.Message(
source: '+12025550003',
Object.assign({}, outgoing.attributes, {
type: 'incoming',
source: '+12025550003',
}));
type: 'incoming',
})
);
const View = Whisper.MessageView;
const View = Whisper.MessageView;
< util.ConversationContext theme = {util.theme} >
< util.ConversationContext theme = {util.theme} >
< util.BackboneWrapper
< util.BackboneWrapper View = {View} options = {{ model: incoming } } / >
View={View}
< util.BackboneWrapper View = {View} options = {{ model: outgoing } } / >
options={{ model: incoming }}
< / util.ConversationContext > ;
/>
< util.BackboneWrapper
View={View}
options={{ model: outgoing }}
/>
< / util.ConversationContext >
```
```
### Notfications
### Notfications
@ -200,7 +173,7 @@ const fromOther = new Whisper.Message({
expirationStartTimestamp: Date.now() - 1000,
expirationStartTimestamp: Date.now() - 1000,
expirationTimerUpdate: {
expirationTimerUpdate: {
source: '+12025550003',
source: '+12025550003',
}
},
});
});
const fromUpdate = new Whisper.Message({
const fromUpdate = new Whisper.Message({
type: 'incoming',
type: 'incoming',
@ -212,7 +185,7 @@ const fromUpdate = new Whisper.Message({
expirationTimerUpdate: {
expirationTimerUpdate: {
fromSync: true,
fromSync: true,
source: util.ourNumber,
source: util.ourNumber,
}
},
});
});
const fromMe = new Whisper.Message({
const fromMe = new Whisper.Message({
type: 'incoming',
type: 'incoming',
@ -223,23 +196,14 @@ const fromMe = new Whisper.Message({
expirationStartTimestamp: Date.now() - 1000,
expirationStartTimestamp: Date.now() - 1000,
expirationTimerUpdate: {
expirationTimerUpdate: {
source: util.ourNumber,
source: util.ourNumber,
}
},
});
});
const View = Whisper.ExpirationTimerUpdateView;
const View = Whisper.ExpirationTimerUpdateView;
< util.ConversationContext theme = {util.theme} >
< util.ConversationContext theme = {util.theme} >
< util.BackboneWrapper
< util.BackboneWrapper View = {View} options = {{ model: fromOther } } / >
View={View}
< util.BackboneWrapper View = {View} options = {{ model: fromUpdate } } / >
options={{ model: fromOther }}
< util.BackboneWrapper View = {View} options = {{ model: fromMe } } / >
/>
< / util.ConversationContext > ;
< util.BackboneWrapper
View={View}
options={{ model: fromUpdate }}
/>
< util.BackboneWrapper
View={View}
options={{ model: fromMe }}
/>
< / util.ConversationContext >
```
```
#### Safety number change
#### Safety number change
@ -251,12 +215,9 @@ const incoming = new Whisper.Message({
key_changed: '+12025550003',
key_changed: '+12025550003',
});
});
const View = Whisper.KeyChangeView;
const View = Whisper.KeyChangeView;
< util.ConversationContext theme = {util.theme} >
< util.ConversationContext theme = {util.theme} >
< util.BackboneWrapper
< util.BackboneWrapper View = {View} options = {{ model: incoming } } / >
View={View}
< / util.ConversationContext > ;
options={{ model: incoming }}
/>
< / util.ConversationContext >
```
```
#### Marking as verified
#### Marking as verified
@ -277,16 +238,10 @@ const local = new Whisper.Message({
});
});
const View = Whisper.VerifiedChangeView;
const View = Whisper.VerifiedChangeView;
< util.ConversationContext theme = {util.theme} >
< util.ConversationContext theme = {util.theme} >
< util.BackboneWrapper
< util.BackboneWrapper View = {View} options = {{ model: fromPrimary } } / >
View={View}
< util.BackboneWrapper View = {View} options = {{ model: local } } / >
options={{ model: fromPrimary }}
< / util.ConversationContext > ;
/>
< util.BackboneWrapper
View={View}
options={{ model: local }}
/>
< / util.ConversationContext >
```
```
#### Marking as not verified
#### Marking as not verified
@ -305,16 +260,10 @@ const local = new Whisper.Message({
});
});
const View = Whisper.VerifiedChangeView;
const View = Whisper.VerifiedChangeView;
< util.ConversationContext theme = {util.theme} >
< util.ConversationContext theme = {util.theme} >
< util.BackboneWrapper
< util.BackboneWrapper View = {View} options = {{ model: fromPrimary } } / >
View={View}
< util.BackboneWrapper View = {View} options = {{ model: local } } / >
options={{ model: fromPrimary }}
< / util.ConversationContext > ;
/>
< util.BackboneWrapper
View={View}
options={{ model: local }}
/>
< / util.ConversationContext >
```
```
#### Group update
#### Group update
@ -324,29 +273,21 @@ const outgoing = new Whisper.Message({
type: 'outgoing',
type: 'outgoing',
sent_at: Date.now() - 200000,
sent_at: Date.now() - 200000,
group_update: {
group_update: {
joined: [
joined: ['+12025550007', '+12025550008', '+12025550009'],
'+12025550007',
'+12025550008',
'+12025550009',
],
},
},
});
});
const incoming = new Whisper.Message(Object.assign({}, outgoing.attributes, {
const incoming = new Whisper.Message(
source: '+12025550003',
Object.assign({}, outgoing.attributes, {
type: 'incoming',
source: '+12025550003',
}));
type: 'incoming',
})
);
const View = Whisper.MessageView;
const View = Whisper.MessageView;
< util.ConversationContext theme = {util.theme} >
< util.ConversationContext theme = {util.theme} >
< util.BackboneWrapper
< util.BackboneWrapper View = {View} options = {{ model: incoming } } / >
View={View}
< util.BackboneWrapper View = {View} options = {{ model: outgoing } } / >
options={{ model: incoming }}
< / util.ConversationContext > ;
/>
< util.BackboneWrapper
View={View}
options={{ model: outgoing }}
/>
< / util.ConversationContext >
```
```
#### End session
#### End session
@ -357,22 +298,18 @@ const outgoing = new Whisper.Message({
sent_at: Date.now() - 200000,
sent_at: Date.now() - 200000,
flags: textsecure.protobuf.DataMessage.Flags.END_SESSION,
flags: textsecure.protobuf.DataMessage.Flags.END_SESSION,
});
});
const incoming = new Whisper.Message(Object.assign({}, outgoing.attributes, {
const incoming = new Whisper.Message(
source: '+12025550003',
Object.assign({}, outgoing.attributes, {
type: 'incoming',
source: '+12025550003',
}));
type: 'incoming',
})
);
const View = Whisper.MessageView;
const View = Whisper.MessageView;
< util.ConversationContext theme = {util.theme} >
< util.ConversationContext theme = {util.theme} >
< util.BackboneWrapper
< util.BackboneWrapper View = {View} options = {{ model: incoming } } / >
View={View}
< util.BackboneWrapper View = {View} options = {{ model: outgoing } } / >
options={{ model: incoming }}
< / util.ConversationContext > ;
/>
< util.BackboneWrapper
View={View}
options={{ model: outgoing }}
/>
< / util.ConversationContext >
```
```
### With an attachment
### With an attachment
@ -384,27 +321,25 @@ const outgoing = new Whisper.Message({
type: 'outgoing',
type: 'outgoing',
body: 'I am pretty confused about Pi.',
body: 'I am pretty confused about Pi.',
sent_at: Date.now() - 18000000,
sent_at: Date.now() - 18000000,
attachments: [{
attachments: [
data: util.gif,
{
fileName: 'pi.gif',
data: util.gif,
contentType: 'image/gif',
fileName: 'pi.gif',
}],
contentType: 'image/gif',
},
],
});
});
const incoming = new Whisper.Message(Object.assign({}, outgoing.attributes, {
const incoming = new Whisper.Message(
source: '+12025550003',
Object.assign({}, outgoing.attributes, {
type: 'incoming',
source: '+12025550003',
}));
type: 'incoming',
})
);
const View = Whisper.MessageView;
const View = Whisper.MessageView;
< util.ConversationContext theme = {util.theme} >
< util.ConversationContext theme = {util.theme} >
< util.BackboneWrapper
< util.BackboneWrapper View = {View} options = {{ model: incoming } } / >
View={View}
< util.BackboneWrapper View = {View} options = {{ model: outgoing } } / >
options={{ model: incoming }}
< / util.ConversationContext > ;
/>
< util.BackboneWrapper
View={View}
options={{ model: outgoing }}
/>
< / util.ConversationContext >
```
```
#### Image
#### Image
@ -413,27 +348,25 @@ const View = Whisper.MessageView;
const outgoing = new Whisper.Message({
const outgoing = new Whisper.Message({
type: 'outgoing',
type: 'outgoing',
sent_at: Date.now() - 18000000,
sent_at: Date.now() - 18000000,
attachments: [{
attachments: [
data: util.gif,
{
fileName: 'pi.gif',
data: util.gif,
contentType: 'image/gif',
fileName: 'pi.gif',
}],
contentType: 'image/gif',
},
],
});
});
const incoming = new Whisper.Message(Object.assign({}, outgoing.attributes, {
const incoming = new Whisper.Message(
source: '+12025550003',
Object.assign({}, outgoing.attributes, {
type: 'incoming',
source: '+12025550003',
}));
type: 'incoming',
})
);
const View = Whisper.MessageView;
const View = Whisper.MessageView;
< util.ConversationContext theme = {util.theme} >
< util.ConversationContext theme = {util.theme} >
< util.BackboneWrapper
< util.BackboneWrapper View = {View} options = {{ model: incoming } } / >
View={View}
< util.BackboneWrapper View = {View} options = {{ model: outgoing } } / >
options={{ model: incoming }}
< / util.ConversationContext > ;
/>
< util.BackboneWrapper
View={View}
options={{ model: outgoing }}
/>
< / util.ConversationContext >
```
```
#### Image with portrait aspect ratio
#### Image with portrait aspect ratio
@ -442,30 +375,27 @@ const View = Whisper.MessageView;
const outgoing = new Whisper.Message({
const outgoing = new Whisper.Message({
type: 'outgoing',
type: 'outgoing',
sent_at: Date.now() - 18000000,
sent_at: Date.now() - 18000000,
attachments: [{
attachments: [
data: util.portraitYellow,
{
fileName: 'portraitYellow.png',
data: util.portraitYellow,
contentType: 'image/png',
fileName: 'portraitYellow.png',
}],
contentType: 'image/png',
},
],
});
});
const incoming = new Whisper.Message(Object.assign({}, outgoing.attributes, {
const incoming = new Whisper.Message(
source: '+12025550003',
Object.assign({}, outgoing.attributes, {
type: 'incoming',
source: '+12025550003',
}));
type: 'incoming',
})
);
const View = Whisper.MessageView;
const View = Whisper.MessageView;
< util.ConversationContext theme = {util.theme} >
< util.ConversationContext theme = {util.theme} >
< util.BackboneWrapper
< util.BackboneWrapper View = {View} options = {{ model: incoming } } / >
View={View}
< util.BackboneWrapper View = {View} options = {{ model: outgoing } } / >
options={{ model: incoming }}
< / util.ConversationContext > ;
/>
< util.BackboneWrapper
View={View}
options={{ model: outgoing }}
/>
< / util.ConversationContext >
```
```
#### Image with portrait aspect ratio and caption
#### Image with portrait aspect ratio and caption
```jsx
```jsx
@ -473,27 +403,25 @@ const outgoing = new Whisper.Message({
type: 'outgoing',
type: 'outgoing',
body: 'This is an odd yellow bar. Cool, huh?',
body: 'This is an odd yellow bar. Cool, huh?',
sent_at: Date.now() - 18000000,
sent_at: Date.now() - 18000000,
attachments: [{
attachments: [
data: util.portraitYellow,
{
fileName: 'portraitYellow.png',
data: util.portraitYellow,
contentType: 'image/png',
fileName: 'portraitYellow.png',
}],
contentType: 'image/png',
},
],
});
});
const incoming = new Whisper.Message(Object.assign({}, outgoing.attributes, {
const incoming = new Whisper.Message(
source: '+12025550003',
Object.assign({}, outgoing.attributes, {
type: 'incoming',
source: '+12025550003',
}));
type: 'incoming',
})
);
const View = Whisper.MessageView;
const View = Whisper.MessageView;
< util.ConversationContext theme = {util.theme} >
< util.ConversationContext theme = {util.theme} >
< util.BackboneWrapper
< util.BackboneWrapper View = {View} options = {{ model: incoming } } / >
View={View}
< util.BackboneWrapper View = {View} options = {{ model: outgoing } } / >
options={{ model: incoming }}
< / util.ConversationContext > ;
/>
< util.BackboneWrapper
View={View}
options={{ model: outgoing }}
/>
< / util.ConversationContext >
```
```
#### Image with landscape aspect ratio
#### Image with landscape aspect ratio
@ -502,27 +430,25 @@ const View = Whisper.MessageView;
const outgoing = new Whisper.Message({
const outgoing = new Whisper.Message({
type: 'outgoing',
type: 'outgoing',
sent_at: Date.now() - 18000000,
sent_at: Date.now() - 18000000,
attachments: [{
attachments: [
data: util.landscapePurple,
{
fileName: 'landscapePurple.jpg',
data: util.landscapePurple,
contentType: 'image/jpeg',
fileName: 'landscapePurple.jpg',
}],
contentType: 'image/jpeg',
},
],
});
});
const incoming = new Whisper.Message(Object.assign({}, outgoing.attributes, {
const incoming = new Whisper.Message(
source: '+12025550003',
Object.assign({}, outgoing.attributes, {
type: 'incoming',
source: '+12025550003',
}));
type: 'incoming',
})
);
const View = Whisper.MessageView;
const View = Whisper.MessageView;
< util.ConversationContext theme = {util.theme} >
< util.ConversationContext theme = {util.theme} >
< util.BackboneWrapper
< util.BackboneWrapper View = {View} options = {{ model: incoming } } / >
View={View}
< util.BackboneWrapper View = {View} options = {{ model: outgoing } } / >
options={{ model: incoming }}
< / util.ConversationContext > ;
/>
< util.BackboneWrapper
View={View}
options={{ model: outgoing }}
/>
< / util.ConversationContext >
```
```
#### Image with landscape aspect ratio and caption
#### Image with landscape aspect ratio and caption
@ -532,27 +458,25 @@ const outgoing = new Whisper.Message({
type: 'outgoing',
type: 'outgoing',
body: "An interesting horizontal bar. It's art.",
body: "An interesting horizontal bar. It's art.",
sent_at: Date.now() - 18000000,
sent_at: Date.now() - 18000000,
attachments: [{
attachments: [
data: util.landscapePurple,
{
fileName: 'landscapePurple.jpg',
data: util.landscapePurple,
contentType: 'image/jpeg',
fileName: 'landscapePurple.jpg',
}],
contentType: 'image/jpeg',
},
],
});
});
const incoming = new Whisper.Message(Object.assign({}, outgoing.attributes, {
const incoming = new Whisper.Message(
source: '+12025550003',
Object.assign({}, outgoing.attributes, {
type: 'incoming',
source: '+12025550003',
}));
type: 'incoming',
})
);
const View = Whisper.MessageView;
const View = Whisper.MessageView;
< util.ConversationContext theme = {util.theme} >
< util.ConversationContext theme = {util.theme} >
< util.BackboneWrapper
< util.BackboneWrapper View = {View} options = {{ model: incoming } } / >
View={View}
< util.BackboneWrapper View = {View} options = {{ model: outgoing } } / >
options={{ model: incoming }}
< / util.ConversationContext > ;
/>
< util.BackboneWrapper
View={View}
options={{ model: outgoing }}
/>
< / util.ConversationContext >
```
```
#### Video with caption
#### Video with caption
@ -562,27 +486,25 @@ const outgoing = new Whisper.Message({
type: 'outgoing',
type: 'outgoing',
body: "Beautiful, isn't it?",
body: "Beautiful, isn't it?",
sent_at: Date.now() - 10000,
sent_at: Date.now() - 10000,
attachments: [{
attachments: [
data: util.mp4,
{
fileName: 'freezing_bubble.mp4',
data: util.mp4,
contentType: 'video/mp4',
fileName: 'freezing_bubble.mp4',
}],
contentType: 'video/mp4',
},
],
});
});
const incoming = new Whisper.Message(Object.assign({}, outgoing.attributes, {
const incoming = new Whisper.Message(
source: '+12025550003',
Object.assign({}, outgoing.attributes, {
type: 'incoming',
source: '+12025550003',
}));
type: 'incoming',
})
);
const View = Whisper.MessageView;
const View = Whisper.MessageView;
< util.ConversationContext theme = {util.theme} >
< util.ConversationContext theme = {util.theme} >
< util.BackboneWrapper
< util.BackboneWrapper View = {View} options = {{ model: incoming } } / >
View={View}
< util.BackboneWrapper View = {View} options = {{ model: outgoing } } / >
options={{ model: incoming }}
< / util.ConversationContext > ;
/>
< util.BackboneWrapper
View={View}
options={{ model: outgoing }}
/>
< / util.ConversationContext >
```
```
#### Video
#### Video
@ -591,27 +513,25 @@ const View = Whisper.MessageView;
const outgoing = new Whisper.Message({
const outgoing = new Whisper.Message({
type: 'outgoing',
type: 'outgoing',
sent_at: Date.now() - 10000,
sent_at: Date.now() - 10000,
attachments: [{
attachments: [
data: util.mp4,
{
fileName: 'freezing_bubble.mp4',
data: util.mp4,
contentType: 'video/mp4',
fileName: 'freezing_bubble.mp4',
}],
contentType: 'video/mp4',
},
],
});
});
const incoming = new Whisper.Message(Object.assign({}, outgoing.attributes, {
const incoming = new Whisper.Message(
source: '+12025550003',
Object.assign({}, outgoing.attributes, {
type: 'incoming',
source: '+12025550003',
}));
type: 'incoming',
})
);
const View = Whisper.MessageView;
const View = Whisper.MessageView;
< util.ConversationContext theme = {util.theme} >
< util.ConversationContext theme = {util.theme} >
< util.BackboneWrapper
< util.BackboneWrapper View = {View} options = {{ model: incoming } } / >
View={View}
< util.BackboneWrapper View = {View} options = {{ model: outgoing } } / >
options={{ model: incoming }}
< / util.ConversationContext > ;
/>
< util.BackboneWrapper
View={View}
options={{ model: outgoing }}
/>
< / util.ConversationContext >
```
```
#### Audio with caption
#### Audio with caption
@ -621,27 +541,25 @@ const outgoing = new Whisper.Message({
type: 'outgoing',
type: 'outgoing',
body: 'This is a nice song',
body: 'This is a nice song',
sent_at: Date.now() - 15000,
sent_at: Date.now() - 15000,
attachments: [{
attachments: [
data: util.mp3,
{
fileName: 'agnus_dei.mp3',
data: util.mp3,
contentType: 'audio/mp3',
fileName: 'agnus_dei.mp3',
}],
contentType: 'audio/mp3',
},
],
});
});
const incoming = new Whisper.Message(Object.assign({}, outgoing.attributes, {
const incoming = new Whisper.Message(
source: '+12025550003',
Object.assign({}, outgoing.attributes, {
type: 'incoming',
source: '+12025550003',
}));
type: 'incoming',
})
);
const View = Whisper.MessageView;
const View = Whisper.MessageView;
< util.ConversationContext theme = {util.theme} >
< util.ConversationContext theme = {util.theme} >
< util.BackboneWrapper
< util.BackboneWrapper View = {View} options = {{ model: incoming } } / >
View={View}
< util.BackboneWrapper View = {View} options = {{ model: outgoing } } / >
options={{ model: incoming }}
< / util.ConversationContext > ;
/>
< util.BackboneWrapper
View={View}
options={{ model: outgoing }}
/>
< / util.ConversationContext >
```
```
#### Audio
#### Audio
@ -650,27 +568,25 @@ const View = Whisper.MessageView;
const outgoing = new Whisper.Message({
const outgoing = new Whisper.Message({
type: 'outgoing',
type: 'outgoing',
sent_at: Date.now() - 15000,
sent_at: Date.now() - 15000,
attachments: [{
attachments: [
data: util.mp3,
{
fileName: 'agnus_dei.mp3',
data: util.mp3,
contentType: 'audio/mp3',
fileName: 'agnus_dei.mp3',
}],
contentType: 'audio/mp3',
},
],
});
});
const incoming = new Whisper.Message(Object.assign({}, outgoing.attributes, {
const incoming = new Whisper.Message(
source: '+12025550003',
Object.assign({}, outgoing.attributes, {
type: 'incoming',
source: '+12025550003',
}));
type: 'incoming',
})
);
const View = Whisper.MessageView;
const View = Whisper.MessageView;
< util.ConversationContext theme = {util.theme} >
< util.ConversationContext theme = {util.theme} >
< util.BackboneWrapper
< util.BackboneWrapper View = {View} options = {{ model: incoming } } / >
View={View}
< util.BackboneWrapper View = {View} options = {{ model: outgoing } } / >
options={{ model: incoming }}
< / util.ConversationContext > ;
/>
< util.BackboneWrapper
View={View}
options={{ model: outgoing }}
/>
< / util.ConversationContext >
```
```
#### Voice message
#### Voice message
@ -679,28 +595,26 @@ const View = Whisper.MessageView;
const outgoing = new Whisper.Message({
const outgoing = new Whisper.Message({
type: 'outgoing',
type: 'outgoing',
sent_at: Date.now() - 15000,
sent_at: Date.now() - 15000,
attachments: [{
attachments: [
flags: textsecure.protobuf.AttachmentPointer.Flags.VOICE_MESSAGE,
{
data: util.mp3,
flags: textsecure.protobuf.AttachmentPointer.Flags.VOICE_MESSAGE,
fileName: 'agnus_dei.mp3',
data: util.mp3,
contentType: 'audio/mp3',
fileName: 'agnus_dei.mp3',
}],
contentType: 'audio/mp3',
},
],
});
});
const incoming = new Whisper.Message(Object.assign({}, outgoing.attributes, {
const incoming = new Whisper.Message(
source: '+12025550003',
Object.assign({}, outgoing.attributes, {
type: 'incoming',
source: '+12025550003',
}));
type: 'incoming',
})
);
const View = Whisper.MessageView;
const View = Whisper.MessageView;
< util.ConversationContext theme = {util.theme} >
< util.ConversationContext theme = {util.theme} >
< util.BackboneWrapper
< util.BackboneWrapper View = {View} options = {{ model: incoming } } / >
View={View}
< util.BackboneWrapper View = {View} options = {{ model: outgoing } } / >
options={{ model: incoming }}
< / util.ConversationContext > ;
/>
< util.BackboneWrapper
View={View}
options={{ model: outgoing }}
/>
< / util.ConversationContext >
```
```
#### Other file type with caption
#### Other file type with caption
@ -710,27 +624,25 @@ const outgoing = new Whisper.Message({
type: 'outgoing',
type: 'outgoing',
body: 'My manifesto is now complete!',
body: 'My manifesto is now complete!',
sent_at: Date.now() - 15000,
sent_at: Date.now() - 15000,
attachments: [{
attachments: [
data: util.txt,
{
fileName: 'lorum_ipsum.txt',
data: util.txt,
contentType: 'text/plain',
fileName: 'lorum_ipsum.txt',
}],
contentType: 'text/plain',
},
],
});
});
const incoming = new Whisper.Message(Object.assign({}, outgoing.attributes, {
const incoming = new Whisper.Message(
source: '+12025550003',
Object.assign({}, outgoing.attributes, {
type: 'incoming',
source: '+12025550003',
}));
type: 'incoming',
})
);
const View = Whisper.MessageView;
const View = Whisper.MessageView;
< util.ConversationContext theme = {util.theme} >
< util.ConversationContext theme = {util.theme} >
< util.BackboneWrapper
< util.BackboneWrapper View = {View} options = {{ model: incoming } } / >
View={View}
< util.BackboneWrapper View = {View} options = {{ model: outgoing } } / >
options={{ model: incoming }}
< / util.ConversationContext > ;
/>
< util.BackboneWrapper
View={View}
options={{ model: outgoing }}
/>
< / util.ConversationContext >
```
```
#### Other file type
#### Other file type
@ -739,25 +651,23 @@ const View = Whisper.MessageView;
const outgoing = new Whisper.Message({
const outgoing = new Whisper.Message({
type: 'outgoing',
type: 'outgoing',
sent_at: Date.now() - 15000,
sent_at: Date.now() - 15000,
attachments: [{
attachments: [
data: util.txt,
{
fileName: 'lorum_ipsum.txt',
data: util.txt,
contentType: 'text/plain',
fileName: 'lorum_ipsum.txt',
}],
contentType: 'text/plain',
},
],
});
});
const incoming = new Whisper.Message(Object.assign({}, outgoing.attributes, {
const incoming = new Whisper.Message(
source: '+12025550003',
Object.assign({}, outgoing.attributes, {
type: 'incoming',
source: '+12025550003',
}));
type: 'incoming',
})
);
const View = Whisper.MessageView;
const View = Whisper.MessageView;
< util.ConversationContext theme = {util.theme} >
< util.ConversationContext theme = {util.theme} >
< util.BackboneWrapper
< util.BackboneWrapper View = {View} options = {{ model: incoming } } / >
View={View}
< util.BackboneWrapper View = {View} options = {{ model: outgoing } } / >
options={{ model: incoming }}
< / util.ConversationContext > ;
/>
< util.BackboneWrapper
View={View}
options={{ model: outgoing }}
/>
< / util.ConversationContext >
```
```