2023-01-12 14:02:26 +02:00
|
|
|
<template>
|
|
|
|
<div class="_gaps">
|
|
|
|
<MkInput v-model="name" :readonly="readonly">
|
|
|
|
<template #label>{{ i18n.ts._role.name }}</template>
|
|
|
|
</MkInput>
|
|
|
|
|
|
|
|
<MkTextarea v-model="description" :readonly="readonly">
|
|
|
|
<template #label>{{ i18n.ts._role.description }}</template>
|
|
|
|
</MkTextarea>
|
|
|
|
|
|
|
|
<MkInput v-model="color">
|
|
|
|
<template #label>{{ i18n.ts.color }}</template>
|
|
|
|
<template #caption>#RRGGBB</template>
|
|
|
|
</MkInput>
|
|
|
|
|
2023-01-13 01:23:52 +02:00
|
|
|
<MkSelect v-model="rolePermission" :readonly="readonly">
|
2023-01-15 23:35:16 +02:00
|
|
|
<template #label><i class="ti ti-shield-lock"></i> {{ i18n.ts._role.permission }}</template>
|
2023-01-13 04:03:54 +02:00
|
|
|
<template #caption><div v-html="i18n.ts._role.descriptionOfPermission.replaceAll('\n', '<br>')"></div></template>
|
2023-01-13 01:22:23 +02:00
|
|
|
<option value="normal">{{ i18n.ts.normalUser }}</option>
|
2023-01-12 14:02:26 +02:00
|
|
|
<option value="moderator">{{ i18n.ts.moderator }}</option>
|
|
|
|
<option value="administrator">{{ i18n.ts.administrator }}</option>
|
|
|
|
</MkSelect>
|
|
|
|
|
2023-01-13 04:03:54 +02:00
|
|
|
<MkSelect v-model="target" :readonly="readonly">
|
2023-01-15 23:35:16 +02:00
|
|
|
<template #label><i class="ti ti-users"></i> {{ i18n.ts._role.assignTarget }}</template>
|
2023-01-13 04:03:54 +02:00
|
|
|
<template #caption><div v-html="i18n.ts._role.descriptionOfAssignTarget.replaceAll('\n', '<br>')"></div></template>
|
|
|
|
<option value="manual">{{ i18n.ts._role.manual }}</option>
|
|
|
|
<option value="conditional">{{ i18n.ts._role.conditional }}</option>
|
|
|
|
</MkSelect>
|
|
|
|
|
|
|
|
<MkFolder v-if="target === 'conditional'" default-open>
|
|
|
|
<template #label>{{ i18n.ts._role.condition }}</template>
|
|
|
|
<div class="_gaps">
|
|
|
|
<RolesEditorFormula v-model="condFormula"/>
|
|
|
|
</div>
|
|
|
|
</MkFolder>
|
|
|
|
|
2023-01-12 14:02:26 +02:00
|
|
|
<FormSlot>
|
2023-01-15 23:35:16 +02:00
|
|
|
<template #label><i class="ti ti-license"></i> {{ i18n.ts._role.policies }}</template>
|
2023-01-12 14:02:26 +02:00
|
|
|
<div class="_gaps_s">
|
2023-01-15 22:19:26 +02:00
|
|
|
<MkInput v-model="q" type="search">
|
|
|
|
<template #prefix><i class="ti ti-search"></i></template>
|
|
|
|
</MkInput>
|
|
|
|
|
|
|
|
<MkFolder v-if="matchQuery([i18n.ts._role._options.rateLimitFactor, 'rateLimitFactor'])">
|
2023-01-15 09:52:12 +02:00
|
|
|
<template #label>{{ i18n.ts._role._options.rateLimitFactor }}</template>
|
2023-01-15 23:35:16 +02:00
|
|
|
<template #suffix>
|
|
|
|
<span v-if="policies.rateLimitFactor.useDefault" :class="$style.useDefaultLabel">{{ i18n.ts._role.useBaseValue }}</span>
|
|
|
|
<span v-else>{{ `${Math.floor(policies.rateLimitFactor.value * 100)}%` }}</span>
|
|
|
|
<span :class="$style.priorityIndicator"><i :class="getPriorityIcon(policies.rateLimitFactor)"></i></span>
|
|
|
|
</template>
|
2023-01-15 09:52:12 +02:00
|
|
|
<div class="_gaps">
|
2023-01-15 13:52:53 +02:00
|
|
|
<MkSwitch v-model="policies.rateLimitFactor.useDefault" :readonly="readonly">
|
2023-01-15 09:52:12 +02:00
|
|
|
<template #label>{{ i18n.ts._role.useBaseValue }}</template>
|
|
|
|
</MkSwitch>
|
2023-01-15 13:52:53 +02:00
|
|
|
<MkRange :model-value="policies.rateLimitFactor.value * 100" :min="30" :max="300" :step="10" :text-converter="(v) => `${v}%`" @update:model-value="v => policies.rateLimitFactor.value = (v / 100)">
|
2023-01-15 12:10:39 +02:00
|
|
|
<template #label>{{ i18n.ts._role._options.rateLimitFactor }}</template>
|
2023-01-15 09:52:12 +02:00
|
|
|
<template #caption>{{ i18n.ts._role._options.descriptionOfRateLimitFactor }}</template>
|
|
|
|
</MkRange>
|
2023-01-15 13:52:53 +02:00
|
|
|
<MkRange v-model="policies.rateLimitFactor.priority" :min="0" :max="2" :step="1" easing :text-converter="(v) => v === 0 ? i18n.ts._role._priority.low : v === 1 ? i18n.ts._role._priority.middle : v === 2 ? i18n.ts._role._priority.high : ''">
|
2023-01-15 12:10:39 +02:00
|
|
|
<template #label>{{ i18n.ts._role.priority }}</template>
|
|
|
|
</MkRange>
|
2023-01-15 09:52:12 +02:00
|
|
|
</div>
|
|
|
|
</MkFolder>
|
|
|
|
|
2023-01-15 22:19:26 +02:00
|
|
|
<MkFolder v-if="matchQuery([i18n.ts._role._options.gtlAvailable, 'gtlAvailable'])">
|
2023-01-12 14:02:26 +02:00
|
|
|
<template #label>{{ i18n.ts._role._options.gtlAvailable }}</template>
|
2023-01-15 23:35:16 +02:00
|
|
|
<template #suffix>
|
|
|
|
<span v-if="policies.gtlAvailable.useDefault" :class="$style.useDefaultLabel">{{ i18n.ts._role.useBaseValue }}</span>
|
|
|
|
<span v-else>{{ policies.gtlAvailable.value ? i18n.ts.yes : i18n.ts.no }}</span>
|
|
|
|
<span :class="$style.priorityIndicator"><i :class="getPriorityIcon(policies.gtlAvailable)"></i></span>
|
|
|
|
</template>
|
2023-01-12 14:02:26 +02:00
|
|
|
<div class="_gaps">
|
2023-01-15 13:52:53 +02:00
|
|
|
<MkSwitch v-model="policies.gtlAvailable.useDefault" :readonly="readonly">
|
2023-01-12 14:02:26 +02:00
|
|
|
<template #label>{{ i18n.ts._role.useBaseValue }}</template>
|
|
|
|
</MkSwitch>
|
2023-01-15 13:52:53 +02:00
|
|
|
<MkSwitch v-model="policies.gtlAvailable.value" :disabled="policies.gtlAvailable.useDefault" :readonly="readonly">
|
2023-01-12 14:02:26 +02:00
|
|
|
<template #label>{{ i18n.ts.enable }}</template>
|
|
|
|
</MkSwitch>
|
2023-01-15 13:52:53 +02:00
|
|
|
<MkRange v-model="policies.gtlAvailable.priority" :min="0" :max="2" :step="1" easing :text-converter="(v) => v === 0 ? i18n.ts._role._priority.low : v === 1 ? i18n.ts._role._priority.middle : v === 2 ? i18n.ts._role._priority.high : ''">
|
2023-01-15 12:10:39 +02:00
|
|
|
<template #label>{{ i18n.ts._role.priority }}</template>
|
|
|
|
</MkRange>
|
2023-01-12 14:02:26 +02:00
|
|
|
</div>
|
|
|
|
</MkFolder>
|
|
|
|
|
2023-01-15 22:19:26 +02:00
|
|
|
<MkFolder v-if="matchQuery([i18n.ts._role._options.ltlAvailable, 'ltlAvailable'])">
|
2023-01-12 14:02:26 +02:00
|
|
|
<template #label>{{ i18n.ts._role._options.ltlAvailable }}</template>
|
2023-01-15 23:35:16 +02:00
|
|
|
<template #suffix>
|
|
|
|
<span v-if="policies.ltlAvailable.useDefault" :class="$style.useDefaultLabel">{{ i18n.ts._role.useBaseValue }}</span>
|
|
|
|
<span v-else>{{ policies.ltlAvailable.value ? i18n.ts.yes : i18n.ts.no }}</span>
|
|
|
|
<span :class="$style.priorityIndicator"><i :class="getPriorityIcon(policies.ltlAvailable)"></i></span>
|
|
|
|
</template>
|
2023-01-12 14:02:26 +02:00
|
|
|
<div class="_gaps">
|
2023-01-15 13:52:53 +02:00
|
|
|
<MkSwitch v-model="policies.ltlAvailable.useDefault" :readonly="readonly">
|
2023-01-12 14:02:26 +02:00
|
|
|
<template #label>{{ i18n.ts._role.useBaseValue }}</template>
|
|
|
|
</MkSwitch>
|
2023-01-15 13:52:53 +02:00
|
|
|
<MkSwitch v-model="policies.ltlAvailable.value" :disabled="policies.ltlAvailable.useDefault" :readonly="readonly">
|
2023-01-12 14:02:26 +02:00
|
|
|
<template #label>{{ i18n.ts.enable }}</template>
|
|
|
|
</MkSwitch>
|
2023-01-15 13:52:53 +02:00
|
|
|
<MkRange v-model="policies.ltlAvailable.priority" :min="0" :max="2" :step="1" easing :text-converter="(v) => v === 0 ? i18n.ts._role._priority.low : v === 1 ? i18n.ts._role._priority.middle : v === 2 ? i18n.ts._role._priority.high : ''">
|
2023-01-15 12:10:39 +02:00
|
|
|
<template #label>{{ i18n.ts._role.priority }}</template>
|
|
|
|
</MkRange>
|
2023-01-12 14:02:26 +02:00
|
|
|
</div>
|
|
|
|
</MkFolder>
|
|
|
|
|
2023-01-15 22:19:26 +02:00
|
|
|
<MkFolder v-if="matchQuery([i18n.ts._role._options.canPublicNote, 'canPublicNote'])">
|
2023-01-12 14:02:26 +02:00
|
|
|
<template #label>{{ i18n.ts._role._options.canPublicNote }}</template>
|
2023-01-15 23:35:16 +02:00
|
|
|
<template #suffix>
|
|
|
|
<span v-if="policies.canPublicNote.useDefault" :class="$style.useDefaultLabel">{{ i18n.ts._role.useBaseValue }}</span>
|
|
|
|
<span v-else>{{ policies.canPublicNote.value ? i18n.ts.yes : i18n.ts.no }}</span>
|
|
|
|
<span :class="$style.priorityIndicator"><i :class="getPriorityIcon(policies.canPublicNote)"></i></span>
|
|
|
|
</template>
|
2023-01-12 14:02:26 +02:00
|
|
|
<div class="_gaps">
|
2023-01-15 13:52:53 +02:00
|
|
|
<MkSwitch v-model="policies.canPublicNote.useDefault" :readonly="readonly">
|
2023-01-12 14:02:26 +02:00
|
|
|
<template #label>{{ i18n.ts._role.useBaseValue }}</template>
|
|
|
|
</MkSwitch>
|
2023-01-15 13:52:53 +02:00
|
|
|
<MkSwitch v-model="policies.canPublicNote.value" :disabled="policies.canPublicNote.useDefault" :readonly="readonly">
|
2023-01-12 14:02:26 +02:00
|
|
|
<template #label>{{ i18n.ts.enable }}</template>
|
|
|
|
</MkSwitch>
|
2023-01-15 13:52:53 +02:00
|
|
|
<MkRange v-model="policies.canPublicNote.priority" :min="0" :max="2" :step="1" easing :text-converter="(v) => v === 0 ? i18n.ts._role._priority.low : v === 1 ? i18n.ts._role._priority.middle : v === 2 ? i18n.ts._role._priority.high : ''">
|
2023-01-15 12:10:39 +02:00
|
|
|
<template #label>{{ i18n.ts._role.priority }}</template>
|
|
|
|
</MkRange>
|
2023-01-12 14:02:26 +02:00
|
|
|
</div>
|
|
|
|
</MkFolder>
|
|
|
|
|
2023-01-15 22:19:26 +02:00
|
|
|
<MkFolder v-if="matchQuery([i18n.ts._role._options.canInvite, 'canInvite'])">
|
2023-01-13 07:22:53 +02:00
|
|
|
<template #label>{{ i18n.ts._role._options.canInvite }}</template>
|
2023-01-15 23:35:16 +02:00
|
|
|
<template #suffix>
|
|
|
|
<span v-if="policies.canInvite.useDefault" :class="$style.useDefaultLabel">{{ i18n.ts._role.useBaseValue }}</span>
|
|
|
|
<span v-else>{{ policies.canInvite.value ? i18n.ts.yes : i18n.ts.no }}</span>
|
|
|
|
<span :class="$style.priorityIndicator"><i :class="getPriorityIcon(policies.canInvite)"></i></span>
|
|
|
|
</template>
|
2023-01-13 07:22:53 +02:00
|
|
|
<div class="_gaps">
|
2023-01-15 13:52:53 +02:00
|
|
|
<MkSwitch v-model="policies.canInvite.useDefault" :readonly="readonly">
|
2023-01-13 07:22:53 +02:00
|
|
|
<template #label>{{ i18n.ts._role.useBaseValue }}</template>
|
|
|
|
</MkSwitch>
|
2023-01-15 13:52:53 +02:00
|
|
|
<MkSwitch v-model="policies.canInvite.value" :disabled="policies.canInvite.useDefault" :readonly="readonly">
|
2023-01-13 07:22:53 +02:00
|
|
|
<template #label>{{ i18n.ts.enable }}</template>
|
|
|
|
</MkSwitch>
|
2023-01-15 13:52:53 +02:00
|
|
|
<MkRange v-model="policies.canInvite.priority" :min="0" :max="2" :step="1" easing :text-converter="(v) => v === 0 ? i18n.ts._role._priority.low : v === 1 ? i18n.ts._role._priority.middle : v === 2 ? i18n.ts._role._priority.high : ''">
|
2023-01-15 12:10:39 +02:00
|
|
|
<template #label>{{ i18n.ts._role.priority }}</template>
|
|
|
|
</MkRange>
|
2023-01-13 07:22:53 +02:00
|
|
|
</div>
|
|
|
|
</MkFolder>
|
|
|
|
|
2023-01-15 22:19:26 +02:00
|
|
|
<MkFolder v-if="matchQuery([i18n.ts._role._options.canManageCustomEmojis, 'canManageCustomEmojis'])">
|
2023-01-13 07:58:27 +02:00
|
|
|
<template #label>{{ i18n.ts._role._options.canManageCustomEmojis }}</template>
|
2023-01-15 23:35:16 +02:00
|
|
|
<template #suffix>
|
|
|
|
<span v-if="policies.canManageCustomEmojis.useDefault" :class="$style.useDefaultLabel">{{ i18n.ts._role.useBaseValue }}</span>
|
|
|
|
<span v-else>{{ policies.canManageCustomEmojis.value ? i18n.ts.yes : i18n.ts.no }}</span>
|
|
|
|
<span :class="$style.priorityIndicator"><i :class="getPriorityIcon(policies.canManageCustomEmojis)"></i></span>
|
|
|
|
</template>
|
2023-01-13 07:58:27 +02:00
|
|
|
<div class="_gaps">
|
2023-01-15 13:52:53 +02:00
|
|
|
<MkSwitch v-model="policies.canManageCustomEmojis.useDefault" :readonly="readonly">
|
2023-01-13 07:58:27 +02:00
|
|
|
<template #label>{{ i18n.ts._role.useBaseValue }}</template>
|
|
|
|
</MkSwitch>
|
2023-01-15 13:52:53 +02:00
|
|
|
<MkSwitch v-model="policies.canManageCustomEmojis.value" :disabled="policies.canManageCustomEmojis.useDefault" :readonly="readonly">
|
2023-01-13 07:58:27 +02:00
|
|
|
<template #label>{{ i18n.ts.enable }}</template>
|
|
|
|
</MkSwitch>
|
2023-01-15 13:52:53 +02:00
|
|
|
<MkRange v-model="policies.canManageCustomEmojis.priority" :min="0" :max="2" :step="1" easing :text-converter="(v) => v === 0 ? i18n.ts._role._priority.low : v === 1 ? i18n.ts._role._priority.middle : v === 2 ? i18n.ts._role._priority.high : ''">
|
2023-01-15 12:10:39 +02:00
|
|
|
<template #label>{{ i18n.ts._role.priority }}</template>
|
|
|
|
</MkRange>
|
2023-01-13 07:58:27 +02:00
|
|
|
</div>
|
|
|
|
</MkFolder>
|
|
|
|
|
2023-01-15 22:19:26 +02:00
|
|
|
<MkFolder v-if="matchQuery([i18n.ts._role._options.driveCapacity, 'driveCapacityMb'])">
|
2023-01-12 14:02:26 +02:00
|
|
|
<template #label>{{ i18n.ts._role._options.driveCapacity }}</template>
|
2023-01-15 23:35:16 +02:00
|
|
|
<template #suffix>
|
|
|
|
<span v-if="policies.driveCapacityMb.useDefault" :class="$style.useDefaultLabel">{{ i18n.ts._role.useBaseValue }}</span>
|
|
|
|
<span v-else>{{ policies.driveCapacityMb.value + 'MB' }}</span>
|
|
|
|
<span :class="$style.priorityIndicator"><i :class="getPriorityIcon(policies.driveCapacityMb)"></i></span>
|
|
|
|
</template>
|
2023-01-12 14:02:26 +02:00
|
|
|
<div class="_gaps">
|
2023-01-15 13:52:53 +02:00
|
|
|
<MkSwitch v-model="policies.driveCapacityMb.useDefault" :readonly="readonly">
|
2023-01-12 14:02:26 +02:00
|
|
|
<template #label>{{ i18n.ts._role.useBaseValue }}</template>
|
|
|
|
</MkSwitch>
|
2023-01-15 13:52:53 +02:00
|
|
|
<MkInput v-model="policies.driveCapacityMb.value" :disabled="policies.driveCapacityMb.useDefault" type="number" :readonly="readonly">
|
2023-01-12 14:02:26 +02:00
|
|
|
<template #suffix>MB</template>
|
|
|
|
</MkInput>
|
2023-01-15 13:52:53 +02:00
|
|
|
<MkRange v-model="policies.driveCapacityMb.priority" :min="0" :max="2" :step="1" easing :text-converter="(v) => v === 0 ? i18n.ts._role._priority.low : v === 1 ? i18n.ts._role._priority.middle : v === 2 ? i18n.ts._role._priority.high : ''">
|
2023-01-15 12:10:39 +02:00
|
|
|
<template #label>{{ i18n.ts._role.priority }}</template>
|
|
|
|
</MkRange>
|
2023-01-12 14:02:26 +02:00
|
|
|
</div>
|
|
|
|
</MkFolder>
|
|
|
|
|
2023-01-15 22:19:26 +02:00
|
|
|
<MkFolder v-if="matchQuery([i18n.ts._role._options.pinMax, 'pinLimit'])">
|
2023-01-14 11:04:56 +02:00
|
|
|
<template #label>{{ i18n.ts._role._options.pinMax }}</template>
|
2023-01-15 23:35:16 +02:00
|
|
|
<template #suffix>
|
|
|
|
<span v-if="policies.pinLimit.useDefault" :class="$style.useDefaultLabel">{{ i18n.ts._role.useBaseValue }}</span>
|
|
|
|
<span v-else>{{ policies.pinLimit.value }}</span>
|
|
|
|
<span :class="$style.priorityIndicator"><i :class="getPriorityIcon(policies.pinLimit)"></i></span>
|
|
|
|
</template>
|
2023-01-14 11:04:56 +02:00
|
|
|
<div class="_gaps">
|
2023-01-15 13:52:53 +02:00
|
|
|
<MkSwitch v-model="policies.pinLimit.useDefault" :readonly="readonly">
|
2023-01-14 11:04:56 +02:00
|
|
|
<template #label>{{ i18n.ts._role.useBaseValue }}</template>
|
|
|
|
</MkSwitch>
|
2023-01-15 13:52:53 +02:00
|
|
|
<MkInput v-model="policies.pinLimit.value" :disabled="policies.pinLimit.useDefault" type="number" :readonly="readonly">
|
2023-01-14 11:04:56 +02:00
|
|
|
</MkInput>
|
2023-01-15 13:52:53 +02:00
|
|
|
<MkRange v-model="policies.pinLimit.priority" :min="0" :max="2" :step="1" easing :text-converter="(v) => v === 0 ? i18n.ts._role._priority.low : v === 1 ? i18n.ts._role._priority.middle : v === 2 ? i18n.ts._role._priority.high : ''">
|
2023-01-15 12:10:39 +02:00
|
|
|
<template #label>{{ i18n.ts._role.priority }}</template>
|
|
|
|
</MkRange>
|
2023-01-14 11:04:56 +02:00
|
|
|
</div>
|
|
|
|
</MkFolder>
|
|
|
|
|
2023-01-15 22:19:26 +02:00
|
|
|
<MkFolder v-if="matchQuery([i18n.ts._role._options.antennaMax, 'antennaLimit'])">
|
2023-01-12 14:02:26 +02:00
|
|
|
<template #label>{{ i18n.ts._role._options.antennaMax }}</template>
|
2023-01-15 23:35:16 +02:00
|
|
|
<template #suffix>
|
|
|
|
<span v-if="policies.antennaLimit.useDefault" :class="$style.useDefaultLabel">{{ i18n.ts._role.useBaseValue }}</span>
|
|
|
|
<span v-else>{{ policies.antennaLimit.value }}</span>
|
|
|
|
<span :class="$style.priorityIndicator"><i :class="getPriorityIcon(policies.antennaLimit)"></i></span>
|
|
|
|
</template>
|
2023-01-12 14:02:26 +02:00
|
|
|
<div class="_gaps">
|
2023-01-15 13:52:53 +02:00
|
|
|
<MkSwitch v-model="policies.antennaLimit.useDefault" :readonly="readonly">
|
2023-01-12 14:02:26 +02:00
|
|
|
<template #label>{{ i18n.ts._role.useBaseValue }}</template>
|
|
|
|
</MkSwitch>
|
2023-01-15 13:52:53 +02:00
|
|
|
<MkInput v-model="policies.antennaLimit.value" :disabled="policies.antennaLimit.useDefault" type="number" :readonly="readonly">
|
2023-01-12 14:02:26 +02:00
|
|
|
</MkInput>
|
2023-01-15 13:52:53 +02:00
|
|
|
<MkRange v-model="policies.antennaLimit.priority" :min="0" :max="2" :step="1" easing :text-converter="(v) => v === 0 ? i18n.ts._role._priority.low : v === 1 ? i18n.ts._role._priority.middle : v === 2 ? i18n.ts._role._priority.high : ''">
|
2023-01-15 12:10:39 +02:00
|
|
|
<template #label>{{ i18n.ts._role.priority }}</template>
|
|
|
|
</MkRange>
|
2023-01-12 14:02:26 +02:00
|
|
|
</div>
|
|
|
|
</MkFolder>
|
2023-01-14 01:04:38 +02:00
|
|
|
|
2023-01-15 22:19:26 +02:00
|
|
|
<MkFolder v-if="matchQuery([i18n.ts._role._options.wordMuteMax, 'wordMuteLimit'])">
|
2023-01-14 01:04:38 +02:00
|
|
|
<template #label>{{ i18n.ts._role._options.wordMuteMax }}</template>
|
2023-01-15 23:35:16 +02:00
|
|
|
<template #suffix>
|
|
|
|
<span v-if="policies.wordMuteLimit.useDefault" :class="$style.useDefaultLabel">{{ i18n.ts._role.useBaseValue }}</span>
|
|
|
|
<span v-else>{{ policies.wordMuteLimit.value }}</span>
|
|
|
|
<span :class="$style.priorityIndicator"><i :class="getPriorityIcon(policies.wordMuteLimit)"></i></span>
|
|
|
|
</template>
|
2023-01-14 01:04:38 +02:00
|
|
|
<div class="_gaps">
|
2023-01-15 13:52:53 +02:00
|
|
|
<MkSwitch v-model="policies.wordMuteLimit.useDefault" :readonly="readonly">
|
2023-01-14 01:04:38 +02:00
|
|
|
<template #label>{{ i18n.ts._role.useBaseValue }}</template>
|
|
|
|
</MkSwitch>
|
2023-01-15 13:52:53 +02:00
|
|
|
<MkInput v-model="policies.wordMuteLimit.value" :disabled="policies.wordMuteLimit.useDefault" type="number" :readonly="readonly">
|
2023-01-14 01:04:38 +02:00
|
|
|
<template #suffix>chars</template>
|
|
|
|
</MkInput>
|
2023-01-15 13:52:53 +02:00
|
|
|
<MkRange v-model="policies.wordMuteLimit.priority" :min="0" :max="2" :step="1" easing :text-converter="(v) => v === 0 ? i18n.ts._role._priority.low : v === 1 ? i18n.ts._role._priority.middle : v === 2 ? i18n.ts._role._priority.high : ''">
|
2023-01-15 12:10:39 +02:00
|
|
|
<template #label>{{ i18n.ts._role.priority }}</template>
|
|
|
|
</MkRange>
|
2023-01-14 01:04:38 +02:00
|
|
|
</div>
|
|
|
|
</MkFolder>
|
2023-01-14 03:48:11 +02:00
|
|
|
|
2023-01-15 22:19:26 +02:00
|
|
|
<MkFolder v-if="matchQuery([i18n.ts._role._options.webhookMax, 'webhookLimit'])">
|
2023-01-14 03:48:11 +02:00
|
|
|
<template #label>{{ i18n.ts._role._options.webhookMax }}</template>
|
2023-01-15 23:35:16 +02:00
|
|
|
<template #suffix>
|
|
|
|
<span v-if="policies.webhookLimit.useDefault" :class="$style.useDefaultLabel">{{ i18n.ts._role.useBaseValue }}</span>
|
|
|
|
<span v-else>{{ policies.webhookLimit.value }}</span>
|
|
|
|
<span :class="$style.priorityIndicator"><i :class="getPriorityIcon(policies.webhookLimit)"></i></span>
|
|
|
|
</template>
|
2023-01-14 03:48:11 +02:00
|
|
|
<div class="_gaps">
|
2023-01-15 13:52:53 +02:00
|
|
|
<MkSwitch v-model="policies.webhookLimit.useDefault" :readonly="readonly">
|
2023-01-14 03:48:11 +02:00
|
|
|
<template #label>{{ i18n.ts._role.useBaseValue }}</template>
|
|
|
|
</MkSwitch>
|
2023-01-15 13:52:53 +02:00
|
|
|
<MkInput v-model="policies.webhookLimit.value" :disabled="policies.webhookLimit.useDefault" type="number" :readonly="readonly">
|
2023-01-14 03:48:11 +02:00
|
|
|
</MkInput>
|
2023-01-15 13:52:53 +02:00
|
|
|
<MkRange v-model="policies.webhookLimit.priority" :min="0" :max="2" :step="1" easing :text-converter="(v) => v === 0 ? i18n.ts._role._priority.low : v === 1 ? i18n.ts._role._priority.middle : v === 2 ? i18n.ts._role._priority.high : ''">
|
2023-01-15 12:10:39 +02:00
|
|
|
<template #label>{{ i18n.ts._role.priority }}</template>
|
|
|
|
</MkRange>
|
2023-01-14 03:48:11 +02:00
|
|
|
</div>
|
|
|
|
</MkFolder>
|
2023-01-14 09:14:24 +02:00
|
|
|
|
2023-01-15 22:19:26 +02:00
|
|
|
<MkFolder v-if="matchQuery([i18n.ts._role._options.clipMax, 'clipLimit'])">
|
2023-01-14 09:14:24 +02:00
|
|
|
<template #label>{{ i18n.ts._role._options.clipMax }}</template>
|
2023-01-15 23:35:16 +02:00
|
|
|
<template #suffix>
|
|
|
|
<span v-if="policies.clipLimit.useDefault" :class="$style.useDefaultLabel">{{ i18n.ts._role.useBaseValue }}</span>
|
|
|
|
<span v-else>{{ policies.clipLimit.value }}</span>
|
|
|
|
<span :class="$style.priorityIndicator"><i :class="getPriorityIcon(policies.clipLimit)"></i></span>
|
|
|
|
</template>
|
2023-01-14 09:14:24 +02:00
|
|
|
<div class="_gaps">
|
2023-01-15 13:52:53 +02:00
|
|
|
<MkSwitch v-model="policies.clipLimit.useDefault" :readonly="readonly">
|
2023-01-14 09:14:24 +02:00
|
|
|
<template #label>{{ i18n.ts._role.useBaseValue }}</template>
|
|
|
|
</MkSwitch>
|
2023-01-15 13:52:53 +02:00
|
|
|
<MkInput v-model="policies.clipLimit.value" :disabled="policies.clipLimit.useDefault" type="number" :readonly="readonly">
|
2023-01-14 09:14:24 +02:00
|
|
|
</MkInput>
|
2023-01-15 13:52:53 +02:00
|
|
|
<MkRange v-model="policies.clipLimit.priority" :min="0" :max="2" :step="1" easing :text-converter="(v) => v === 0 ? i18n.ts._role._priority.low : v === 1 ? i18n.ts._role._priority.middle : v === 2 ? i18n.ts._role._priority.high : ''">
|
2023-01-15 12:10:39 +02:00
|
|
|
<template #label>{{ i18n.ts._role.priority }}</template>
|
|
|
|
</MkRange>
|
2023-01-14 09:14:24 +02:00
|
|
|
</div>
|
|
|
|
</MkFolder>
|
|
|
|
|
2023-01-15 22:19:26 +02:00
|
|
|
<MkFolder v-if="matchQuery([i18n.ts._role._options.noteEachClipsMax, 'noteEachClipsLimit'])">
|
2023-01-14 09:14:24 +02:00
|
|
|
<template #label>{{ i18n.ts._role._options.noteEachClipsMax }}</template>
|
2023-01-15 23:35:16 +02:00
|
|
|
<template #suffix>
|
|
|
|
<span v-if="policies.noteEachClipsLimit.useDefault" :class="$style.useDefaultLabel">{{ i18n.ts._role.useBaseValue }}</span>
|
|
|
|
<span v-else>{{ policies.noteEachClipsLimit.value }}</span>
|
|
|
|
<span :class="$style.priorityIndicator"><i :class="getPriorityIcon(policies.noteEachClipsLimit)"></i></span>
|
|
|
|
</template>
|
2023-01-14 09:14:24 +02:00
|
|
|
<div class="_gaps">
|
2023-01-15 13:52:53 +02:00
|
|
|
<MkSwitch v-model="policies.noteEachClipsLimit.useDefault" :readonly="readonly">
|
2023-01-14 09:14:24 +02:00
|
|
|
<template #label>{{ i18n.ts._role.useBaseValue }}</template>
|
|
|
|
</MkSwitch>
|
2023-01-15 13:52:53 +02:00
|
|
|
<MkInput v-model="policies.noteEachClipsLimit.value" :disabled="policies.noteEachClipsLimit.useDefault" type="number" :readonly="readonly">
|
2023-01-14 09:14:24 +02:00
|
|
|
</MkInput>
|
2023-01-15 13:52:53 +02:00
|
|
|
<MkRange v-model="policies.noteEachClipsLimit.priority" :min="0" :max="2" :step="1" easing :text-converter="(v) => v === 0 ? i18n.ts._role._priority.low : v === 1 ? i18n.ts._role._priority.middle : v === 2 ? i18n.ts._role._priority.high : ''">
|
2023-01-15 12:10:39 +02:00
|
|
|
<template #label>{{ i18n.ts._role.priority }}</template>
|
|
|
|
</MkRange>
|
2023-01-14 09:14:24 +02:00
|
|
|
</div>
|
|
|
|
</MkFolder>
|
2023-01-14 10:38:16 +02:00
|
|
|
|
2023-01-15 22:19:26 +02:00
|
|
|
<MkFolder v-if="matchQuery([i18n.ts._role._options.userListMax, 'userListLimit'])">
|
2023-01-14 10:38:16 +02:00
|
|
|
<template #label>{{ i18n.ts._role._options.userListMax }}</template>
|
2023-01-15 23:35:16 +02:00
|
|
|
<template #suffix>
|
|
|
|
<span v-if="policies.userListLimit.useDefault" :class="$style.useDefaultLabel">{{ i18n.ts._role.useBaseValue }}</span>
|
|
|
|
<span v-else>{{ policies.userListLimit.value }}</span>
|
|
|
|
<span :class="$style.priorityIndicator"><i :class="getPriorityIcon(policies.userListLimit)"></i></span>
|
|
|
|
</template>
|
2023-01-14 10:38:16 +02:00
|
|
|
<div class="_gaps">
|
2023-01-15 13:52:53 +02:00
|
|
|
<MkSwitch v-model="policies.userListLimit.useDefault" :readonly="readonly">
|
2023-01-14 10:38:16 +02:00
|
|
|
<template #label>{{ i18n.ts._role.useBaseValue }}</template>
|
|
|
|
</MkSwitch>
|
2023-01-15 13:52:53 +02:00
|
|
|
<MkInput v-model="policies.userListLimit.value" :disabled="policies.userListLimit.useDefault" type="number" :readonly="readonly">
|
2023-01-14 10:38:16 +02:00
|
|
|
</MkInput>
|
2023-01-15 13:52:53 +02:00
|
|
|
<MkRange v-model="policies.userListLimit.priority" :min="0" :max="2" :step="1" easing :text-converter="(v) => v === 0 ? i18n.ts._role._priority.low : v === 1 ? i18n.ts._role._priority.middle : v === 2 ? i18n.ts._role._priority.high : ''">
|
2023-01-15 12:10:39 +02:00
|
|
|
<template #label>{{ i18n.ts._role.priority }}</template>
|
|
|
|
</MkRange>
|
2023-01-14 10:38:16 +02:00
|
|
|
</div>
|
|
|
|
</MkFolder>
|
|
|
|
|
2023-01-15 22:19:26 +02:00
|
|
|
<MkFolder v-if="matchQuery([i18n.ts._role._options.userEachUserListsMax, 'userEachUserListsLimit'])">
|
2023-01-14 10:38:16 +02:00
|
|
|
<template #label>{{ i18n.ts._role._options.userEachUserListsMax }}</template>
|
2023-01-15 23:35:16 +02:00
|
|
|
<template #suffix>
|
|
|
|
<span v-if="policies.userEachUserListsLimit.useDefault" :class="$style.useDefaultLabel">{{ i18n.ts._role.useBaseValue }}</span>
|
|
|
|
<span v-else>{{ policies.userEachUserListsLimit.value }}</span>
|
|
|
|
<span :class="$style.priorityIndicator"><i :class="getPriorityIcon(policies.userEachUserListsLimit)"></i></span>
|
|
|
|
</template>
|
2023-01-14 10:38:16 +02:00
|
|
|
<div class="_gaps">
|
2023-01-15 13:52:53 +02:00
|
|
|
<MkSwitch v-model="policies.userEachUserListsLimit.useDefault" :readonly="readonly">
|
2023-01-14 10:38:16 +02:00
|
|
|
<template #label>{{ i18n.ts._role.useBaseValue }}</template>
|
|
|
|
</MkSwitch>
|
2023-01-15 13:52:53 +02:00
|
|
|
<MkInput v-model="policies.userEachUserListsLimit.value" :disabled="policies.userEachUserListsLimit.useDefault" type="number" :readonly="readonly">
|
2023-01-14 10:38:16 +02:00
|
|
|
</MkInput>
|
2023-01-15 13:52:53 +02:00
|
|
|
<MkRange v-model="policies.userEachUserListsLimit.priority" :min="0" :max="2" :step="1" easing :text-converter="(v) => v === 0 ? i18n.ts._role._priority.low : v === 1 ? i18n.ts._role._priority.middle : v === 2 ? i18n.ts._role._priority.high : ''">
|
2023-01-15 12:10:39 +02:00
|
|
|
<template #label>{{ i18n.ts._role.priority }}</template>
|
|
|
|
</MkRange>
|
2023-01-14 10:38:16 +02:00
|
|
|
</div>
|
|
|
|
</MkFolder>
|
2023-01-12 14:02:26 +02:00
|
|
|
</div>
|
|
|
|
</FormSlot>
|
|
|
|
|
|
|
|
<MkSwitch v-model="canEditMembersByModerator" :readonly="readonly">
|
|
|
|
<template #label>{{ i18n.ts._role.canEditMembersByModerator }}</template>
|
|
|
|
<template #caption>{{ i18n.ts._role.descriptionOfCanEditMembersByModerator }}</template>
|
|
|
|
</MkSwitch>
|
|
|
|
|
|
|
|
<MkSwitch v-model="isPublic" :readonly="readonly">
|
|
|
|
<template #label>{{ i18n.ts._role.isPublic }}</template>
|
|
|
|
<template #caption>{{ i18n.ts._role.descriptionOfIsPublic }}</template>
|
|
|
|
</MkSwitch>
|
|
|
|
|
|
|
|
<div v-if="!readonly" class="_buttons">
|
|
|
|
<MkButton primary rounded @click="save"><i class="ti ti-check"></i> {{ role ? i18n.ts.save : i18n.ts.create }}</MkButton>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<script lang="ts" setup>
|
2023-01-15 12:10:39 +02:00
|
|
|
import { computed, reactive, watch } from 'vue';
|
2023-01-13 04:03:54 +02:00
|
|
|
import { v4 as uuid } from 'uuid';
|
|
|
|
import RolesEditorFormula from './RolesEditorFormula.vue';
|
2023-01-12 14:02:26 +02:00
|
|
|
import MkInput from '@/components/MkInput.vue';
|
|
|
|
import MkSelect from '@/components/MkSelect.vue';
|
|
|
|
import MkTextarea from '@/components/MkTextarea.vue';
|
|
|
|
import MkFolder from '@/components/MkFolder.vue';
|
|
|
|
import MkSwitch from '@/components/MkSwitch.vue';
|
|
|
|
import MkButton from '@/components/MkButton.vue';
|
2023-01-15 09:52:12 +02:00
|
|
|
import MkRange from '@/components/MkRange.vue';
|
2023-01-12 14:02:26 +02:00
|
|
|
import FormSlot from '@/components/form/slot.vue';
|
|
|
|
import * as os from '@/os';
|
|
|
|
import { i18n } from '@/i18n';
|
2023-01-15 09:52:12 +02:00
|
|
|
import { instance } from '@/instance';
|
2023-01-12 14:02:26 +02:00
|
|
|
|
2023-01-15 13:52:53 +02:00
|
|
|
const ROLE_POLICIES = [
|
2023-01-15 12:10:39 +02:00
|
|
|
'gtlAvailable',
|
|
|
|
'ltlAvailable',
|
|
|
|
'canPublicNote',
|
|
|
|
'canInvite',
|
|
|
|
'canManageCustomEmojis',
|
|
|
|
'driveCapacityMb',
|
|
|
|
'pinLimit',
|
|
|
|
'antennaLimit',
|
|
|
|
'wordMuteLimit',
|
|
|
|
'webhookLimit',
|
|
|
|
'clipLimit',
|
|
|
|
'noteEachClipsLimit',
|
|
|
|
'userListLimit',
|
|
|
|
'userEachUserListsLimit',
|
|
|
|
'rateLimitFactor',
|
|
|
|
] as const;
|
|
|
|
|
2023-01-12 14:02:26 +02:00
|
|
|
const emit = defineEmits<{
|
|
|
|
(ev: 'created', payload: any): void;
|
|
|
|
(ev: 'updated'): void;
|
|
|
|
}>();
|
|
|
|
|
|
|
|
const props = defineProps<{
|
|
|
|
role?: any;
|
|
|
|
readonly?: boolean;
|
|
|
|
}>();
|
|
|
|
|
|
|
|
const role = props.role;
|
2023-01-15 22:19:26 +02:00
|
|
|
let q = $ref('');
|
2023-01-12 14:02:26 +02:00
|
|
|
|
|
|
|
let name = $ref(role?.name ?? 'New Role');
|
|
|
|
let description = $ref(role?.description ?? '');
|
2023-01-13 01:23:52 +02:00
|
|
|
let rolePermission = $ref(role?.isAdministrator ? 'administrator' : role?.isModerator ? 'moderator' : 'normal');
|
2023-01-12 14:02:26 +02:00
|
|
|
let color = $ref(role?.color ?? null);
|
2023-01-13 04:03:54 +02:00
|
|
|
let target = $ref(role?.target ?? 'manual');
|
|
|
|
let condFormula = $ref(role?.condFormula ?? { id: uuid(), type: 'isRemote' });
|
2023-01-12 14:02:26 +02:00
|
|
|
let isPublic = $ref(role?.isPublic ?? false);
|
|
|
|
let canEditMembersByModerator = $ref(role?.canEditMembersByModerator ?? false);
|
2023-01-15 12:10:39 +02:00
|
|
|
|
2023-01-15 13:52:53 +02:00
|
|
|
const policies = reactive<Record<typeof ROLE_POLICIES[number], { useDefault: boolean; priority: number; value: any; }>>({});
|
|
|
|
for (const ROLE_POLICY of ROLE_POLICIES) {
|
|
|
|
const _policies = role?.policies ?? {};
|
|
|
|
policies[ROLE_POLICY] = {
|
|
|
|
useDefault: _policies[ROLE_POLICY]?.useDefault ?? true,
|
|
|
|
priority: _policies[ROLE_POLICY]?.priority ?? 0,
|
|
|
|
value: _policies[ROLE_POLICY]?.value ?? instance.policies[ROLE_POLICY],
|
2023-01-15 12:10:39 +02:00
|
|
|
};
|
|
|
|
}
|
2023-01-12 14:02:26 +02:00
|
|
|
|
2023-01-13 04:04:58 +02:00
|
|
|
if (_DEV_) {
|
|
|
|
watch($$(condFormula), () => {
|
|
|
|
console.log(JSON.parse(JSON.stringify(condFormula)));
|
|
|
|
}, { deep: true });
|
|
|
|
}
|
2023-01-13 04:03:54 +02:00
|
|
|
|
2023-01-15 12:10:39 +02:00
|
|
|
function getPriorityIcon(option) {
|
|
|
|
if (option.priority === 2) return 'ti ti-arrows-up';
|
|
|
|
if (option.priority === 1) return 'ti ti-arrow-narrow-up';
|
|
|
|
return 'ti ti-point';
|
2023-01-12 14:02:26 +02:00
|
|
|
}
|
|
|
|
|
2023-01-15 22:19:26 +02:00
|
|
|
function matchQuery(keywords: string[]): boolean {
|
|
|
|
if (q.trim().length === 0) return true;
|
|
|
|
return keywords.some(keyword => keyword.toLowerCase().includes(q.toLowerCase()));
|
|
|
|
}
|
|
|
|
|
2023-01-12 14:02:26 +02:00
|
|
|
async function save() {
|
|
|
|
if (props.readonly) return;
|
|
|
|
if (role) {
|
|
|
|
os.apiWithDialog('admin/roles/update', {
|
|
|
|
roleId: role.id,
|
|
|
|
name,
|
|
|
|
description,
|
|
|
|
color: color === '' ? null : color,
|
2023-01-13 04:03:54 +02:00
|
|
|
target,
|
|
|
|
condFormula,
|
2023-01-13 01:23:52 +02:00
|
|
|
isAdministrator: rolePermission === 'administrator',
|
|
|
|
isModerator: rolePermission === 'moderator',
|
2023-01-12 14:02:26 +02:00
|
|
|
isPublic,
|
|
|
|
canEditMembersByModerator,
|
2023-01-15 13:52:53 +02:00
|
|
|
policies,
|
2023-01-12 14:02:26 +02:00
|
|
|
});
|
|
|
|
emit('updated');
|
|
|
|
} else {
|
|
|
|
const created = await os.apiWithDialog('admin/roles/create', {
|
|
|
|
name,
|
|
|
|
description,
|
|
|
|
color: color === '' ? null : color,
|
2023-01-13 04:03:54 +02:00
|
|
|
target,
|
|
|
|
condFormula,
|
2023-01-13 01:23:52 +02:00
|
|
|
isAdministrator: rolePermission === 'administrator',
|
|
|
|
isModerator: rolePermission === 'moderator',
|
2023-01-12 14:02:26 +02:00
|
|
|
isPublic,
|
|
|
|
canEditMembersByModerator,
|
2023-01-15 13:52:53 +02:00
|
|
|
policies,
|
2023-01-12 14:02:26 +02:00
|
|
|
});
|
|
|
|
emit('created', created);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
</script>
|
|
|
|
|
|
|
|
<style lang="scss" module>
|
2023-01-15 23:35:16 +02:00
|
|
|
.useDefaultLabel {
|
|
|
|
opacity: 0.7;
|
|
|
|
}
|
2023-01-12 14:02:26 +02:00
|
|
|
|
2023-01-15 23:35:16 +02:00
|
|
|
.priorityIndicator {
|
|
|
|
margin-left: 8px;
|
|
|
|
}
|
2023-01-12 14:02:26 +02:00
|
|
|
</style>
|