improve syncing and storing

This commit is contained in:
grimhilt
2023-03-29 16:23:24 +02:00
parent 94c7a7176b
commit e0482eb511
15 changed files with 245 additions and 347 deletions

View File

@@ -12,9 +12,9 @@ export default class Room {
if (!thread) {
this.threads = [
new Room({id:12, user: this.user, roomName: "thread 1", mailbboxId:this.mailboxId}, true),
new Room({id:12, user: this.user, roomName: "thread 1", mailbboxId:this.mailboxId}, true),
new Room({id:12, user: this.user, roomName: "thread 1", mailbboxId:this.mailboxId}, true),
// new Room({id:12, user: this.user, roomName: "thread 1", mailbboxId:this.mailboxId}, true),
// new Room({id:12, user: this.user, roomName: "thread 1", mailbboxId:this.mailboxId}, true),
// new Room({id:12, user: this.user, roomName: "thread 1", mailbboxId:this.mailboxId}, true),
];
} else {
this.threads = [];

View File

@@ -78,6 +78,7 @@ iframe {
max-height: 300px;
width: 100%;
max-width: 750px; /* template width being 600px to 640px up to 750px (experiment and test) */
background-color: rgb(234, 234, 234);;
}
.left,

View File

@@ -31,8 +31,8 @@ console.log(props.thread)
}
.room::before {
content: "|";
border-right: 1px solid white;
margin: 0 10px;
color: white;
content: "";
}
</style>