2017-04-10 17:09:26 +08:00
|
|
|
/*
|
|
|
|
Copyright 2017 Vector Creations Ltd
|
|
|
|
|
|
|
|
Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
you may not use this file except in compliance with the License.
|
|
|
|
You may obtain a copy of the License at
|
|
|
|
|
|
|
|
http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
|
|
|
|
Unless required by applicable law or agreed to in writing, software
|
|
|
|
distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
See the License for the specific language governing permissions and
|
|
|
|
limitations under the License.
|
|
|
|
*/
|
2017-05-25 18:39:08 +08:00
|
|
|
import { _t } from './languageHandler';
|
2017-05-23 22:16:31 +08:00
|
|
|
|
|
|
|
export function levelRoleMap() {
|
|
|
|
const LEVEL_ROLE_MAP = {};
|
|
|
|
LEVEL_ROLE_MAP[undefined] = _t('Default');
|
|
|
|
LEVEL_ROLE_MAP[0] = _t('User');
|
|
|
|
LEVEL_ROLE_MAP[50] = _t('Moderator');
|
|
|
|
LEVEL_ROLE_MAP[100] = _t('Admin');
|
|
|
|
return LEVEL_ROLE_MAP;
|
|
|
|
}
|
2017-04-10 17:09:26 +08:00
|
|
|
|
|
|
|
export function textualPowerLevel(level, userDefault) {
|
2017-05-23 22:16:31 +08:00
|
|
|
const LEVEL_ROLE_MAP = this.levelRoleMap();
|
2017-04-10 17:09:26 +08:00
|
|
|
if (LEVEL_ROLE_MAP[level]) {
|
|
|
|
return LEVEL_ROLE_MAP[level] + (level !== undefined ? ` (${level})` : ` (${userDefault})`);
|
|
|
|
} else {
|
|
|
|
return level;
|
|
|
|
}
|
|
|
|
}
|