選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

pico.js 9.5KB

5年前
5年前
5年前
5年前
5年前
5年前
5年前
5年前
5年前
5年前
5年前
5年前
5年前
5年前
5年前
5年前
5年前
5年前
5年前
5年前
5年前
5年前
5年前
5年前
5年前
5年前
5年前
5年前
5年前
5年前
5年前
5年前
5年前
5年前
5年前
5年前
5年前
5年前
5年前
5年前
5年前
5年前
5年前
5年前
5年前
5年前
5年前
5年前
5年前
5年前
5年前
5年前
5年前
5年前
5年前
5年前
5年前
5年前
5年前
5年前
5年前
5年前
5年前
5年前
5年前
5年前
5年前
5年前
5年前
5年前
5年前
5年前
5年前
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315
  1. const isLandscape = screen.width > screen.height
  2. const State = {
  3. username: null,
  4. websocket: null,
  5. online: [],
  6. posts: [],
  7. rpcs: {},
  8. media: {},
  9. }
  10. const markedOptions = {
  11. breaks: true,
  12. }
  13. marked.setOptions(markedOptions)
  14. /*
  15. *
  16. * SIGNALING
  17. *
  18. */
  19. const wire = (message) => State.websocket.send(JSON.stringify(message))
  20. const signal = (message) => dispatchEvent(new CustomEvent(message.kind, {detail: message}))
  21. const signalPeerStop = (username) => signal({kind: 'peerInfo', value: {type: 'stop'}, source: username})
  22. const listen = (kind, handler) => addEventListener(kind, handler)
  23. listen('login', ({detail}) => State.username = detail.value)
  24. listen('state', ({detail}) => Object.assign(State, detail))
  25. listen('post', ({detail}) => State.posts.push(detail))
  26. listen('peerInfo', (e) => onPeerInfo(e))
  27. const doNotLog = new Set(['login', 'state', 'post', 'peerInfo'])
  28. /*
  29. *
  30. * ALERTS
  31. *
  32. */
  33. State.unseen = 0
  34. listen('post', () => {State.unseen += !document.hasFocus(); updateTitle()})
  35. listen('focus', () => {State.unseen = 0; updateTitle()})
  36. const updateTitle = () => {
  37. document.title = `Pico.Chat` + (State.unseen ? ` (${State.unseen})` : ``)
  38. }
  39. /*
  40. *
  41. * WEBRTC
  42. *
  43. */
  44. const getOrCreateRpc = (username) => {
  45. if(State.username === username) {
  46. return
  47. }
  48. const myStream = State.media[State.username]
  49. if(!State.rpcs[username] && myStream) {
  50. const rpc = new RTCPeerConnection({iceServers: [{urls: 'stun:stun.sipgate.net:3478'}]})
  51. myStream.getTracks().forEach(track => rpc.addTrack(track, myStream))
  52. rpc.onicecandidate = ({candidate}) => {
  53. if(candidate) {
  54. wire({kind: 'peerInfo', value: {type: 'candidate', candidate}})
  55. }
  56. }
  57. rpc.ontrack = (e) => {
  58. State.media[username] = e.streams[0]
  59. m.redraw()
  60. }
  61. rpc.onclose = (e) => {
  62. console.log(username, e)
  63. }
  64. rpc.oniceconnectionstatechange = (e) => {
  65. m.redraw()
  66. }
  67. State.rpcs[username] = rpc
  68. }
  69. return State.rpcs[username]
  70. }
  71. const onPeerInfo = async ({detail: message}) => {
  72. const rpc = getOrCreateRpc(message.source)
  73. if(rpc && message.value.type === 'request') {
  74. const localOffer = await rpc.createOffer()
  75. await rpc.setLocalDescription(localOffer)
  76. wire({kind: 'peerInfo', value: localOffer, target: message.source})
  77. }
  78. else if(rpc && message.value.type === 'offer') {
  79. const remoteOffer = new RTCSessionDescription(message.value)
  80. await rpc.setRemoteDescription(remoteOffer)
  81. const localAnswer = await rpc.createAnswer()
  82. await rpc.setLocalDescription(localAnswer)
  83. wire({kind: 'peerInfo', value: localAnswer, target: message.source})
  84. }
  85. else if(rpc && message.value.type === 'answer') {
  86. const remoteAnswer = new RTCSessionDescription(message.value)
  87. await rpc.setRemoteDescription(remoteAnswer)
  88. }
  89. else if(rpc && message.value.type === 'candidate') {
  90. const candidate = new RTCIceCandidate(message.value.candidate)
  91. rpc.addIceCandidate(candidate)
  92. }
  93. else if(message.value.type === 'stop') {
  94. if(State.media[message.source]) {
  95. State.media[message.source].getTracks().map(track => track.stop())
  96. delete State.media[message.source]
  97. }
  98. if(State.rpcs[message.source]) {
  99. State.rpcs[message.source].close()
  100. delete State.rpcs[message.source]
  101. }
  102. }
  103. else if(rpc) {
  104. console.log('uncaught', message)
  105. }
  106. }
  107. /*
  108. *
  109. * GUI
  110. *
  111. */
  112. const autoFocus = (vnode) => {
  113. vnode.dom.focus()
  114. }
  115. const scrollIntoView = (vnode) => {
  116. vnode.dom.scrollIntoView()
  117. }
  118. const toggleFullscreen = (el) => (event) => {
  119. document.fullscreenElement ? document.exitFullscreen() : el.requestFullscreen()
  120. }
  121. const prettyTime = (ts) => {
  122. const dt = new Date(ts)
  123. const H = `0${dt.getHours()}`.slice(-2)
  124. const M = `0${dt.getMinutes()}`.slice(-2)
  125. const S = `0${dt.getSeconds()}`.slice(-2)
  126. return `${H}:${M}:${S}`
  127. }
  128. const hotKey = (e) => {
  129. // if isDesktop, Enter posts, unless Shift+Enter
  130. // use isLandscape as proxy for isDesktop
  131. if(e.key === 'Enter' && isLandscape && !e.shiftKey) {
  132. e.preventDefault()
  133. Chat.sendPost()
  134. }
  135. }
  136. const Video = {
  137. appendStream: ({username, stream}) => ({dom}) => {
  138. dom.autoplay = true
  139. dom.muted = (username === State.username)
  140. dom.srcObject = stream
  141. dom.ondblclick = toggleFullscreen(dom)
  142. },
  143. view({attrs}) {
  144. const rpc = State.rpcs[attrs.username] || {iceConnectionState: m.trust(' ')}
  145. return m('.video-container',
  146. m('.video-source', attrs.username),
  147. m('.video-state', rpc.iceConnectionState),
  148. m('video.mirrored', {playsinline: true, oncreate: Video.appendStream(attrs)}),
  149. )
  150. },
  151. }
  152. const Media = {
  153. audioDefaults: {
  154. noiseSuppresion: true,
  155. echoCancellation: true,
  156. },
  157. videoOptions: {
  158. camera: {width: {ideal: 320}, facingMode: 'user', frameRate: 26},
  159. screen: {mediaSource: 'screen', frameRate: 26},
  160. none: false,
  161. },
  162. getSelectedConstraints: () => {
  163. const videoChoice = document.querySelector('#media-source').value
  164. const muted = document.querySelector('#mute-check').checked
  165. return {
  166. video: Media.videoOptions[videoChoice],
  167. audio: muted ? false : Media.audioDefaults,
  168. }
  169. },
  170. turnOn: async () => {
  171. const constraints = Media.getSelectedConstraints()
  172. const media = await navigator.mediaDevices.getUserMedia(constraints)
  173. State.media[State.username] = media
  174. wire({kind: 'peerInfo', value: {type: 'request'}})
  175. m.redraw()
  176. },
  177. turnOff: () => {
  178. wire({kind: 'peerInfo', value: {type: 'stop'}})
  179. State.online.forEach(signalPeerStop)
  180. },
  181. view() {
  182. if(!State.media[State.username]) {
  183. return m('.media',
  184. m('button', {onclick: Media.turnOn}, 'turn on'),
  185. m('select#media-source',
  186. Object.keys(Media.videoOptions).map(description => m('option', description)),
  187. ),
  188. m('label', m('input#mute-check', {type: 'checkbox'}), 'mute'),
  189. )
  190. }
  191. else {
  192. return m('.media',
  193. m('button', {onclick: Media.turnOff}, 'turn off'),
  194. m('.videos',
  195. Object.entries(State.media).map(([username, stream]) =>
  196. m(Video, {username, stream})
  197. ),
  198. ),
  199. )
  200. }
  201. }
  202. }
  203. const Login = {
  204. sendLogin: (e) => {
  205. e.preventDefault()
  206. const username = e.target.username.value
  207. localStorage.username = username
  208. connect(username)
  209. },
  210. sendLogout: (e) => {
  211. Media.turnOff()
  212. wire({kind: 'logout'})
  213. State.posts = []
  214. },
  215. view() {
  216. const attrs = {
  217. oncreate: autoFocus,
  218. name: 'username',
  219. autocomplete: 'off',
  220. value: localStorage.username,
  221. }
  222. return m('.login',
  223. m('form', {onsubmit: Login.sendLogin},
  224. m('input', attrs),
  225. m('button', 'Login'),
  226. ),
  227. m('.error', State.info),
  228. )
  229. },
  230. }
  231. const Chat = {
  232. sendPost: () => {
  233. if(textbox.value) {
  234. wire({kind: 'post', value: textbox.value})
  235. textbox.value = ''
  236. }
  237. },
  238. view() {
  239. return m('.chat',
  240. m('.posts',
  241. State.posts.map(post => m('.post', {oncreate: scrollIntoView},
  242. m('.ts', prettyTime(post.ts)),
  243. m('.source', post.source || '~'),
  244. m('.text', m.trust(DOMPurify.sanitize(marked(post.value)))),
  245. )),
  246. ),
  247. m('.actions',
  248. m('textarea#textbox', {oncreate: autoFocus, onkeydown: hotKey}),
  249. m('button', {onclick: Chat.sendPost}, 'Send'),
  250. ),
  251. m('.online',
  252. m('button', {onclick: Login.sendLogout}, 'Logout'),
  253. m('ul.user-list', State.online.map(username => m('li', username))),
  254. ),
  255. m(Media),
  256. )
  257. },
  258. }
  259. const Main = {
  260. view() {
  261. const connected = State.websocket && State.websocket.readyState === 1
  262. return connected ? m(Chat) : m(Login)
  263. },
  264. }
  265. m.mount(document.body, Main)
  266. /*
  267. *
  268. * WEBSOCKETS
  269. *
  270. */
  271. const connect = (username) => {
  272. const wsUrl = location.href.replace('http', 'ws')
  273. State.websocket = new WebSocket(wsUrl)
  274. State.websocket.onopen = (e) => {
  275. wire({kind: 'login', value: username})
  276. }
  277. State.websocket.onmessage = (e) => {
  278. const message = JSON.parse(e.data)
  279. if(message.online) {
  280. const difference = (l1, l2) => l1.filter(u => !l2.includes(u))
  281. difference(message.online, State.online).forEach(username =>
  282. State.posts.push({ts: message.ts, value: `${username} joined`}))
  283. difference(State.online, message.online).forEach(username =>
  284. State.posts.push({ts: message.ts, value: `${username} left`}))
  285. }
  286. if(!doNotLog.has(message.kind)) {
  287. console.log(message)
  288. }
  289. signal(message)
  290. m.redraw()
  291. }
  292. State.websocket.onclose = (e) => {
  293. State.online.forEach(signalPeerStop)
  294. if(!e.wasClean) {
  295. setTimeout(connect, 1000, username)
  296. }
  297. m.redraw()
  298. }
  299. }
  300. if(localStorage.username) {
  301. connect(localStorage.username)
  302. }
  303. addEventListener('pagehide', Media.turnOff)