mirror of
https://github.com/mattermost/mattermost.git
synced 2025-02-25 18:55:24 -06:00
* PLT-2713 Added ability for admins to list users not in any team * Updated style of unit test * Split SearchableUserList to give better control over its properties * Added users without any teams to the user store * Added ManageUsers page * Renamed ManageUsers to SystemUsers * Added ability to search by user id in SystemUsers page * Added SystemUsersDropdown * Removed unnecessary injectIntl * Created TeamUtils * Reduced scope of system console heading CSS * Added team filter to TeamAnalytics page * Updated admin console sidebar * Removed unnecessary TODO * Removed unused reference to deleted modal * Fixed system console sidebar not scrolling on first load * Fixed TeamAnalytics page not rendering on first load * Fixed chart.js throwing an error when switching between teams * Changed TeamAnalytics header to show the team's display name * Fixed appearance of TeamAnalytics and SystemUsers on small screen widths * Fixed placement of 'No users found' message * Fixed teams not appearing in SystemUsers on first load * Updated user count text for SystemUsers * Changed search by id fallback to trigger less often * Fixed SystemUsers list items not updating when searching * Fixed localization strings for SystemUsers page
168 lines
7.1 KiB
JavaScript
168 lines
7.1 KiB
JavaScript
// Copyright (c) 2015 Mattermost, Inc. All Rights Reserved.
|
|
// See License.txt for license information.
|
|
|
|
import React from 'react';
|
|
|
|
import * as Utils from 'utils/utils.jsx';
|
|
|
|
import AdminSettings from './admin_settings.jsx';
|
|
import {FormattedMessage} from 'react-intl';
|
|
import SettingsGroup from './settings_group.jsx';
|
|
import TextSetting from './text_setting.jsx';
|
|
|
|
export default class ImageSettings extends AdminSettings {
|
|
constructor(props) {
|
|
super(props);
|
|
|
|
this.getConfigFromState = this.getConfigFromState.bind(this);
|
|
|
|
this.renderSettings = this.renderSettings.bind(this);
|
|
}
|
|
|
|
getConfigFromState(config) {
|
|
config.FileSettings.ThumbnailWidth = this.parseInt(this.state.thumbnailWidth);
|
|
config.FileSettings.ThumbnailHeight = this.parseInt(this.state.thumbnailHeight);
|
|
config.FileSettings.ProfileWidth = this.parseInt(this.state.profileWidth);
|
|
config.FileSettings.ProfileHeight = this.parseInt(this.state.profileHeight);
|
|
config.FileSettings.PreviewWidth = this.parseInt(this.state.previewWidth);
|
|
config.FileSettings.PreviewHeight = this.parseInt(this.state.previewHeight);
|
|
|
|
return config;
|
|
}
|
|
|
|
getStateFromConfig(config) {
|
|
return {
|
|
thumbnailWidth: config.FileSettings.ThumbnailWidth,
|
|
thumbnailHeight: config.FileSettings.ThumbnailHeight,
|
|
profileWidth: config.FileSettings.ProfileWidth,
|
|
profileHeight: config.FileSettings.ProfileHeight,
|
|
previewWidth: config.FileSettings.PreviewWidth,
|
|
previewHeight: config.FileSettings.PreviewHeight
|
|
};
|
|
}
|
|
|
|
renderTitle() {
|
|
return (
|
|
<FormattedMessage
|
|
id='admin.files.images'
|
|
defaultMessage='Images'
|
|
/>
|
|
);
|
|
}
|
|
|
|
renderSettings() {
|
|
return (
|
|
<SettingsGroup>
|
|
<TextSetting
|
|
id='thumbnailWidth'
|
|
label={
|
|
<FormattedMessage
|
|
id='admin.image.thumbWidthTitle'
|
|
defaultMessage='Attachment Thumbnail Width:'
|
|
/>
|
|
}
|
|
placeholder={Utils.localizeMessage('admin.image.thumbWidthExample', 'Ex "120"')}
|
|
helpText={
|
|
<FormattedMessage
|
|
id='admin.image.thumbWidthDescription'
|
|
defaultMessage='Width of thumbnails generated from uploaded images. Updating this value changes how thumbnail images render in future, but does not change images created in the past.'
|
|
/>
|
|
}
|
|
value={this.state.thumbnailWidth}
|
|
onChange={this.handleChange}
|
|
/>
|
|
<TextSetting
|
|
id='thumbnailHeight'
|
|
label={
|
|
<FormattedMessage
|
|
id='admin.image.thumbHeightTitle'
|
|
defaultMessage='Attachment Thumbnail Height:'
|
|
/>
|
|
}
|
|
placeholder={Utils.localizeMessage('admin.image.thumbHeightExample', 'Ex "100"')}
|
|
helpText={
|
|
<FormattedMessage
|
|
id='admin.image.thumbHeightDescription'
|
|
defaultMessage='Height of thumbnails generated from uploaded images. Updating this value changes how thumbnail images render in future, but does not change images created in the past.'
|
|
/>
|
|
}
|
|
value={this.state.thumbnailHeight}
|
|
onChange={this.handleChange}
|
|
/>
|
|
<TextSetting
|
|
id='profileWidth'
|
|
label={
|
|
<FormattedMessage
|
|
id='admin.image.profileWidthTitle'
|
|
defaultMessage='Profile Picture Width:'
|
|
/>
|
|
}
|
|
placeholder={Utils.localizeMessage('admin.image.profileWidthExample', 'Ex "1024"')}
|
|
helpText={
|
|
<FormattedMessage
|
|
id='admin.image.profileWidthDescription'
|
|
defaultMessage='Width of profile picture.'
|
|
/>
|
|
}
|
|
value={this.state.profileWidth}
|
|
onChange={this.handleChange}
|
|
/>
|
|
<TextSetting
|
|
id='profileHeight'
|
|
label={
|
|
<FormattedMessage
|
|
id='admin.image.profileHeightTitle'
|
|
defaultMessage='Profile Picture Height:'
|
|
/>
|
|
}
|
|
placeholder={Utils.localizeMessage('admin.image.profileHeightExample', 'Ex "0"')}
|
|
helpText={
|
|
<FormattedMessage
|
|
id='admin.image.profileHeightDescription'
|
|
defaultMessage='Height of profile picture.'
|
|
/>
|
|
}
|
|
value={this.state.profileHeight}
|
|
onChange={this.handleChange}
|
|
/>
|
|
<TextSetting
|
|
id='previewWidth'
|
|
label={
|
|
<FormattedMessage
|
|
id='admin.image.previewWidthTitle'
|
|
defaultMessage='Image Preview Width:'
|
|
/>
|
|
}
|
|
placeholder={Utils.localizeMessage('admin.image.previewWidthExample', 'Ex "1024"')}
|
|
helpText={
|
|
<FormattedMessage
|
|
id='admin.image.previewWidthDescription'
|
|
defaultMessage='Maximum width of preview image. Updating this value changes how preview images render in future, but does not change images created in the past.'
|
|
/>
|
|
}
|
|
value={this.state.previewWidth}
|
|
onChange={this.handleChange}
|
|
/>
|
|
<TextSetting
|
|
id='previewHeight'
|
|
label={
|
|
<FormattedMessage
|
|
id='admin.image.previewHeightTitle'
|
|
defaultMessage='Image Preview Height:'
|
|
/>
|
|
}
|
|
placeholder={Utils.localizeMessage('admin.image.previewHeightExample', 'Ex "0"')}
|
|
helpText={
|
|
<FormattedMessage
|
|
id='admin.image.previewHeightDescription'
|
|
defaultMessage='Maximum height of preview image ("0": Sets to auto-size). Updating this value changes how preview images render in future, but does not change images created in the past.'
|
|
/>
|
|
}
|
|
value={this.state.previewHeight}
|
|
onChange={this.handleChange}
|
|
/>
|
|
</SettingsGroup>
|
|
);
|
|
}
|
|
}
|