address review comments

This commit is contained in:
Alejandro Gomez
2023-01-14 23:46:28 +01:00
parent 666ab8ebdb
commit c1877b35ad
6 changed files with 43 additions and 19 deletions

View File

@ -2,7 +2,6 @@
margin-bottom: 10px;
background-color: var(--gray);
border-radius: 10px;
overflow: hidden;
}
.note-creator textarea {
@ -20,7 +19,7 @@
}
.note-creator .textarea--focused {
min-height: 150px;
min-height: 120px;
}
.note-creator .actions {

View File

@ -2,19 +2,27 @@ import { Component } from "react";
import ReactTextareaAutocomplete from "@webscopeio/react-textarea-autocomplete";
// @ts-expect-error
import Nip05, { useIsVerified } from "./Nip05";
import "@webscopeio/react-textarea-autocomplete/style.css";
import "./Textarea.css";
// @ts-expect-error
import Nostrich from "../nostrich.jpg";
// @ts-expect-error
import { hexToBech32 } from "../Util";
import type { User } from "../nostr/types";
function searchUsers(query, users) {
function searchUsers(query: string, users: Record<string, User>) {
const q = query.toLowerCase()
return Object.values(users).filter(({ name, display_name, about }) => {
return name.toLowerCase().includes(q) || display_name?.includes(q) || about?.includes(q)
return Object.values(users).filter(({ name, display_name, about, nip05 }) => {
return name?.toLowerCase().includes(q)
|| display_name?.toLowerCase().includes(q)
|| about?.toLowerCase().includes(q)
|| nip05?.toLowerCase().includes(q)
}).slice(0, 3)
}
const UserItem = ({ pubkey, display_name, picture, nip05, ...rest }) => {
const UserItem = ({ pubkey, display_name, picture, nip05, ...rest }: User) => {
const { isVerified, couldNotVerify, name, domain } = useIsVerified(nip05, pubkey)
return (
<div key={pubkey} className="user-item">
@ -31,6 +39,7 @@ const UserItem = ({ pubkey, display_name, picture, nip05, ...rest }) => {
export default class Textarea extends Component {
render() {
// @ts-expect-error
const { users, onChange, ...rest } = this.props
return (
<ReactTextareaAutocomplete
@ -38,6 +47,7 @@ export default class Textarea extends Component {
loadingComponent={() => <span>Loading....</span>}
placeholder="Say something!"
ref={rta => {
// @ts-expect-error
this.rta = rta;
}}
onChange={onChange}
@ -45,8 +55,8 @@ export default class Textarea extends Component {
"@": {
afterWhitespace: true,
dataProvider: token => searchUsers(token, users),
component: ({ entity }) => <UserItem {...entity} />,
output: (item, trigger) => `@${item.pubkey}`
component: (props: any) => <UserItem {...props.entity} />,
output: (item: any) => `@${hexToBech32("npub", item.pubkey)}`
}
}}
/>

View File

@ -32,20 +32,18 @@ export default function useEventPublisher() {
function processMentions(ev, msg) {
const replaceHexKey = (match) => {
const idx = ev.Tags.length;
ev.Tags.push(new Tag(["p", match.slice(1)], idx));
return `#[${idx}]`
}
const replaceNpub = (match) => {
const npub = match.slice(1);
const hex = bech32ToHex(npub);
const idx = ev.Tags.length;
ev.Tags.push(new Tag(["p", hex], idx));
return `#[${idx}]`
try {
const hex = bech32ToHex(npub);
const idx = ev.Tags.length;
ev.Tags.push(new Tag(["p", hex], idx));
return `#[${idx}]`
} catch (error) {
return match
}
}
let content = msg.replace(/@[0-9A-Fa-f]{64}/g, replaceHexKey)
.replace(/@npub[a-z0-9]+/g, replaceNpub)
let content = msg.replace(/@npub[a-z0-9]+/g, replaceNpub)
ev.Content = content;
}

9
src/nostr/types.tsx Normal file
View File

@ -0,0 +1,9 @@
export type User = {
name?: string
about?: string
display_name?: string
nip05?: string
pubkey: string
picture?: string
}