* Network metrics * update network-client ref * fix unit tests * missing catch error parsing * Replace API's to fetch all teams and channels for a user Update groupLabel to use a type definition Include effective Latency and Average Speed in the metrics Include parallel and sequential request counts * update network library and fix tests * feat(MM-61865): send network request telemetry data to the server (#8436) * feat(MM-61865): send network info telemetry data * unit testing * fix latency vs effectiveLatency * cleanup test * fix failing tests * fix spelling error * fix failing test * more cleanup * fix: improve parallel requests calculation (#8439) * fix: improve parallel requests calculation * fix test issue * multiple parallelGroups testing * calculateAverageSpeedWithCategories test * categorizedRequests in it's own describe * clean up duplicate tests * check for when groupLabel is non-existent * a case when groupLabel is non-existent * more testing with effective latency. * resolveAndFlattenModels with a capital F * add try..catch within resolveAndFlattenModels * update groupLabel to fix failing lint * fix linting issue due to unknown group label * forgot to push changes * fix the indentation problem again * add env var option for COLLECT_NETWORK_METRICS --------- Co-authored-by: Rahim Rahman <rahim.rahman@mattermost.com> Co-authored-by: Mattermost Build <build@mattermost.com>
35 lines
1.3 KiB
TypeScript
35 lines
1.3 KiB
TypeScript
// Copyright (c) 2015-present Mattermost, Inc. All Rights Reserved.
|
|
// See LICENSE.txt for license information.
|
|
|
|
import type ClientBase from './base';
|
|
|
|
export interface ClientPreferencesMix {
|
|
savePreferences: (userId: string, preferences: PreferenceType[], groupLabel?: RequestGroupLabel) => Promise<any>;
|
|
deletePreferences: (userId: string, preferences: PreferenceType[]) => Promise<any>;
|
|
getMyPreferences: (groupLabel?: RequestGroupLabel) => Promise<PreferenceType[]>;
|
|
}
|
|
|
|
const ClientPreferences = <TBase extends Constructor<ClientBase>>(superclass: TBase) => class extends superclass {
|
|
savePreferences = async (userId: string, preferences: PreferenceType[], groupLabel?: RequestGroupLabel) => {
|
|
return this.doFetch(
|
|
`${this.getPreferencesRoute(userId)}`,
|
|
{method: 'put', body: preferences, groupLabel},
|
|
);
|
|
};
|
|
|
|
getMyPreferences = async (groupLabel?: RequestGroupLabel) => {
|
|
return this.doFetch(
|
|
`${this.getPreferencesRoute('me')}`,
|
|
{method: 'get', groupLabel},
|
|
);
|
|
};
|
|
|
|
deletePreferences = async (userId: string, preferences: PreferenceType[]) => {
|
|
return this.doFetch(
|
|
`${this.getPreferencesRoute(userId)}/delete`,
|
|
{method: 'post', body: preferences},
|
|
);
|
|
};
|
|
};
|
|
|
|
export default ClientPreferences;
|