Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Chat thread proof #558

Merged
merged 3 commits into from
Apr 3, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions src/chat/chatLogic.js
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@ import { store, authn } from 'solid-logic'
import * as ns from '../ns'
import * as $rdf from 'rdflib' // pull in first avoid cross-refs
import * as utils from '../utils'
import { getBlankMsg, signMsg, SEC, verifySignature } from './signature'
import { getPrivateKey, getPublicKey } from './keys'
import { getBlankMsg, signMsg, SEC } from './signature'
import { getPrivateKey } from './keys'

/* The Solid logic for a 'LongChat'
*/
Expand Down
2 changes: 1 addition & 1 deletion src/chat/infinite.js
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
import * as widgets from '../widgets'
// import * as pad from '../pad'
// import { DateFolder } from './dateFolder'
import { ChatChannel, isDeleted, isReplaced } from './chatLogic'
import { ChatChannel, isDeleted } from './chatLogic'
import { renderMessageEditor, renderMessageRow } from './message'

// const UI = { authn, icons, ns, media, pad, $rdf, store, style, utils, widgets }
Expand Down Expand Up @@ -350,7 +350,7 @@
}
}

async function scrollForwardButtonHandler (_event) {

Check warning on line 353 in src/chat/infinite.js

View workflow job for this annotation

GitHub Actions / build (18.x)

'scrollForwardButtonHandler' is defined but never used. Allowed unused vars must match /^_/u

Check warning on line 353 in src/chat/infinite.js

View workflow job for this annotation

GitHub Actions / build (16.x)

'scrollForwardButtonHandler' is defined but never used. Allowed unused vars must match /^_/u

Check warning on line 353 in src/chat/infinite.js

View workflow job for this annotation

GitHub Actions / build (18.x)

'scrollForwardButtonHandler' is defined but never used. Allowed unused vars must match /^_/u

Check warning on line 353 in src/chat/infinite.js

View workflow job for this annotation

GitHub Actions / build (16.x)

'scrollForwardButtonHandler' is defined but never used. Allowed unused vars must match /^_/u
if (messageTable.extendedForwards) {
removePreviousMessages(false, messageTable)
messageTable.extendedForwards = false
Expand Down Expand Up @@ -405,7 +405,7 @@
const test = true
if (test) { // ws options.infinite but need for non-infinite
const titleTR = dom.createElement('tr')
const scrollBackbuttonCell = titleTR.appendChild(

Check warning on line 408 in src/chat/infinite.js

View workflow job for this annotation

GitHub Actions / build (18.x)

'scrollBackbuttonCell' is assigned a value but never used. Allowed unused vars must match /^_/u

Check warning on line 408 in src/chat/infinite.js

View workflow job for this annotation

GitHub Actions / build (16.x)

'scrollBackbuttonCell' is assigned a value but never used. Allowed unused vars must match /^_/u

Check warning on line 408 in src/chat/infinite.js

View workflow job for this annotation

GitHub Actions / build (18.x)

'scrollBackbuttonCell' is assigned a value but never used. Allowed unused vars must match /^_/u

Check warning on line 408 in src/chat/infinite.js

View workflow job for this annotation

GitHub Actions / build (16.x)

'scrollBackbuttonCell' is assigned a value but never used. Allowed unused vars must match /^_/u
dom.createElement('td')
)
// up traingles: noun_1369237.svg
Expand Down
Loading