mirror of
https://github.com/revoltchat/revite.git
synced 2024-11-22 07:00:58 -05:00
Refactor + add message box.
This commit is contained in:
parent
b8fba749af
commit
9e460c5b3d
28 changed files with 225 additions and 120 deletions
|
@ -1,5 +1,5 @@
|
||||||
import UserIcon from "../UserIcon";
|
import UserIcon from "../user/UserIcon";
|
||||||
import { Username } from "../UserShort";
|
import { Username } from "../user/UserShort";
|
||||||
import Markdown from "../../markdown/Markdown";
|
import Markdown from "../../markdown/Markdown";
|
||||||
import { Children } from "../../../types/Preact";
|
import { Children } from "../../../types/Preact";
|
||||||
import { attachContextMenu } from "preact-context-menu";
|
import { attachContextMenu } from "preact-context-menu";
|
||||||
|
|
89
src/components/common/messaging/MessageBox.tsx
Normal file
89
src/components/common/messaging/MessageBox.tsx
Normal file
|
@ -0,0 +1,89 @@
|
||||||
|
import { useContext } from "preact/hooks";
|
||||||
|
import { Channel } from "revolt.js";
|
||||||
|
import { ulid } from "ulid";
|
||||||
|
import { AppContext } from "../../../context/revoltjs/RevoltClient";
|
||||||
|
import { takeError } from "../../../context/revoltjs/util";
|
||||||
|
import { defer } from "../../../lib/defer";
|
||||||
|
import { isTouchscreenDevice } from "../../../lib/isTouchscreenDevice";
|
||||||
|
import { SingletonMessageRenderer, SMOOTH_SCROLL_ON_RECEIVE } from "../../../lib/renderer/Singleton";
|
||||||
|
import { connectState } from "../../../redux/connector";
|
||||||
|
import { WithDispatcher } from "../../../redux/reducers";
|
||||||
|
import TextArea from "../../ui/TextArea";
|
||||||
|
|
||||||
|
type Props = WithDispatcher & {
|
||||||
|
channel: Channel;
|
||||||
|
draft?: string;
|
||||||
|
};
|
||||||
|
|
||||||
|
function MessageBox({ channel, draft, dispatcher }: Props) {
|
||||||
|
const client = useContext(AppContext);
|
||||||
|
|
||||||
|
function setMessage(content?: string) {
|
||||||
|
if (content) {
|
||||||
|
dispatcher({
|
||||||
|
type: "SET_DRAFT",
|
||||||
|
channel: channel._id,
|
||||||
|
content
|
||||||
|
});
|
||||||
|
} else {
|
||||||
|
dispatcher({
|
||||||
|
type: "CLEAR_DRAFT",
|
||||||
|
channel: channel._id
|
||||||
|
});
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
async function send() {
|
||||||
|
const nonce = ulid();
|
||||||
|
|
||||||
|
const content = draft?.trim() ?? '';
|
||||||
|
if (content.length === 0) return;
|
||||||
|
|
||||||
|
setMessage();
|
||||||
|
dispatcher({
|
||||||
|
type: "QUEUE_ADD",
|
||||||
|
nonce,
|
||||||
|
channel: channel._id,
|
||||||
|
message: {
|
||||||
|
_id: nonce,
|
||||||
|
channel: channel._id,
|
||||||
|
author: client.user!._id,
|
||||||
|
content
|
||||||
|
}
|
||||||
|
});
|
||||||
|
|
||||||
|
defer(() => SingletonMessageRenderer.jumpToBottom(channel._id, SMOOTH_SCROLL_ON_RECEIVE));
|
||||||
|
// Sounds.playOutbound();
|
||||||
|
|
||||||
|
try {
|
||||||
|
await client.channels.sendMessage(channel._id, {
|
||||||
|
content,
|
||||||
|
nonce
|
||||||
|
});
|
||||||
|
} catch (error) {
|
||||||
|
dispatcher({
|
||||||
|
type: "QUEUE_FAIL",
|
||||||
|
error: takeError(error),
|
||||||
|
nonce
|
||||||
|
});
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
return (
|
||||||
|
<TextArea
|
||||||
|
value={draft}
|
||||||
|
onKeyDown={e => {
|
||||||
|
if (!e.shiftKey && e.key === "Enter" && !isTouchscreenDevice) {
|
||||||
|
e.preventDefault();
|
||||||
|
return send();
|
||||||
|
}
|
||||||
|
}}
|
||||||
|
onChange={e => setMessage(e.currentTarget.value)} />
|
||||||
|
)
|
||||||
|
}
|
||||||
|
|
||||||
|
export default connectState<Omit<Props, "dispatcher" | "draft">>(MessageBox, (state, { channel }) => {
|
||||||
|
return {
|
||||||
|
draft: state.drafts[channel._id]
|
||||||
|
}
|
||||||
|
}, true)
|
|
@ -4,9 +4,9 @@ import { attachContextMenu } from "preact-context-menu";
|
||||||
import { MessageObject } from "../../../context/revoltjs/util";
|
import { MessageObject } from "../../../context/revoltjs/util";
|
||||||
import { useForceUpdate, useUser } from "../../../context/revoltjs/hooks";
|
import { useForceUpdate, useUser } from "../../../context/revoltjs/hooks";
|
||||||
import { TextReact } from "../../../lib/i18n";
|
import { TextReact } from "../../../lib/i18n";
|
||||||
import UserIcon from "../UserIcon";
|
import UserIcon from "../user/UserIcon";
|
||||||
import Username from "../UserShort";
|
import Username from "../user/UserShort";
|
||||||
import UserShort from "../UserShort";
|
import UserShort from "../user/UserShort";
|
||||||
import MessageBase, { MessageDetail, MessageInfo } from "./MessageBase";
|
import MessageBase, { MessageDetail, MessageInfo } from "./MessageBase";
|
||||||
import styled from "styled-components";
|
import styled from "styled-components";
|
||||||
|
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
import { User } from "revolt.js";
|
import { User } from "revolt.js";
|
||||||
import UserIcon from "./UserIcon";
|
import UserIcon from "./UserIcon";
|
||||||
import Checkbox, { CheckboxProps } from "../ui/Checkbox";
|
import Checkbox, { CheckboxProps } from "../../ui/Checkbox";
|
||||||
|
|
||||||
type UserProps = Omit<CheckboxProps, "children"> & { user: User };
|
type UserProps = Omit<CheckboxProps, "children"> & { user: User };
|
||||||
|
|
|
@ -1,17 +1,17 @@
|
||||||
import Tooltip from "./Tooltip";
|
import Tooltip from "../Tooltip";
|
||||||
import { User } from "revolt.js";
|
import { User } from "revolt.js";
|
||||||
import Header from "../ui/Header";
|
|
||||||
import UserIcon from "./UserIcon";
|
import UserIcon from "./UserIcon";
|
||||||
import { Text } from "preact-i18n";
|
import { Text } from "preact-i18n";
|
||||||
|
import Header from "../../ui/Header";
|
||||||
import UserStatus from './UserStatus';
|
import UserStatus from './UserStatus';
|
||||||
import styled from "styled-components";
|
import styled from "styled-components";
|
||||||
import { Localizer } from 'preact-i18n';
|
import { Localizer } from 'preact-i18n';
|
||||||
import { Link } from "react-router-dom";
|
import { Link } from "react-router-dom";
|
||||||
import IconButton from "../ui/IconButton";
|
import IconButton from "../../ui/IconButton";
|
||||||
import { Settings } from "@styled-icons/feather";
|
import { Settings } from "@styled-icons/feather";
|
||||||
import { openContextMenu } from "preact-context-menu";
|
import { openContextMenu } from "preact-context-menu";
|
||||||
import { isTouchscreenDevice } from "../../lib/isTouchscreenDevice";
|
import { isTouchscreenDevice } from "../../../lib/isTouchscreenDevice";
|
||||||
import { useIntermediate } from "../../context/intermediate/Intermediate";
|
import { useIntermediate } from "../../../context/intermediate/Intermediate";
|
||||||
|
|
||||||
const HeaderBase = styled.div`
|
const HeaderBase = styled.div`
|
||||||
gap: 0;
|
gap: 0;
|
|
@ -2,10 +2,10 @@ import { User } from "revolt.js";
|
||||||
import { useContext } from "preact/hooks";
|
import { useContext } from "preact/hooks";
|
||||||
import { MicOff } from "@styled-icons/feather";
|
import { MicOff } from "@styled-icons/feather";
|
||||||
import styled, { css } from "styled-components";
|
import styled, { css } from "styled-components";
|
||||||
import { ThemeContext } from "../../context/Theme";
|
|
||||||
import { Users } from "revolt.js/dist/api/objects";
|
import { Users } from "revolt.js/dist/api/objects";
|
||||||
import IconBase, { IconBaseProps } from "./IconBase";
|
import { ThemeContext } from "../../../context/Theme";
|
||||||
import { AppContext } from "../../context/revoltjs/RevoltClient";
|
import IconBase, { IconBaseProps } from "../IconBase";
|
||||||
|
import { AppContext } from "../../../context/revoltjs/RevoltClient";
|
||||||
|
|
||||||
type VoiceStatus = "muted";
|
type VoiceStatus = "muted";
|
||||||
interface Props extends IconBaseProps<User> {
|
interface Props extends IconBaseProps<User> {
|
||||||
|
@ -47,7 +47,7 @@ const VoiceIndicator = styled.div<{ status: VoiceStatus }>`
|
||||||
` }
|
` }
|
||||||
`;
|
`;
|
||||||
|
|
||||||
import fallback from './assets/user.png';
|
import fallback from '../assets/user.png';
|
||||||
|
|
||||||
export default function UserIcon(props: Props & Omit<JSX.SVGAttributes<SVGSVGElement>, keyof Props>) {
|
export default function UserIcon(props: Props & Omit<JSX.SVGAttributes<SVGSVGElement>, keyof Props>) {
|
||||||
const client = useContext(AppContext);
|
const client = useContext(AppContext);
|
|
@ -2,12 +2,12 @@ import classNames from 'classnames';
|
||||||
import styles from "./Item.module.scss";
|
import styles from "./Item.module.scss";
|
||||||
import Tooltip from '../../common/Tooltip';
|
import Tooltip from '../../common/Tooltip';
|
||||||
import IconButton from '../../ui/IconButton';
|
import IconButton from '../../ui/IconButton';
|
||||||
import UserIcon from '../../common/UserIcon';
|
|
||||||
import { Localizer, Text } from "preact-i18n";
|
import { Localizer, Text } from "preact-i18n";
|
||||||
import { X, Zap } from "@styled-icons/feather";
|
import { X, Zap } from "@styled-icons/feather";
|
||||||
import UserStatus from '../../common/UserStatus';
|
|
||||||
import { Children } from "../../../types/Preact";
|
import { Children } from "../../../types/Preact";
|
||||||
|
import UserIcon from '../../common/user/UserIcon';
|
||||||
import ChannelIcon from '../../common/ChannelIcon';
|
import ChannelIcon from '../../common/ChannelIcon';
|
||||||
|
import UserStatus from '../../common/user/UserStatus';
|
||||||
import { attachContextMenu } from 'preact-context-menu';
|
import { attachContextMenu } from 'preact-context-menu';
|
||||||
import { Channels, Users } from "revolt.js/dist/api/objects";
|
import { Channels, Users } from "revolt.js/dist/api/objects";
|
||||||
import { isTouchscreenDevice } from "../../../lib/isTouchscreenDevice";
|
import { isTouchscreenDevice } from "../../../lib/isTouchscreenDevice";
|
||||||
|
|
|
@ -2,23 +2,23 @@ import { Localizer, Text } from "preact-i18n";
|
||||||
import { useContext } from "preact/hooks";
|
import { useContext } from "preact/hooks";
|
||||||
import { Home, Users, Tool, Save } from "@styled-icons/feather";
|
import { Home, Users, Tool, Save } from "@styled-icons/feather";
|
||||||
|
|
||||||
import { Link, Redirect, useLocation, useParams } from "react-router-dom";
|
|
||||||
import { WithDispatcher } from "../../../redux/reducers";
|
|
||||||
import { Unreads } from "../../../redux/reducers/unreads";
|
|
||||||
import { connectState } from "../../../redux/connector";
|
|
||||||
import { AppContext } from "../../../context/revoltjs/RevoltClient";
|
|
||||||
import { useChannels, useDMs, useForceUpdate, useUsers } from "../../../context/revoltjs/hooks";
|
|
||||||
import { Users as UsersNS } from 'revolt.js/dist/api/objects';
|
|
||||||
import { mapChannelWithUnread, useUnreads } from "./common";
|
|
||||||
import { Channels } from "revolt.js/dist/api/objects";
|
|
||||||
import { isTouchscreenDevice } from "../../../lib/isTouchscreenDevice";
|
|
||||||
import ConnectionStatus from '../items/ConnectionStatus';
|
|
||||||
import ButtonItem, { ChannelButton } from '../items/ButtonItem';
|
|
||||||
import styled from "styled-components";
|
import styled from "styled-components";
|
||||||
import UserHeader from "../../common/UserHeader";
|
|
||||||
import Category from '../../ui/Category';
|
import Category from '../../ui/Category';
|
||||||
import PaintCounter from "../../../lib/PaintCounter";
|
import PaintCounter from "../../../lib/PaintCounter";
|
||||||
|
import UserHeader from "../../common/user/UserHeader";
|
||||||
|
import { Channels } from "revolt.js/dist/api/objects";
|
||||||
|
import { connectState } from "../../../redux/connector";
|
||||||
|
import ConnectionStatus from '../items/ConnectionStatus';
|
||||||
|
import { WithDispatcher } from "../../../redux/reducers";
|
||||||
|
import { Unreads } from "../../../redux/reducers/unreads";
|
||||||
|
import { mapChannelWithUnread, useUnreads } from "./common";
|
||||||
|
import { Users as UsersNS } from 'revolt.js/dist/api/objects';
|
||||||
|
import ButtonItem, { ChannelButton } from '../items/ButtonItem';
|
||||||
|
import { AppContext } from "../../../context/revoltjs/RevoltClient";
|
||||||
|
import { isTouchscreenDevice } from "../../../lib/isTouchscreenDevice";
|
||||||
|
import { Link, Redirect, useLocation, useParams } from "react-router-dom";
|
||||||
import { useIntermediate } from "../../../context/intermediate/Intermediate";
|
import { useIntermediate } from "../../../context/intermediate/Intermediate";
|
||||||
|
import { useDMs, useForceUpdate, useUsers } from "../../../context/revoltjs/hooks";
|
||||||
|
|
||||||
type Props = WithDispatcher & {
|
type Props = WithDispatcher & {
|
||||||
unreads: Unreads;
|
unreads: Unreads;
|
||||||
|
@ -126,7 +126,11 @@ function HomeSidebar(props: Props) {
|
||||||
let user;
|
let user;
|
||||||
if (x.channel_type === 'DirectMessage') {
|
if (x.channel_type === 'DirectMessage') {
|
||||||
let recipient = client.channels.getRecipient(x._id);
|
let recipient = client.channels.getRecipient(x._id);
|
||||||
user = users.find(x => x!._id === recipient);
|
user = users.find(x => x?._id === recipient);
|
||||||
|
if (!user) {
|
||||||
|
console.warn(`Skipped DM ${x._id} because user was missing.`);
|
||||||
|
return null;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
return (
|
return (
|
||||||
|
|
|
@ -1,12 +1,37 @@
|
||||||
// ! FIXME: temporarily here until re-written
|
// import classNames from "classnames";
|
||||||
// ! DO NOT IMRPOVE, JUST RE-WRITE
|
// import { memo } from "preact/compat";
|
||||||
|
// import styles from "./TextArea.module.scss";
|
||||||
|
// import { useState, useEffect, useRef, useLayoutEffect } from "preact/hooks";
|
||||||
|
import styled, { css } from "styled-components";
|
||||||
|
|
||||||
import classNames from "classnames";
|
interface Props {
|
||||||
import { memo } from "preact/compat";
|
code?: boolean;
|
||||||
import styles from "./TextArea.module.scss";
|
}
|
||||||
import { useState, useEffect, useRef, useLayoutEffect } from "preact/hooks";
|
|
||||||
|
|
||||||
export interface TextAreaProps {
|
export default styled.textarea<Props>`
|
||||||
|
width: 100%;
|
||||||
|
resize: none;
|
||||||
|
display: block;
|
||||||
|
border-radius: 4px;
|
||||||
|
|
||||||
|
color: var(--foreground);
|
||||||
|
border: 2px solid transparent;
|
||||||
|
background: var(--secondary-background);
|
||||||
|
transition: border-color .2s ease-in-out;
|
||||||
|
|
||||||
|
&:focus {
|
||||||
|
outline: none;
|
||||||
|
border: 2px solid var(--accent);
|
||||||
|
}
|
||||||
|
|
||||||
|
${ props => props.code ? css`
|
||||||
|
font-family: 'Fira Mono', 'Courier New', Courier, monospace;
|
||||||
|
` : css`
|
||||||
|
font-family: 'Open Sans', sans-serif;
|
||||||
|
` }
|
||||||
|
`;
|
||||||
|
|
||||||
|
/*export interface TextAreaProps {
|
||||||
id?: string;
|
id?: string;
|
||||||
value: string;
|
value: string;
|
||||||
maxRows?: number;
|
maxRows?: number;
|
||||||
|
@ -30,7 +55,7 @@ export interface TextAreaProps {
|
||||||
|
|
||||||
const lineHeight = 20;
|
const lineHeight = 20;
|
||||||
|
|
||||||
export const TextArea = memo((props: TextAreaProps) => {
|
export const TextAreaB = memo((props: TextAreaProps) => {
|
||||||
const padding = props.padding ? props.padding * 2 : 0;
|
const padding = props.padding ? props.padding * 2 : 0;
|
||||||
|
|
||||||
const [height, setHeightState] = useState(
|
const [height, setHeightState] = useState(
|
||||||
|
@ -143,4 +168,4 @@ export const TextArea = memo((props: TextAreaProps) => {
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
);
|
);
|
||||||
});
|
});*/
|
||||||
|
|
|
@ -4,12 +4,12 @@ import { Children } from "../../../types/Preact";
|
||||||
import { useIntermediate } from "../Intermediate";
|
import { useIntermediate } from "../Intermediate";
|
||||||
import InputBox from "../../../components/ui/InputBox";
|
import InputBox from "../../../components/ui/InputBox";
|
||||||
import Overline from "../../../components/ui/Overline";
|
import Overline from "../../../components/ui/Overline";
|
||||||
import UserIcon from "../../../components/common/UserIcon";
|
import { AppContext } from "../../revoltjs/RevoltClient";
|
||||||
|
import { mapMessage, takeError } from "../../revoltjs/util";
|
||||||
import Modal, { Action } from "../../../components/ui/Modal";
|
import Modal, { Action } from "../../../components/ui/Modal";
|
||||||
import { Channels, Servers } from "revolt.js/dist/api/objects";
|
import { Channels, Servers } from "revolt.js/dist/api/objects";
|
||||||
import { useContext, useEffect, useState } from "preact/hooks";
|
import { useContext, useEffect, useState } from "preact/hooks";
|
||||||
import { AppContext } from "../../revoltjs/RevoltClient";
|
import UserIcon from "../../../components/common/user/UserIcon";
|
||||||
import { mapMessage, takeError } from "../../revoltjs/util";
|
|
||||||
import Message from "../../../components/common/messaging/Message";
|
import Message from "../../../components/common/messaging/Message";
|
||||||
|
|
||||||
interface Props {
|
interface Props {
|
||||||
|
|
|
@ -4,7 +4,7 @@ import styles from "./UserPicker.module.scss";
|
||||||
import { useUsers } from "../../revoltjs/hooks";
|
import { useUsers } from "../../revoltjs/hooks";
|
||||||
import Modal from "../../../components/ui/Modal";
|
import Modal from "../../../components/ui/Modal";
|
||||||
import { User, Users } from "revolt.js/dist/api/objects";
|
import { User, Users } from "revolt.js/dist/api/objects";
|
||||||
import UserCheckbox from "../../../components/common/UserCheckbox";
|
import UserCheckbox from "../../../components/common/user/UserCheckbox";
|
||||||
|
|
||||||
interface Props {
|
interface Props {
|
||||||
omit?: string[];
|
omit?: string[];
|
||||||
|
|
|
@ -1,22 +1,22 @@
|
||||||
import Modal from "../../../components/ui/Modal";
|
import { decodeTime } from "ulid";
|
||||||
import { Localizer, Text } from "preact-i18n";
|
import { Localizer, Text } from "preact-i18n";
|
||||||
import styles from "./UserProfile.module.scss";
|
import styles from "./UserProfile.module.scss";
|
||||||
import Preloader from "../../../components/ui/Preloader";
|
import Modal from "../../../components/ui/Modal";
|
||||||
import { Route } from "revolt.js/dist/api/routes";
|
import { Route } from "revolt.js/dist/api/routes";
|
||||||
import { Users } from "revolt.js/dist/api/objects";
|
import { Users } from "revolt.js/dist/api/objects";
|
||||||
import { IntermediateContext, useIntermediate } from "../Intermediate";
|
import { useIntermediate } from "../Intermediate";
|
||||||
import { Globe, Mail, Edit, UserPlus, Shield } from "@styled-icons/feather";
|
|
||||||
import { Link, useHistory } from "react-router-dom";
|
import { Link, useHistory } from "react-router-dom";
|
||||||
import { useContext, useEffect, useLayoutEffect, useState } from "preact/hooks";
|
|
||||||
import { decodeTime } from "ulid";
|
|
||||||
import { CashStack } from "@styled-icons/bootstrap";
|
import { CashStack } from "@styled-icons/bootstrap";
|
||||||
import { AppContext, ClientStatus, StatusContext } from "../../revoltjs/RevoltClient";
|
import Preloader from "../../../components/ui/Preloader";
|
||||||
import { useChannels, useForceUpdate, useUser, useUsers } from "../../revoltjs/hooks";
|
|
||||||
import UserIcon from '../../../components/common/UserIcon';
|
|
||||||
import UserStatus from '../../../components/common/UserStatus';
|
|
||||||
import Tooltip from '../../../components/common/Tooltip';
|
import Tooltip from '../../../components/common/Tooltip';
|
||||||
import ChannelIcon from '../../../components/common/ChannelIcon';
|
|
||||||
import Markdown from '../../../components/markdown/Markdown';
|
import Markdown from '../../../components/markdown/Markdown';
|
||||||
|
import UserIcon from '../../../components/common/user/UserIcon';
|
||||||
|
import ChannelIcon from '../../../components/common/ChannelIcon';
|
||||||
|
import UserStatus from '../../../components/common/user/UserStatus';
|
||||||
|
import { Mail, Edit, UserPlus, Shield } from "@styled-icons/feather";
|
||||||
|
import { useChannels, useForceUpdate, useUsers } from "../../revoltjs/hooks";
|
||||||
|
import { useContext, useEffect, useLayoutEffect, useState } from "preact/hooks";
|
||||||
|
import { AppContext, ClientStatus, StatusContext } from "../../revoltjs/RevoltClient";
|
||||||
|
|
||||||
interface Props {
|
interface Props {
|
||||||
user_id: string;
|
user_id: string;
|
||||||
|
|
|
@ -1,12 +1,12 @@
|
||||||
import { ReactNode } from "react";
|
|
||||||
import { useContext } from "preact/hooks";
|
import { useContext } from "preact/hooks";
|
||||||
import { Redirect } from "react-router-dom";
|
import { Redirect } from "react-router-dom";
|
||||||
|
import { Children } from "../../types/Preact";
|
||||||
|
|
||||||
import { OperationsContext } from "./RevoltClient";
|
import { OperationsContext } from "./RevoltClient";
|
||||||
|
|
||||||
interface Props {
|
interface Props {
|
||||||
auth?: boolean;
|
auth?: boolean;
|
||||||
children: ReactNode | ReactNode[];
|
children: Children;
|
||||||
}
|
}
|
||||||
|
|
||||||
export const CheckAuth = (props: Props) => {
|
export const CheckAuth = (props: Props) => {
|
||||||
|
|
|
@ -11,8 +11,17 @@ export interface HookContext {
|
||||||
export function useForceUpdate(context?: HookContext): HookContext {
|
export function useForceUpdate(context?: HookContext): HookContext {
|
||||||
const client = useContext(AppContext);
|
const client = useContext(AppContext);
|
||||||
if (context) return context;
|
if (context) return context;
|
||||||
const [, updateState] = useState({});
|
const H = useState(undefined);
|
||||||
return { client, forceUpdate: useCallback(() => updateState({}), []) };
|
var updateState: (_: undefined) => void;
|
||||||
|
if (Array.isArray(H)) {
|
||||||
|
let [, u] = H;
|
||||||
|
updateState = u;
|
||||||
|
} else {
|
||||||
|
console.warn('Failed to construct using useState.');
|
||||||
|
console.warn(H);
|
||||||
|
updateState = ()=>{};
|
||||||
|
}
|
||||||
|
return { client, forceUpdate: useCallback(() => updateState(undefined), []) };
|
||||||
}
|
}
|
||||||
|
|
||||||
function useObject(type: string, id?: string | string[], context?: HookContext) {
|
function useObject(type: string, id?: string | string[], context?: HookContext) {
|
||||||
|
|
3
src/lib/defer.ts
Normal file
3
src/lib/defer.ts
Normal file
|
@ -0,0 +1,3 @@
|
||||||
|
export function defer(cb: () => void) {
|
||||||
|
setTimeout(cb, 0);
|
||||||
|
}
|
|
@ -4,6 +4,7 @@ import Header from "../../components/ui/Header";
|
||||||
import { useRenderState } from "../../lib/renderer/Singleton";
|
import { useRenderState } from "../../lib/renderer/Singleton";
|
||||||
import { useChannel, useForceUpdate, useUsers } from "../../context/revoltjs/hooks";
|
import { useChannel, useForceUpdate, useUsers } from "../../context/revoltjs/hooks";
|
||||||
import { MessageArea } from "./messaging/MessageArea";
|
import { MessageArea } from "./messaging/MessageArea";
|
||||||
|
import MessageBox from "../../components/common/messaging/MessageBox";
|
||||||
|
|
||||||
const ChannelMain = styled.div`
|
const ChannelMain = styled.div`
|
||||||
flex-grow: 1;
|
flex-grow: 1;
|
||||||
|
@ -37,6 +38,7 @@ export default function Channel() {
|
||||||
<ChannelMain>
|
<ChannelMain>
|
||||||
<ChannelContent>
|
<ChannelContent>
|
||||||
<MessageArea id={id} />
|
<MessageArea id={id} />
|
||||||
|
<MessageBox channel={channel} />
|
||||||
</ChannelContent>
|
</ChannelContent>
|
||||||
</ChannelMain>
|
</ChannelMain>
|
||||||
</>
|
</>
|
||||||
|
|
|
@ -4,12 +4,12 @@ import styles from "./Friend.module.scss";
|
||||||
import { useContext } from "preact/hooks";
|
import { useContext } from "preact/hooks";
|
||||||
import { Children } from "../../types/Preact";
|
import { Children } from "../../types/Preact";
|
||||||
import { X, Plus, Mail } from "@styled-icons/feather";
|
import { X, Plus, Mail } from "@styled-icons/feather";
|
||||||
import UserIcon from "../../components/common/UserIcon";
|
|
||||||
import IconButton from "../../components/ui/IconButton";
|
import IconButton from "../../components/ui/IconButton";
|
||||||
import { attachContextMenu } from "preact-context-menu";
|
import { attachContextMenu } from "preact-context-menu";
|
||||||
import { User, Users } from "revolt.js/dist/api/objects";
|
import { User, Users } from "revolt.js/dist/api/objects";
|
||||||
import UserStatus from '../../components/common/UserStatus';
|
|
||||||
import { stopPropagation } from "../../lib/stopPropagation";
|
import { stopPropagation } from "../../lib/stopPropagation";
|
||||||
|
import UserIcon from "../../components/common/user/UserIcon";
|
||||||
|
import UserStatus from '../../components/common/user/UserStatus';
|
||||||
import { AppContext } from "../../context/revoltjs/RevoltClient";
|
import { AppContext } from "../../context/revoltjs/RevoltClient";
|
||||||
import { useIntermediate } from "../../context/intermediate/Intermediate";
|
import { useIntermediate } from "../../context/intermediate/Intermediate";
|
||||||
|
|
||||||
|
|
|
@ -185,25 +185,3 @@
|
||||||
margin: auto;
|
margin: auto;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
.textarea {
|
|
||||||
margin-bottom: 1em;
|
|
||||||
border-radius: 4px;
|
|
||||||
font-family: 'Courier New', Courier, monospace;
|
|
||||||
|
|
||||||
textarea {
|
|
||||||
resize: none;
|
|
||||||
padding: 12px;
|
|
||||||
min-height: 180px;
|
|
||||||
border-radius: 4px;
|
|
||||||
color: var(--foreground);
|
|
||||||
border: 2px solid transparent;
|
|
||||||
background: var(--secondary-background);
|
|
||||||
transition: border-color .2s ease-in-out;
|
|
||||||
|
|
||||||
&:focus {
|
|
||||||
outline: none;
|
|
||||||
border: 2px solid var(--accent);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
|
@ -1,6 +0,0 @@
|
||||||
import styles from "./Settings.module.scss";
|
|
||||||
import { TextArea, TextAreaProps } from "../../components/ui/TextArea";
|
|
||||||
|
|
||||||
export function SettingsTextArea(props: TextAreaProps) {
|
|
||||||
return <TextArea {...props} className={styles.textarea} padding={16} />;
|
|
||||||
}
|
|
|
@ -3,7 +3,7 @@ import styles from "./Panes.module.scss";
|
||||||
import Button from "../../../components/ui/Button";
|
import Button from "../../../components/ui/Button";
|
||||||
import { Channels } from "revolt.js/dist/api/objects";
|
import { Channels } from "revolt.js/dist/api/objects";
|
||||||
import InputBox from "../../../components/ui/InputBox";
|
import InputBox from "../../../components/ui/InputBox";
|
||||||
import { SettingsTextArea } from "../SettingsTextArea";
|
import TextArea from "../../../components/ui/TextArea";
|
||||||
import { useContext, useEffect, useState } from "preact/hooks";
|
import { useContext, useEffect, useState } from "preact/hooks";
|
||||||
import { AppContext } from "../../../context/revoltjs/RevoltClient";
|
import { AppContext } from "../../../context/revoltjs/RevoltClient";
|
||||||
import { FileUploader } from "../../../context/revoltjs/FileUploads";
|
import { FileUploader } from "../../../context/revoltjs/FileUploads";
|
||||||
|
@ -70,14 +70,14 @@ export function Overview({ channel }: Props) {
|
||||||
<Text id="app.main.groups.description" /> :
|
<Text id="app.main.groups.description" /> :
|
||||||
<Text id="app.main.servers.channel_description" /> }
|
<Text id="app.main.servers.channel_description" /> }
|
||||||
</h3>
|
</h3>
|
||||||
<SettingsTextArea
|
<TextArea
|
||||||
maxRows={10}
|
// maxRows={10}
|
||||||
minHeight={60}
|
// minHeight={60}
|
||||||
maxLength={1024}
|
maxLength={1024}
|
||||||
value={description}
|
value={description}
|
||||||
placeholder={"Add a description..."}
|
placeholder={"Add a description..."}
|
||||||
onChange={content => {
|
onChange={ev => {
|
||||||
setDescription(content);
|
setDescription(ev.currentTarget.value);
|
||||||
if (!changed) setChanged(true)
|
if (!changed) setChanged(true)
|
||||||
}}
|
}}
|
||||||
/>
|
/>
|
||||||
|
|
|
@ -6,11 +6,11 @@ import { Users } from "revolt.js/dist/api/objects";
|
||||||
import { Link, useHistory } from "react-router-dom";
|
import { Link, useHistory } from "react-router-dom";
|
||||||
import Overline from "../../../components/ui/Overline";
|
import Overline from "../../../components/ui/Overline";
|
||||||
import { AtSign, Key, Mail } from "@styled-icons/feather";
|
import { AtSign, Key, Mail } from "@styled-icons/feather";
|
||||||
import { useForceUpdate, useSelf } from "../../../context/revoltjs/hooks";
|
|
||||||
import UserIcon from "../../../components/common/UserIcon";
|
|
||||||
import { useContext, useEffect, useState } from "preact/hooks";
|
import { useContext, useEffect, useState } from "preact/hooks";
|
||||||
import { ClientStatus, StatusContext } from "../../../context/revoltjs/RevoltClient";
|
import UserIcon from "../../../components/common/user/UserIcon";
|
||||||
|
import { useForceUpdate, useSelf } from "../../../context/revoltjs/hooks";
|
||||||
import { useIntermediate } from "../../../context/intermediate/Intermediate";
|
import { useIntermediate } from "../../../context/intermediate/Intermediate";
|
||||||
|
import { ClientStatus, StatusContext } from "../../../context/revoltjs/RevoltClient";
|
||||||
|
|
||||||
export function Account() {
|
export function Account() {
|
||||||
const { openScreen } = useIntermediate();
|
const { openScreen } = useIntermediate();
|
||||||
|
|
|
@ -2,8 +2,8 @@ import { Text } from "preact-i18n";
|
||||||
import styles from "./Panes.module.scss";
|
import styles from "./Panes.module.scss";
|
||||||
import { debounce } from "../../../lib/debounce";
|
import { debounce } from "../../../lib/debounce";
|
||||||
import Button from "../../../components/ui/Button";
|
import Button from "../../../components/ui/Button";
|
||||||
|
import TextArea from "../../../components/ui/TextArea";
|
||||||
import InputBox from "../../../components/ui/InputBox";
|
import InputBox from "../../../components/ui/InputBox";
|
||||||
import { SettingsTextArea } from "../SettingsTextArea";
|
|
||||||
import { connectState } from "../../../redux/connector";
|
import { connectState } from "../../../redux/connector";
|
||||||
import { WithDispatcher } from "../../../redux/reducers";
|
import { WithDispatcher } from "../../../redux/reducers";
|
||||||
import ColourSwatches from "../../../components/ui/ColourSwatches";
|
import ColourSwatches from "../../../components/ui/ColourSwatches";
|
||||||
|
@ -267,11 +267,12 @@ export function Component(props: Props & WithDispatcher) {
|
||||||
<h3>
|
<h3>
|
||||||
<Text id="app.settings.pages.appearance.custom_css" />
|
<Text id="app.settings.pages.appearance.custom_css" />
|
||||||
</h3>
|
</h3>
|
||||||
<SettingsTextArea
|
<TextArea
|
||||||
maxRows={20}
|
// maxRows={20}
|
||||||
minHeight={480}
|
// minHeight={480}
|
||||||
|
code
|
||||||
value={css}
|
value={css}
|
||||||
onChange={css => setCSS(css)}
|
onChange={ev => setCSS(ev.currentTarget.value)}
|
||||||
/>
|
/>
|
||||||
</details>
|
</details>
|
||||||
|
|
||||||
|
|
|
@ -4,7 +4,7 @@ import { Localizer, Text } from "preact-i18n";
|
||||||
import Radio from "../../../components/ui/Radio";
|
import Radio from "../../../components/ui/Radio";
|
||||||
import Button from "../../../components/ui/Button";
|
import Button from "../../../components/ui/Button";
|
||||||
import InputBox from "../../../components/ui/InputBox";
|
import InputBox from "../../../components/ui/InputBox";
|
||||||
import { SettingsTextArea } from "../SettingsTextArea";
|
import TextArea from "../../../components/ui/TextArea";
|
||||||
import { useSelf } from "../../../context/revoltjs/hooks";
|
import { useSelf } from "../../../context/revoltjs/hooks";
|
||||||
|
|
||||||
export function Feedback() {
|
export function Feedback() {
|
||||||
|
@ -80,12 +80,12 @@ export function Feedback() {
|
||||||
<h3>
|
<h3>
|
||||||
<Text id="app.settings.pages.feedback.describe" />
|
<Text id="app.settings.pages.feedback.describe" />
|
||||||
</h3>
|
</h3>
|
||||||
<SettingsTextArea
|
<TextArea
|
||||||
maxRows={10}
|
// maxRows={10}
|
||||||
value={description}
|
value={description}
|
||||||
id="entry.685672624"
|
id="entry.685672624"
|
||||||
disabled={state === "sending"}
|
disabled={state === "sending"}
|
||||||
onChange={value => setDescription(value)}
|
onChange={ev => setDescription(ev.currentTarget.value)}
|
||||||
/>
|
/>
|
||||||
<Button type="submit" contrast>
|
<Button type="submit" contrast>
|
||||||
<Text id="app.settings.pages.feedback.send" />
|
<Text id="app.settings.pages.feedback.send" />
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
import styles from "./Panes.module.scss";
|
import styles from "./Panes.module.scss";
|
||||||
import Button from "../../../components/ui/Button";
|
import Button from "../../../components/ui/Button";
|
||||||
import { Users } from "revolt.js/dist/api/objects";
|
import { Users } from "revolt.js/dist/api/objects";
|
||||||
import { SettingsTextArea } from "../SettingsTextArea";
|
import TextArea from "../../../components/ui/TextArea";
|
||||||
import { IntlContext, Text, translate } from "preact-i18n";
|
import { IntlContext, Text, translate } from "preact-i18n";
|
||||||
import { useContext, useEffect, useState } from "preact/hooks";
|
import { useContext, useEffect, useState } from "preact/hooks";
|
||||||
import { FileUploader } from "../../../context/revoltjs/FileUploads";
|
import { FileUploader } from "../../../context/revoltjs/FileUploads";
|
||||||
|
@ -93,14 +93,14 @@ export function Profile() {
|
||||||
<h3>
|
<h3>
|
||||||
<Text id="app.settings.pages.profile.info" />
|
<Text id="app.settings.pages.profile.info" />
|
||||||
</h3>
|
</h3>
|
||||||
<SettingsTextArea
|
<TextArea
|
||||||
maxRows={10}
|
// maxRows={10}
|
||||||
minHeight={200}
|
// minHeight={200}
|
||||||
maxLength={2000}
|
maxLength={2000}
|
||||||
value={profile?.content ?? ""}
|
value={profile?.content ?? ""}
|
||||||
disabled={typeof profile === "undefined"}
|
disabled={typeof profile === "undefined"}
|
||||||
onChange={content => {
|
onChange={ev => {
|
||||||
setProfile({ ...profile, content })
|
setProfile({ ...profile, content: ev.currentTarget.value })
|
||||||
if (!changed) setChanged(true)
|
if (!changed) setChanged(true)
|
||||||
}}
|
}}
|
||||||
placeholder={translate(
|
placeholder={translate(
|
||||||
|
|
|
@ -2,8 +2,8 @@ import styles from './Panes.module.scss';
|
||||||
import { XCircle } from "@styled-icons/feather";
|
import { XCircle } from "@styled-icons/feather";
|
||||||
import { useEffect, useState } from "preact/hooks";
|
import { useEffect, useState } from "preact/hooks";
|
||||||
import Preloader from "../../../components/ui/Preloader";
|
import Preloader from "../../../components/ui/Preloader";
|
||||||
import UserIcon from "../../../components/common/UserIcon";
|
|
||||||
import IconButton from "../../../components/ui/IconButton";
|
import IconButton from "../../../components/ui/IconButton";
|
||||||
|
import UserIcon from "../../../components/common/user/UserIcon";
|
||||||
import { getChannelName } from "../../../context/revoltjs/util";
|
import { getChannelName } from "../../../context/revoltjs/util";
|
||||||
import { Invites as InvitesNS, Servers } from "revolt.js/dist/api/objects";
|
import { Invites as InvitesNS, Servers } from "revolt.js/dist/api/objects";
|
||||||
import { useChannels, useForceUpdate, useUsers } from "../../../context/revoltjs/hooks";
|
import { useChannels, useForceUpdate, useUsers } from "../../../context/revoltjs/hooks";
|
||||||
|
|
|
@ -2,7 +2,7 @@ import { Text } from "preact-i18n";
|
||||||
import styles from './Panes.module.scss';
|
import styles from './Panes.module.scss';
|
||||||
import Button from "../../../components/ui/Button";
|
import Button from "../../../components/ui/Button";
|
||||||
import { Servers } from "revolt.js/dist/api/objects";
|
import { Servers } from "revolt.js/dist/api/objects";
|
||||||
import { SettingsTextArea } from "../SettingsTextArea";
|
import TextArea from "../../../components/ui/TextArea";
|
||||||
import InputBox from "../../../components/ui/InputBox";
|
import InputBox from "../../../components/ui/InputBox";
|
||||||
import { useContext, useEffect, useState } from "preact/hooks";
|
import { useContext, useEffect, useState } from "preact/hooks";
|
||||||
import { AppContext } from "../../../context/revoltjs/RevoltClient";
|
import { AppContext } from "../../../context/revoltjs/RevoltClient";
|
||||||
|
@ -65,14 +65,14 @@ export function Overview({ server }: Props) {
|
||||||
<h3>
|
<h3>
|
||||||
<Text id="app.main.servers.description" />
|
<Text id="app.main.servers.description" />
|
||||||
</h3>
|
</h3>
|
||||||
<SettingsTextArea
|
<TextArea
|
||||||
maxRows={10}
|
// maxRows={10}
|
||||||
minHeight={60}
|
// minHeight={60}
|
||||||
maxLength={1024}
|
maxLength={1024}
|
||||||
value={description}
|
value={description}
|
||||||
placeholder={"Add a topic..."}
|
placeholder={"Add a topic..."}
|
||||||
onChange={content => {
|
onChange={ev => {
|
||||||
setDescription(content);
|
setDescription(ev.currentTarget.value);
|
||||||
if (!changed) setChanged(true)
|
if (!changed) setChanged(true)
|
||||||
}}
|
}}
|
||||||
/>
|
/>
|
||||||
|
|
Loading…
Reference in a new issue