move the user fetch for mentions to redux

pull/1671/head
Audric Ackermann 4 years ago
parent c8878f0a19
commit 0192f295f2
No known key found for this signature in database
GPG Key ID: 999F434D76324AD4

@ -2,7 +2,7 @@ import React from 'react';
import { RenderTextCallbackType } from '../../types/Util'; import { RenderTextCallbackType } from '../../types/Util';
import classNames from 'classnames'; import classNames from 'classnames';
import { FindMember } from '../../util'; import { FindMember } from '../../util/findMember';
import { useInterval } from '../../hooks/useInterval'; import { useInterval } from '../../hooks/useInterval';
import { PubKey } from '../../session/types'; import { PubKey } from '../../session/types';
import { ConversationModel } from '../../models/conversation'; import { ConversationModel } from '../../models/conversation';

@ -21,8 +21,6 @@ interface State {
} }
export class AddModeratorsDialog extends React.Component<Props, State> { export class AddModeratorsDialog extends React.Component<Props, State> {
private channelAPI: any;
constructor(props: Props) { constructor(props: Props) {
super(props); super(props);

@ -24,8 +24,6 @@ interface State {
} }
export class RemoveModeratorsDialog extends React.Component<Props, State> { export class RemoveModeratorsDialog extends React.Component<Props, State> {
private channelAPI: any;
constructor(props: any) { constructor(props: any) {
super(props); super(props);
@ -41,7 +39,7 @@ export class RemoveModeratorsDialog extends React.Component<Props, State> {
} }
public componentDidMount() { public componentDidMount() {
void this.refreshModList(); this.refreshModList();
} }
public render() { public render() {
@ -210,7 +208,7 @@ export class RemoveModeratorsDialog extends React.Component<Props, State> {
} catch (e) { } catch (e) {
window?.log?.error('Got error while adding moderator:', e); window?.log?.error('Got error while adding moderator:', e);
} finally { } finally {
await this.refreshModList(); this.refreshModList();
} }
} }
} }

@ -33,6 +33,11 @@ import { SessionMemberListItem } from '../SessionMemberListItem';
import autoBind from 'auto-bind'; import autoBind from 'auto-bind';
import { SectionType } from '../ActionsPanel'; import { SectionType } from '../ActionsPanel';
import { SessionSettingCategory } from '../settings/SessionSettings'; import { SessionSettingCategory } from '../settings/SessionSettings';
import {
defaultMentionsInputReducer,
updateMentionsMembers,
} from '../../../state/ducks/mentionsInput';
import { getMentionsInput } from '../../../state/selectors/mentionsInput';
export interface ReplyingToMessageProps { export interface ReplyingToMessageProps {
convoId: string; convoId: string;
@ -393,13 +398,30 @@ export class SessionCompositionBox extends React.Component<Props, State> {
); );
} }
private fetchUsersForOpenGroup(query: any, callback: any) {
const mentionsInput = getMentionsInput(window?.inboxStore?.getState() || []);
const filtered =
mentionsInput
.filter(d => !!d)
.filter(d => d.authorProfileName !== 'Anonymous')
.filter(d => d.authorProfileName?.toLowerCase()?.includes(query.toLowerCase()))
// Transform the users to what react-mentions expects
.map(user => {
return {
display: user.authorProfileName,
id: user.authorPhoneNumber,
};
}) || [];
callback(filtered);
}
private fetchUsersForGroup(query: any, callback: any) { private fetchUsersForGroup(query: any, callback: any) {
let overridenQuery = query; let overridenQuery = query;
if (!query) { if (!query) {
overridenQuery = ''; overridenQuery = '';
} }
if (this.props.isPublic) { if (this.props.isPublic) {
window.log.warn('mentions users for opengroup v2 todo'); this.fetchUsersForOpenGroup(overridenQuery, callback);
return; return;
} }
if (!this.props.isPrivate) { if (!this.props.isPrivate) {

@ -31,6 +31,7 @@ import autoBind from 'auto-bind';
import { getDecryptedMediaUrl } from '../../../session/crypto/DecryptedAttachmentsManager'; import { getDecryptedMediaUrl } from '../../../session/crypto/DecryptedAttachmentsManager';
import { deleteOpenGroupMessages } from '../../../interactions/conversation'; import { deleteOpenGroupMessages } from '../../../interactions/conversation';
import { ConversationTypeEnum } from '../../../models/conversation'; import { ConversationTypeEnum } from '../../../models/conversation';
import { updateMentionsMembers } from '../../../state/ducks/mentionsInput';
interface State { interface State {
// Message sending progress // Message sending progress
@ -132,7 +133,8 @@ export class SessionConversation extends React.Component<Props, State> {
global.clearInterval(this.publicMembersRefreshTimeout); global.clearInterval(this.publicMembersRefreshTimeout);
this.publicMembersRefreshTimeout = undefined; this.publicMembersRefreshTimeout = undefined;
} }
// shown convo changed. reset the list of members quotable
window?.inboxStore?.dispatch(updateMentionsMembers([]));
// if the newConversation changed, and is public, start our refresh members list // if the newConversation changed, and is public, start our refresh members list
if (newConversation.isPublic) { if (newConversation.isPublic) {
// TODO use abort controller to stop those requests too // TODO use abort controller to stop those requests too
@ -1117,6 +1119,6 @@ export class SessionConversation extends React.Component<Props, State> {
}; };
}); });
window.lokiPublicChatAPI.setListOfMembers(allMembers); window.inboxStore?.dispatch(updateMentionsMembers(allMembers));
} }
} }

@ -174,7 +174,7 @@ export async function openGroupV2GetRoomInfo({
isAuthRequired: false, isAuthRequired: false,
endpoint: `rooms/${roomId}`, endpoint: `rooms/${roomId}`,
}; };
const result = (await exports.sendApiV2Request(request)) as any; const result = await exports.sendApiV2Request(request);
if (result?.result?.room) { if (result?.result?.room) {
const { id, name, image_id: imageId } = result?.result?.room; const { id, name, image_id: imageId } = result?.result?.room;
@ -222,7 +222,7 @@ export const postMessageRetryable = async (
if (statusCode !== 200) { if (statusCode !== 200) {
throw new Error(`Could not postMessage, status code: ${statusCode}`); throw new Error(`Could not postMessage, status code: ${statusCode}`);
} }
const rawMessage = (result as any)?.result?.message; const rawMessage = result?.result?.message;
if (!rawMessage) { if (!rawMessage) {
throw new Error('postMessage parsing failed'); throw new Error('postMessage parsing failed');
} }
@ -377,7 +377,7 @@ export const downloadFileOpenGroupV2 = async (
} }
// we should probably change the logic of sendOnionRequest to not have all those levels // we should probably change the logic of sendOnionRequest to not have all those levels
const base64Data = (result as any)?.result?.result as string | undefined; const base64Data = result?.result?.result as string | undefined;
if (!base64Data) { if (!base64Data) {
return null; return null;
@ -404,7 +404,7 @@ export const downloadFileOpenGroupV2ByUrl = async (
} }
// we should probably change the logic of sendOnionRequest to not have all those levels // we should probably change the logic of sendOnionRequest to not have all those levels
const base64Data = (result as any)?.result?.result as string | undefined; const base64Data = result?.result?.result as string | undefined;
if (!base64Data) { if (!base64Data) {
return null; return null;
@ -436,7 +436,7 @@ export const downloadPreviewOpenGroupV2 = async (
} }
// we should probably change the logic of sendOnionRequest to not have all those levels // we should probably change the logic of sendOnionRequest to not have all those levels
const base64Data = (result as any)?.result?.result as string | undefined; const base64Data = result?.result?.result as string | undefined;
if (!base64Data) { if (!base64Data) {
return null; return null;
@ -475,7 +475,7 @@ export const uploadFileOpenGroupV2 = async (
} }
// we should probably change the logic of sendOnionRequest to not have all those levels // we should probably change the logic of sendOnionRequest to not have all those levels
const fileId = (result as any)?.result?.result as number | undefined; const fileId = result?.result?.result as number | undefined;
if (!fileId) { if (!fileId) {
return null; return null;
} }

@ -43,7 +43,6 @@ export class OpenGroupManagerV2 {
/** /**
* When we get our configuration from the network, we might get a few times the same open group on two different messages. * When we get our configuration from the network, we might get a few times the same open group on two different messages.
* If we don't do anything, we will join them multiple times. * If we don't do anything, we will join them multiple times.
* Even if the convo exists only once, the lokiPublicChat API will have several instances polling for the same open group.
* Which will cause a lot of duplicate messages as they will be merged on a single conversation. * Which will cause a lot of duplicate messages as they will be merged on a single conversation.
* *
* To avoid this issue, we allow only a single join of a specific opengroup at a time. * To avoid this issue, we allow only a single join of a specific opengroup at a time.

@ -93,8 +93,8 @@ export class MessageSentHandler {
if (!wrappedEnvelope) { if (!wrappedEnvelope) {
window?.log?.warn('Should send PN notify but no wrapped envelope set.'); window?.log?.warn('Should send PN notify but no wrapped envelope set.');
} else { } else {
const result = await PnServer.notify(wrappedEnvelope, sentMessage.device); // we do not really care about the retsult.
debugger; await PnServer.notify(wrappedEnvelope, sentMessage.device);
} }
} }

@ -0,0 +1,27 @@
import { createSlice } from '@reduxjs/toolkit';
export type MentionsInputState = Array<{
id: string;
authorPhoneNumber: string;
authorProfileName: string;
}>;
const initialState: MentionsInputState = [];
/**
* This slice is the one holding the default joinable rooms fetched once in a while from the default opengroup v2 server.
*/
const mentionsInputSlice = createSlice({
name: 'mentionsInput',
initialState,
reducers: {
updateMentionsMembers(state, action) {
window?.log?.warn('updating mentions input members', action.payload);
return action.payload as MentionsInputState;
},
},
});
const { actions, reducer } = mentionsInputSlice;
export const { updateMentionsMembers } = actions;
export const defaultMentionsInputReducer = reducer;

@ -6,6 +6,10 @@ import { reducer as user, UserStateType } from './ducks/user';
import { reducer as theme, ThemeStateType } from './ducks/theme'; import { reducer as theme, ThemeStateType } from './ducks/theme';
import { reducer as section, SectionStateType } from './ducks/section'; import { reducer as section, SectionStateType } from './ducks/section';
import { defaultRoomReducer as defaultRooms, DefaultRoomsState } from './ducks/defaultRooms'; import { defaultRoomReducer as defaultRooms, DefaultRoomsState } from './ducks/defaultRooms';
import {
defaultMentionsInputReducer as mentionsInput,
MentionsInputState,
} from './ducks/mentionsInput';
export type StateType = { export type StateType = {
search: SearchStateType; search: SearchStateType;
@ -15,6 +19,7 @@ export type StateType = {
theme: ThemeStateType; theme: ThemeStateType;
section: SectionStateType; section: SectionStateType;
defaultRooms: DefaultRoomsState; defaultRooms: DefaultRoomsState;
mentionsInput: MentionsInputState;
}; };
export const reducers = { export const reducers = {
@ -27,6 +32,7 @@ export const reducers = {
theme, theme,
section, section,
defaultRooms, defaultRooms,
mentionsInput,
}; };
// Making this work would require that our reducer signature supported AnyAction, not // Making this work would require that our reducer signature supported AnyAction, not

@ -0,0 +1,5 @@
import { StateType } from '../reducer';
import { MentionsInputState } from '../ducks/mentionsInput';
export const getMentionsInput = (state: StateType): MentionsInputState => state.mentionsInput;

@ -37,6 +37,7 @@ export function generateOpenGroupVisibleMessage(): OpenGroupVisibleMessage {
} }
export function generateOpenGroupV2RoomInfos(): OpenGroupRequestCommonType { export function generateOpenGroupV2RoomInfos(): OpenGroupRequestCommonType {
// tslint:disable-next-line: no-http-string
return { roomId: 'main', serverUrl: 'http://116.203.70.33' }; return { roomId: 'main', serverUrl: 'http://116.203.70.33' };
} }

@ -1,5 +1,6 @@
import { ConversationModel } from '../models/conversation'; import { ConversationModel } from '../models/conversation';
import { ConversationController } from '../session/conversations'; import { ConversationController } from '../session/conversations';
import { MentionsInputState } from '../state/ducks/mentionsInput';
// tslint:disable: no-unnecessary-class // tslint:disable: no-unnecessary-class
export class FindMember { export class FindMember {
@ -29,7 +30,8 @@ export class FindMember {
} }
if (thisConvo.isPublic()) { if (thisConvo.isPublic()) {
const publicMembers = await window.lokiPublicChatAPI.getListOfMembers(); const publicMembers = (await window.inboxStore?.getState()
.mentionsInput) as MentionsInputState;
const memberConversations = publicMembers const memberConversations = publicMembers
.map(publicMember => .map(publicMember =>
ConversationController.getInstance().get(publicMember.authorPhoneNumber) ConversationController.getInstance().get(publicMember.authorPhoneNumber)

@ -4,7 +4,6 @@ import { isFileDangerous } from './isFileDangerous';
import { missingCaseError } from './missingCaseError'; import { missingCaseError } from './missingCaseError';
import { migrateColor } from './migrateColor'; import { migrateColor } from './migrateColor';
import { makeLookup } from './makeLookup'; import { makeLookup } from './makeLookup';
import { FindMember } from './findMember';
import * as PasswordUtil from './passwordUtils'; import * as PasswordUtil from './passwordUtils';
import * as AttachmentUtil from './attachmentsUtil'; import * as AttachmentUtil from './attachmentsUtil';
import * as LinkPreviewUtil from './linkPreviewFetch'; import * as LinkPreviewUtil from './linkPreviewFetch';
@ -19,7 +18,6 @@ export {
migrateColor, migrateColor,
missingCaseError, missingCaseError,
PasswordUtil, PasswordUtil,
FindMember,
AttachmentUtil, AttachmentUtil,
LinkPreviewUtil, LinkPreviewUtil,
}; };

Loading…
Cancel
Save