sliding-sync/client/index.html

63 lines
2.8 KiB
HTML
Raw Permalink Normal View History

<html>
<head>
<title>Sync v3 experiments</title>
<link rel="stylesheet" href="styles.css">
<script src="index.js" type="module"></script>
</head>
<body>
2022-02-22 18:24:35 +00:00
<div class="statsheader">
<span id="txrx" title="Total sizes of uncompressed HTTP bodies without HTTP headers">0 KB Tx / 0 KB Rx</span>
<div id="listgraph" title="Room lists tracked, blue=window yellow=SYNC green=INSERT red=DELETE cyan=UPDATE dark red=INVALIDATE"></div>
2022-02-22 18:24:35 +00:00
</div>
<div class="page">
2021-10-06 13:20:26 +01:00
<div class="leftSide">
<div id="roomlistcontainer">
</div>
</div>
<div class="rightSide">
2021-10-06 13:20:26 +01:00
<div class="header">
<input id="accessToken" type="password" placeholder="matrix.org access token" />
<input id="syncButton" type="button" value="Start Sync" />
<input id="debugButton" type="button" value="DEBUG" style="display: none;" />
2021-10-06 13:20:26 +01:00
<span id="errorMsg"></span>
<input id="roomfilter" type="text" placeholder="Filter rooms..." />
</div>
<div class="roomheading">
<img class="roomavatar" decoding="async" id="selectedroomavatar" src="/client/placeholder.svg"/>
<span id="selectedroomname">Select a room</span>
<div id="selectedroomtopic">
</div>
</div>
2021-10-06 13:20:26 +01:00
<div id="messages"></div>
<div id="roomfooter">
<input id="sendmessageinput" type="text" placeholder="Enter text or commands /me /invite /join /leave" spellcheck="true" />
</div>
</div>
<template id="roomCellTemplate">
<div class="roomcell">
<img class="roomavatar" decoding="async" src="/client/placeholder.svg"/>
<div class="roominfo">
2021-10-08 14:15:36 +01:00
<span class="unreadcount"></span>
<span class="roomname"></span>
<span class="roomtimestamp"></span>
2021-09-28 18:33:10 +01:00
<div>
<span class="roomsender"></span>
<span class="roomcontent"></span>
2021-09-28 18:33:10 +01:00
</div>
</div>
</div>
</template>
<template id="messagetemplate">
<div>
<div class="msgheader">
<div class="msgsender">Alice</div>
<div class="msgtimestamp">11/06/1999 11:22:33</div>
</div>
<div class="msgcontent">Lorem Ipsum Dolor...</div>
</div>
</template>
</div>
</body>
</html>