|
|
@ -1,19 +1,19 @@
|
|
|
|
<template>
|
|
|
|
<template>
|
|
|
|
<div class="_gaps">
|
|
|
|
<div class="_gaps">
|
|
|
|
<MkInput v-model="name" :readonly="readonly">
|
|
|
|
<MkInput v-model="role.name" :readonly="readonly">
|
|
|
|
<template #label>{{ i18n.ts._role.name }}</template>
|
|
|
|
<template #label>{{ i18n.ts._role.name }}</template>
|
|
|
|
</MkInput>
|
|
|
|
</MkInput>
|
|
|
|
|
|
|
|
|
|
|
|
<MkTextarea v-model="description" :readonly="readonly">
|
|
|
|
<MkTextarea v-model="role.description" :readonly="readonly">
|
|
|
|
<template #label>{{ i18n.ts._role.description }}</template>
|
|
|
|
<template #label>{{ i18n.ts._role.description }}</template>
|
|
|
|
</MkTextarea>
|
|
|
|
</MkTextarea>
|
|
|
|
|
|
|
|
|
|
|
|
<MkInput v-model="color">
|
|
|
|
<MkInput v-model="role.color">
|
|
|
|
<template #label>{{ i18n.ts.color }}</template>
|
|
|
|
<template #label>{{ i18n.ts.color }}</template>
|
|
|
|
<template #caption>#RRGGBB</template>
|
|
|
|
<template #caption>#RRGGBB</template>
|
|
|
|
</MkInput>
|
|
|
|
</MkInput>
|
|
|
|
|
|
|
|
|
|
|
|
<MkInput v-model="iconUrl">
|
|
|
|
<MkInput v-model="role.iconUrl">
|
|
|
|
<template #label>{{ i18n.ts._role.iconUrl }}</template>
|
|
|
|
<template #label>{{ i18n.ts._role.iconUrl }}</template>
|
|
|
|
</MkInput>
|
|
|
|
</MkInput>
|
|
|
|
|
|
|
|
|
|
|
@ -25,31 +25,31 @@
|
|
|
|
<option value="administrator">{{ i18n.ts.administrator }}</option>
|
|
|
|
<option value="administrator">{{ i18n.ts.administrator }}</option>
|
|
|
|
</MkSelect>
|
|
|
|
</MkSelect>
|
|
|
|
|
|
|
|
|
|
|
|
<MkSelect v-model="target" :readonly="readonly">
|
|
|
|
<MkSelect v-model="role.target" :readonly="readonly">
|
|
|
|
<template #label><i class="ti ti-users"></i> {{ i18n.ts._role.assignTarget }}</template>
|
|
|
|
<template #label><i class="ti ti-users"></i> {{ i18n.ts._role.assignTarget }}</template>
|
|
|
|
<template #caption><div v-html="i18n.ts._role.descriptionOfAssignTarget.replaceAll('\n', '<br>')"></div></template>
|
|
|
|
<template #caption><div v-html="i18n.ts._role.descriptionOfAssignTarget.replaceAll('\n', '<br>')"></div></template>
|
|
|
|
<option value="manual">{{ i18n.ts._role.manual }}</option>
|
|
|
|
<option value="manual">{{ i18n.ts._role.manual }}</option>
|
|
|
|
<option value="conditional">{{ i18n.ts._role.conditional }}</option>
|
|
|
|
<option value="conditional">{{ i18n.ts._role.conditional }}</option>
|
|
|
|
</MkSelect>
|
|
|
|
</MkSelect>
|
|
|
|
|
|
|
|
|
|
|
|
<MkFolder v-if="target === 'conditional'" default-open>
|
|
|
|
<MkFolder v-if="role.target === 'conditional'" default-open>
|
|
|
|
<template #label>{{ i18n.ts._role.condition }}</template>
|
|
|
|
<template #label>{{ i18n.ts._role.condition }}</template>
|
|
|
|
<div class="_gaps">
|
|
|
|
<div class="_gaps">
|
|
|
|
<RolesEditorFormula v-model="condFormula"/>
|
|
|
|
<RolesEditorFormula v-model="role.condFormula"/>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</MkFolder>
|
|
|
|
</MkFolder>
|
|
|
|
|
|
|
|
|
|
|
|
<MkSwitch v-model="canEditMembersByModerator" :readonly="readonly">
|
|
|
|
<MkSwitch v-model="role.canEditMembersByModerator" :readonly="readonly">
|
|
|
|
<template #label>{{ i18n.ts._role.canEditMembersByModerator }}</template>
|
|
|
|
<template #label>{{ i18n.ts._role.canEditMembersByModerator }}</template>
|
|
|
|
<template #caption>{{ i18n.ts._role.descriptionOfCanEditMembersByModerator }}</template>
|
|
|
|
<template #caption>{{ i18n.ts._role.descriptionOfCanEditMembersByModerator }}</template>
|
|
|
|
</MkSwitch>
|
|
|
|
</MkSwitch>
|
|
|
|
|
|
|
|
|
|
|
|
<MkSwitch v-model="isPublic" :readonly="readonly">
|
|
|
|
<MkSwitch v-model="role.isPublic" :readonly="readonly">
|
|
|
|
<template #label>{{ i18n.ts._role.isPublic }}</template>
|
|
|
|
<template #label>{{ i18n.ts._role.isPublic }}</template>
|
|
|
|
<template #caption>{{ i18n.ts._role.descriptionOfIsPublic }}</template>
|
|
|
|
<template #caption>{{ i18n.ts._role.descriptionOfIsPublic }}</template>
|
|
|
|
</MkSwitch>
|
|
|
|
</MkSwitch>
|
|
|
|
|
|
|
|
|
|
|
|
<MkSwitch v-model="asBadge" :readonly="readonly">
|
|
|
|
<MkSwitch v-model="role.asBadge" :readonly="readonly">
|
|
|
|
<template #label>{{ i18n.ts._role.asBadge }}</template>
|
|
|
|
<template #label>{{ i18n.ts._role.asBadge }}</template>
|
|
|
|
<template #caption>{{ i18n.ts._role.descriptionOfAsBadge }}</template>
|
|
|
|
<template #caption>{{ i18n.ts._role.descriptionOfAsBadge }}</template>
|
|
|
|
</MkSwitch>
|
|
|
|
</MkSwitch>
|
|
|
@ -64,19 +64,19 @@
|
|
|
|
<MkFolder v-if="matchQuery([i18n.ts._role._options.rateLimitFactor, 'rateLimitFactor'])">
|
|
|
|
<MkFolder v-if="matchQuery([i18n.ts._role._options.rateLimitFactor, 'rateLimitFactor'])">
|
|
|
|
<template #label>{{ i18n.ts._role._options.rateLimitFactor }}</template>
|
|
|
|
<template #label>{{ i18n.ts._role._options.rateLimitFactor }}</template>
|
|
|
|
<template #suffix>
|
|
|
|
<template #suffix>
|
|
|
|
<span v-if="policies.rateLimitFactor.useDefault" :class="$style.useDefaultLabel">{{ i18n.ts._role.useBaseValue }}</span>
|
|
|
|
<span v-if="role.policies.rateLimitFactor.useDefault" :class="$style.useDefaultLabel">{{ i18n.ts._role.useBaseValue }}</span>
|
|
|
|
<span v-else>{{ `${Math.floor(policies.rateLimitFactor.value * 100)}%` }}</span>
|
|
|
|
<span v-else>{{ `${Math.floor(role.policies.rateLimitFactor.value * 100)}%` }}</span>
|
|
|
|
<span :class="$style.priorityIndicator"><i :class="getPriorityIcon(policies.rateLimitFactor)"></i></span>
|
|
|
|
<span :class="$style.priorityIndicator"><i :class="getPriorityIcon(role.policies.rateLimitFactor)"></i></span>
|
|
|
|
</template>
|
|
|
|
</template>
|
|
|
|
<div class="_gaps">
|
|
|
|
<div class="_gaps">
|
|
|
|
<MkSwitch v-model="policies.rateLimitFactor.useDefault" :readonly="readonly">
|
|
|
|
<MkSwitch v-model="role.policies.rateLimitFactor.useDefault" :readonly="readonly">
|
|
|
|
<template #label>{{ i18n.ts._role.useBaseValue }}</template>
|
|
|
|
<template #label>{{ i18n.ts._role.useBaseValue }}</template>
|
|
|
|
</MkSwitch>
|
|
|
|
</MkSwitch>
|
|
|
|
<MkRange :model-value="policies.rateLimitFactor.value * 100" :min="0" :max="400" :step="10" :text-converter="(v) => `${v}%`" @update:model-value="v => policies.rateLimitFactor.value = (v / 100)">
|
|
|
|
<MkRange :model-value="role.policies.rateLimitFactor.value * 100" :min="0" :max="400" :step="10" :text-converter="(v) => `${v}%`" @update:model-value="v => role.policies.rateLimitFactor.value = (v / 100)">
|
|
|
|
<template #label>{{ i18n.ts._role._options.rateLimitFactor }}</template>
|
|
|
|
<template #label>{{ i18n.ts._role._options.rateLimitFactor }}</template>
|
|
|
|
<template #caption>{{ i18n.ts._role._options.descriptionOfRateLimitFactor }}</template>
|
|
|
|
<template #caption>{{ i18n.ts._role._options.descriptionOfRateLimitFactor }}</template>
|
|
|
|
</MkRange>
|
|
|
|
</MkRange>
|
|
|
|
<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 : ''">
|
|
|
|
<MkRange v-model="role.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 : ''">
|
|
|
|
<template #label>{{ i18n.ts._role.priority }}</template>
|
|
|
|
<template #label>{{ i18n.ts._role.priority }}</template>
|
|
|
|
</MkRange>
|
|
|
|
</MkRange>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
@ -85,18 +85,18 @@
|
|
|
|
<MkFolder v-if="matchQuery([i18n.ts._role._options.gtlAvailable, 'gtlAvailable'])">
|
|
|
|
<MkFolder v-if="matchQuery([i18n.ts._role._options.gtlAvailable, 'gtlAvailable'])">
|
|
|
|
<template #label>{{ i18n.ts._role._options.gtlAvailable }}</template>
|
|
|
|
<template #label>{{ i18n.ts._role._options.gtlAvailable }}</template>
|
|
|
|
<template #suffix>
|
|
|
|
<template #suffix>
|
|
|
|
<span v-if="policies.gtlAvailable.useDefault" :class="$style.useDefaultLabel">{{ i18n.ts._role.useBaseValue }}</span>
|
|
|
|
<span v-if="role.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 v-else>{{ role.policies.gtlAvailable.value ? i18n.ts.yes : i18n.ts.no }}</span>
|
|
|
|
<span :class="$style.priorityIndicator"><i :class="getPriorityIcon(policies.gtlAvailable)"></i></span>
|
|
|
|
<span :class="$style.priorityIndicator"><i :class="getPriorityIcon(role.policies.gtlAvailable)"></i></span>
|
|
|
|
</template>
|
|
|
|
</template>
|
|
|
|
<div class="_gaps">
|
|
|
|
<div class="_gaps">
|
|
|
|
<MkSwitch v-model="policies.gtlAvailable.useDefault" :readonly="readonly">
|
|
|
|
<MkSwitch v-model="role.policies.gtlAvailable.useDefault" :readonly="readonly">
|
|
|
|
<template #label>{{ i18n.ts._role.useBaseValue }}</template>
|
|
|
|
<template #label>{{ i18n.ts._role.useBaseValue }}</template>
|
|
|
|
</MkSwitch>
|
|
|
|
</MkSwitch>
|
|
|
|
<MkSwitch v-model="policies.gtlAvailable.value" :disabled="policies.gtlAvailable.useDefault" :readonly="readonly">
|
|
|
|
<MkSwitch v-model="role.policies.gtlAvailable.value" :disabled="role.policies.gtlAvailable.useDefault" :readonly="readonly">
|
|
|
|
<template #label>{{ i18n.ts.enable }}</template>
|
|
|
|
<template #label>{{ i18n.ts.enable }}</template>
|
|
|
|
</MkSwitch>
|
|
|
|
</MkSwitch>
|
|
|
|
<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 : ''">
|
|
|
|
<MkRange v-model="role.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 : ''">
|
|
|
|
<template #label>{{ i18n.ts._role.priority }}</template>
|
|
|
|
<template #label>{{ i18n.ts._role.priority }}</template>
|
|
|
|
</MkRange>
|
|
|
|
</MkRange>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
@ -105,18 +105,18 @@
|
|
|
|
<MkFolder v-if="matchQuery([i18n.ts._role._options.ltlAvailable, 'ltlAvailable'])">
|
|
|
|
<MkFolder v-if="matchQuery([i18n.ts._role._options.ltlAvailable, 'ltlAvailable'])">
|
|
|
|
<template #label>{{ i18n.ts._role._options.ltlAvailable }}</template>
|
|
|
|
<template #label>{{ i18n.ts._role._options.ltlAvailable }}</template>
|
|
|
|
<template #suffix>
|
|
|
|
<template #suffix>
|
|
|
|
<span v-if="policies.ltlAvailable.useDefault" :class="$style.useDefaultLabel">{{ i18n.ts._role.useBaseValue }}</span>
|
|
|
|
<span v-if="role.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 v-else>{{ role.policies.ltlAvailable.value ? i18n.ts.yes : i18n.ts.no }}</span>
|
|
|
|
<span :class="$style.priorityIndicator"><i :class="getPriorityIcon(policies.ltlAvailable)"></i></span>
|
|
|
|
<span :class="$style.priorityIndicator"><i :class="getPriorityIcon(role.policies.ltlAvailable)"></i></span>
|
|
|
|
</template>
|
|
|
|
</template>
|
|
|
|
<div class="_gaps">
|
|
|
|
<div class="_gaps">
|
|
|
|
<MkSwitch v-model="policies.ltlAvailable.useDefault" :readonly="readonly">
|
|
|
|
<MkSwitch v-model="role.policies.ltlAvailable.useDefault" :readonly="readonly">
|
|
|
|
<template #label>{{ i18n.ts._role.useBaseValue }}</template>
|
|
|
|
<template #label>{{ i18n.ts._role.useBaseValue }}</template>
|
|
|
|
</MkSwitch>
|
|
|
|
</MkSwitch>
|
|
|
|
<MkSwitch v-model="policies.ltlAvailable.value" :disabled="policies.ltlAvailable.useDefault" :readonly="readonly">
|
|
|
|
<MkSwitch v-model="role.policies.ltlAvailable.value" :disabled="role.policies.ltlAvailable.useDefault" :readonly="readonly">
|
|
|
|
<template #label>{{ i18n.ts.enable }}</template>
|
|
|
|
<template #label>{{ i18n.ts.enable }}</template>
|
|
|
|
</MkSwitch>
|
|
|
|
</MkSwitch>
|
|
|
|
<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 : ''">
|
|
|
|
<MkRange v-model="role.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 : ''">
|
|
|
|
<template #label>{{ i18n.ts._role.priority }}</template>
|
|
|
|
<template #label>{{ i18n.ts._role.priority }}</template>
|
|
|
|
</MkRange>
|
|
|
|
</MkRange>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
@ -125,18 +125,18 @@
|
|
|
|
<MkFolder v-if="matchQuery([i18n.ts._role._options.canPublicNote, 'canPublicNote'])">
|
|
|
|
<MkFolder v-if="matchQuery([i18n.ts._role._options.canPublicNote, 'canPublicNote'])">
|
|
|
|
<template #label>{{ i18n.ts._role._options.canPublicNote }}</template>
|
|
|
|
<template #label>{{ i18n.ts._role._options.canPublicNote }}</template>
|
|
|
|
<template #suffix>
|
|
|
|
<template #suffix>
|
|
|
|
<span v-if="policies.canPublicNote.useDefault" :class="$style.useDefaultLabel">{{ i18n.ts._role.useBaseValue }}</span>
|
|
|
|
<span v-if="role.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 v-else>{{ role.policies.canPublicNote.value ? i18n.ts.yes : i18n.ts.no }}</span>
|
|
|
|
<span :class="$style.priorityIndicator"><i :class="getPriorityIcon(policies.canPublicNote)"></i></span>
|
|
|
|
<span :class="$style.priorityIndicator"><i :class="getPriorityIcon(role.policies.canPublicNote)"></i></span>
|
|
|
|
</template>
|
|
|
|
</template>
|
|
|
|
<div class="_gaps">
|
|
|
|
<div class="_gaps">
|
|
|
|
<MkSwitch v-model="policies.canPublicNote.useDefault" :readonly="readonly">
|
|
|
|
<MkSwitch v-model="role.policies.canPublicNote.useDefault" :readonly="readonly">
|
|
|
|
<template #label>{{ i18n.ts._role.useBaseValue }}</template>
|
|
|
|
<template #label>{{ i18n.ts._role.useBaseValue }}</template>
|
|
|
|
</MkSwitch>
|
|
|
|
</MkSwitch>
|
|
|
|
<MkSwitch v-model="policies.canPublicNote.value" :disabled="policies.canPublicNote.useDefault" :readonly="readonly">
|
|
|
|
<MkSwitch v-model="role.policies.canPublicNote.value" :disabled="role.policies.canPublicNote.useDefault" :readonly="readonly">
|
|
|
|
<template #label>{{ i18n.ts.enable }}</template>
|
|
|
|
<template #label>{{ i18n.ts.enable }}</template>
|
|
|
|
</MkSwitch>
|
|
|
|
</MkSwitch>
|
|
|
|
<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 : ''">
|
|
|
|
<MkRange v-model="role.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 : ''">
|
|
|
|
<template #label>{{ i18n.ts._role.priority }}</template>
|
|
|
|
<template #label>{{ i18n.ts._role.priority }}</template>
|
|
|
|
</MkRange>
|
|
|
|
</MkRange>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
@ -145,18 +145,18 @@
|
|
|
|
<MkFolder v-if="matchQuery([i18n.ts._role._options.canInvite, 'canInvite'])">
|
|
|
|
<MkFolder v-if="matchQuery([i18n.ts._role._options.canInvite, 'canInvite'])">
|
|
|
|
<template #label>{{ i18n.ts._role._options.canInvite }}</template>
|
|
|
|
<template #label>{{ i18n.ts._role._options.canInvite }}</template>
|
|
|
|
<template #suffix>
|
|
|
|
<template #suffix>
|
|
|
|
<span v-if="policies.canInvite.useDefault" :class="$style.useDefaultLabel">{{ i18n.ts._role.useBaseValue }}</span>
|
|
|
|
<span v-if="role.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 v-else>{{ role.policies.canInvite.value ? i18n.ts.yes : i18n.ts.no }}</span>
|
|
|
|
<span :class="$style.priorityIndicator"><i :class="getPriorityIcon(policies.canInvite)"></i></span>
|
|
|
|
<span :class="$style.priorityIndicator"><i :class="getPriorityIcon(role.policies.canInvite)"></i></span>
|
|
|
|
</template>
|
|
|
|
</template>
|
|
|
|
<div class="_gaps">
|
|
|
|
<div class="_gaps">
|
|
|
|
<MkSwitch v-model="policies.canInvite.useDefault" :readonly="readonly">
|
|
|
|
<MkSwitch v-model="role.policies.canInvite.useDefault" :readonly="readonly">
|
|
|
|
<template #label>{{ i18n.ts._role.useBaseValue }}</template>
|
|
|
|
<template #label>{{ i18n.ts._role.useBaseValue }}</template>
|
|
|
|
</MkSwitch>
|
|
|
|
</MkSwitch>
|
|
|
|
<MkSwitch v-model="policies.canInvite.value" :disabled="policies.canInvite.useDefault" :readonly="readonly">
|
|
|
|
<MkSwitch v-model="role.policies.canInvite.value" :disabled="role.policies.canInvite.useDefault" :readonly="readonly">
|
|
|
|
<template #label>{{ i18n.ts.enable }}</template>
|
|
|
|
<template #label>{{ i18n.ts.enable }}</template>
|
|
|
|
</MkSwitch>
|
|
|
|
</MkSwitch>
|
|
|
|
<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 : ''">
|
|
|
|
<MkRange v-model="role.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 : ''">
|
|
|
|
<template #label>{{ i18n.ts._role.priority }}</template>
|
|
|
|
<template #label>{{ i18n.ts._role.priority }}</template>
|
|
|
|
</MkRange>
|
|
|
|
</MkRange>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
@ -165,18 +165,18 @@
|
|
|
|
<MkFolder v-if="matchQuery([i18n.ts._role._options.canManageCustomEmojis, 'canManageCustomEmojis'])">
|
|
|
|
<MkFolder v-if="matchQuery([i18n.ts._role._options.canManageCustomEmojis, 'canManageCustomEmojis'])">
|
|
|
|
<template #label>{{ i18n.ts._role._options.canManageCustomEmojis }}</template>
|
|
|
|
<template #label>{{ i18n.ts._role._options.canManageCustomEmojis }}</template>
|
|
|
|
<template #suffix>
|
|
|
|
<template #suffix>
|
|
|
|
<span v-if="policies.canManageCustomEmojis.useDefault" :class="$style.useDefaultLabel">{{ i18n.ts._role.useBaseValue }}</span>
|
|
|
|
<span v-if="role.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 v-else>{{ role.policies.canManageCustomEmojis.value ? i18n.ts.yes : i18n.ts.no }}</span>
|
|
|
|
<span :class="$style.priorityIndicator"><i :class="getPriorityIcon(policies.canManageCustomEmojis)"></i></span>
|
|
|
|
<span :class="$style.priorityIndicator"><i :class="getPriorityIcon(role.policies.canManageCustomEmojis)"></i></span>
|
|
|
|
</template>
|
|
|
|
</template>
|
|
|
|
<div class="_gaps">
|
|
|
|
<div class="_gaps">
|
|
|
|
<MkSwitch v-model="policies.canManageCustomEmojis.useDefault" :readonly="readonly">
|
|
|
|
<MkSwitch v-model="role.policies.canManageCustomEmojis.useDefault" :readonly="readonly">
|
|
|
|
<template #label>{{ i18n.ts._role.useBaseValue }}</template>
|
|
|
|
<template #label>{{ i18n.ts._role.useBaseValue }}</template>
|
|
|
|
</MkSwitch>
|
|
|
|
</MkSwitch>
|
|
|
|
<MkSwitch v-model="policies.canManageCustomEmojis.value" :disabled="policies.canManageCustomEmojis.useDefault" :readonly="readonly">
|
|
|
|
<MkSwitch v-model="role.policies.canManageCustomEmojis.value" :disabled="role.policies.canManageCustomEmojis.useDefault" :readonly="readonly">
|
|
|
|
<template #label>{{ i18n.ts.enable }}</template>
|
|
|
|
<template #label>{{ i18n.ts.enable }}</template>
|
|
|
|
</MkSwitch>
|
|
|
|
</MkSwitch>
|
|
|
|
<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 : ''">
|
|
|
|
<MkRange v-model="role.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 : ''">
|
|
|
|
<template #label>{{ i18n.ts._role.priority }}</template>
|
|
|
|
<template #label>{{ i18n.ts._role.priority }}</template>
|
|
|
|
</MkRange>
|
|
|
|
</MkRange>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
@ -185,18 +185,18 @@
|
|
|
|
<MkFolder v-if="matchQuery([i18n.ts._role._options.driveCapacity, 'driveCapacityMb'])">
|
|
|
|
<MkFolder v-if="matchQuery([i18n.ts._role._options.driveCapacity, 'driveCapacityMb'])">
|
|
|
|
<template #label>{{ i18n.ts._role._options.driveCapacity }}</template>
|
|
|
|
<template #label>{{ i18n.ts._role._options.driveCapacity }}</template>
|
|
|
|
<template #suffix>
|
|
|
|
<template #suffix>
|
|
|
|
<span v-if="policies.driveCapacityMb.useDefault" :class="$style.useDefaultLabel">{{ i18n.ts._role.useBaseValue }}</span>
|
|
|
|
<span v-if="role.policies.driveCapacityMb.useDefault" :class="$style.useDefaultLabel">{{ i18n.ts._role.useBaseValue }}</span>
|
|
|
|
<span v-else>{{ policies.driveCapacityMb.value + 'MB' }}</span>
|
|
|
|
<span v-else>{{ role.policies.driveCapacityMb.value + 'MB' }}</span>
|
|
|
|
<span :class="$style.priorityIndicator"><i :class="getPriorityIcon(policies.driveCapacityMb)"></i></span>
|
|
|
|
<span :class="$style.priorityIndicator"><i :class="getPriorityIcon(role.policies.driveCapacityMb)"></i></span>
|
|
|
|
</template>
|
|
|
|
</template>
|
|
|
|
<div class="_gaps">
|
|
|
|
<div class="_gaps">
|
|
|
|
<MkSwitch v-model="policies.driveCapacityMb.useDefault" :readonly="readonly">
|
|
|
|
<MkSwitch v-model="role.policies.driveCapacityMb.useDefault" :readonly="readonly">
|
|
|
|
<template #label>{{ i18n.ts._role.useBaseValue }}</template>
|
|
|
|
<template #label>{{ i18n.ts._role.useBaseValue }}</template>
|
|
|
|
</MkSwitch>
|
|
|
|
</MkSwitch>
|
|
|
|
<MkInput v-model="policies.driveCapacityMb.value" :disabled="policies.driveCapacityMb.useDefault" type="number" :readonly="readonly">
|
|
|
|
<MkInput v-model="role.policies.driveCapacityMb.value" :disabled="role.policies.driveCapacityMb.useDefault" type="number" :readonly="readonly">
|
|
|
|
<template #suffix>MB</template>
|
|
|
|
<template #suffix>MB</template>
|
|
|
|
</MkInput>
|
|
|
|
</MkInput>
|
|
|
|
<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 : ''">
|
|
|
|
<MkRange v-model="role.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 : ''">
|
|
|
|
<template #label>{{ i18n.ts._role.priority }}</template>
|
|
|
|
<template #label>{{ i18n.ts._role.priority }}</template>
|
|
|
|
</MkRange>
|
|
|
|
</MkRange>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
@ -205,17 +205,17 @@
|
|
|
|
<MkFolder v-if="matchQuery([i18n.ts._role._options.pinMax, 'pinLimit'])">
|
|
|
|
<MkFolder v-if="matchQuery([i18n.ts._role._options.pinMax, 'pinLimit'])">
|
|
|
|
<template #label>{{ i18n.ts._role._options.pinMax }}</template>
|
|
|
|
<template #label>{{ i18n.ts._role._options.pinMax }}</template>
|
|
|
|
<template #suffix>
|
|
|
|
<template #suffix>
|
|
|
|
<span v-if="policies.pinLimit.useDefault" :class="$style.useDefaultLabel">{{ i18n.ts._role.useBaseValue }}</span>
|
|
|
|
<span v-if="role.policies.pinLimit.useDefault" :class="$style.useDefaultLabel">{{ i18n.ts._role.useBaseValue }}</span>
|
|
|
|
<span v-else>{{ policies.pinLimit.value }}</span>
|
|
|
|
<span v-else>{{ role.policies.pinLimit.value }}</span>
|
|
|
|
<span :class="$style.priorityIndicator"><i :class="getPriorityIcon(policies.pinLimit)"></i></span>
|
|
|
|
<span :class="$style.priorityIndicator"><i :class="getPriorityIcon(role.policies.pinLimit)"></i></span>
|
|
|
|
</template>
|
|
|
|
</template>
|
|
|
|
<div class="_gaps">
|
|
|
|
<div class="_gaps">
|
|
|
|
<MkSwitch v-model="policies.pinLimit.useDefault" :readonly="readonly">
|
|
|
|
<MkSwitch v-model="role.policies.pinLimit.useDefault" :readonly="readonly">
|
|
|
|
<template #label>{{ i18n.ts._role.useBaseValue }}</template>
|
|
|
|
<template #label>{{ i18n.ts._role.useBaseValue }}</template>
|
|
|
|
</MkSwitch>
|
|
|
|
</MkSwitch>
|
|
|
|
<MkInput v-model="policies.pinLimit.value" :disabled="policies.pinLimit.useDefault" type="number" :readonly="readonly">
|
|
|
|
<MkInput v-model="role.policies.pinLimit.value" :disabled="role.policies.pinLimit.useDefault" type="number" :readonly="readonly">
|
|
|
|
</MkInput>
|
|
|
|
</MkInput>
|
|
|
|
<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 : ''">
|
|
|
|
<MkRange v-model="role.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 : ''">
|
|
|
|
<template #label>{{ i18n.ts._role.priority }}</template>
|
|
|
|
<template #label>{{ i18n.ts._role.priority }}</template>
|
|
|
|
</MkRange>
|
|
|
|
</MkRange>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
@ -224,17 +224,17 @@
|
|
|
|
<MkFolder v-if="matchQuery([i18n.ts._role._options.antennaMax, 'antennaLimit'])">
|
|
|
|
<MkFolder v-if="matchQuery([i18n.ts._role._options.antennaMax, 'antennaLimit'])">
|
|
|
|
<template #label>{{ i18n.ts._role._options.antennaMax }}</template>
|
|
|
|
<template #label>{{ i18n.ts._role._options.antennaMax }}</template>
|
|
|
|
<template #suffix>
|
|
|
|
<template #suffix>
|
|
|
|
<span v-if="policies.antennaLimit.useDefault" :class="$style.useDefaultLabel">{{ i18n.ts._role.useBaseValue }}</span>
|
|
|
|
<span v-if="role.policies.antennaLimit.useDefault" :class="$style.useDefaultLabel">{{ i18n.ts._role.useBaseValue }}</span>
|
|
|
|
<span v-else>{{ policies.antennaLimit.value }}</span>
|
|
|
|
<span v-else>{{ role.policies.antennaLimit.value }}</span>
|
|
|
|
<span :class="$style.priorityIndicator"><i :class="getPriorityIcon(policies.antennaLimit)"></i></span>
|
|
|
|
<span :class="$style.priorityIndicator"><i :class="getPriorityIcon(role.policies.antennaLimit)"></i></span>
|
|
|
|
</template>
|
|
|
|
</template>
|
|
|
|
<div class="_gaps">
|
|
|
|
<div class="_gaps">
|
|
|
|
<MkSwitch v-model="policies.antennaLimit.useDefault" :readonly="readonly">
|
|
|
|
<MkSwitch v-model="role.policies.antennaLimit.useDefault" :readonly="readonly">
|
|
|
|
<template #label>{{ i18n.ts._role.useBaseValue }}</template>
|
|
|
|
<template #label>{{ i18n.ts._role.useBaseValue }}</template>
|
|
|
|
</MkSwitch>
|
|
|
|
</MkSwitch>
|
|
|
|
<MkInput v-model="policies.antennaLimit.value" :disabled="policies.antennaLimit.useDefault" type="number" :readonly="readonly">
|
|
|
|
<MkInput v-model="role.policies.antennaLimit.value" :disabled="role.policies.antennaLimit.useDefault" type="number" :readonly="readonly">
|
|
|
|
</MkInput>
|
|
|
|
</MkInput>
|
|
|
|
<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 : ''">
|
|
|
|
<MkRange v-model="role.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 : ''">
|
|
|
|
<template #label>{{ i18n.ts._role.priority }}</template>
|
|
|
|
<template #label>{{ i18n.ts._role.priority }}</template>
|
|
|
|
</MkRange>
|
|
|
|
</MkRange>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
@ -243,18 +243,18 @@
|
|
|
|
<MkFolder v-if="matchQuery([i18n.ts._role._options.wordMuteMax, 'wordMuteLimit'])">
|
|
|
|
<MkFolder v-if="matchQuery([i18n.ts._role._options.wordMuteMax, 'wordMuteLimit'])">
|
|
|
|
<template #label>{{ i18n.ts._role._options.wordMuteMax }}</template>
|
|
|
|
<template #label>{{ i18n.ts._role._options.wordMuteMax }}</template>
|
|
|
|
<template #suffix>
|
|
|
|
<template #suffix>
|
|
|
|
<span v-if="policies.wordMuteLimit.useDefault" :class="$style.useDefaultLabel">{{ i18n.ts._role.useBaseValue }}</span>
|
|
|
|
<span v-if="role.policies.wordMuteLimit.useDefault" :class="$style.useDefaultLabel">{{ i18n.ts._role.useBaseValue }}</span>
|
|
|
|
<span v-else>{{ policies.wordMuteLimit.value }}</span>
|
|
|
|
<span v-else>{{ role.policies.wordMuteLimit.value }}</span>
|
|
|
|
<span :class="$style.priorityIndicator"><i :class="getPriorityIcon(policies.wordMuteLimit)"></i></span>
|
|
|
|
<span :class="$style.priorityIndicator"><i :class="getPriorityIcon(role.policies.wordMuteLimit)"></i></span>
|
|
|
|
</template>
|
|
|
|
</template>
|
|
|
|
<div class="_gaps">
|
|
|
|
<div class="_gaps">
|
|
|
|
<MkSwitch v-model="policies.wordMuteLimit.useDefault" :readonly="readonly">
|
|
|
|
<MkSwitch v-model="role.policies.wordMuteLimit.useDefault" :readonly="readonly">
|
|
|
|
<template #label>{{ i18n.ts._role.useBaseValue }}</template>
|
|
|
|
<template #label>{{ i18n.ts._role.useBaseValue }}</template>
|
|
|
|
</MkSwitch>
|
|
|
|
</MkSwitch>
|
|
|
|
<MkInput v-model="policies.wordMuteLimit.value" :disabled="policies.wordMuteLimit.useDefault" type="number" :readonly="readonly">
|
|
|
|
<MkInput v-model="role.policies.wordMuteLimit.value" :disabled="role.policies.wordMuteLimit.useDefault" type="number" :readonly="readonly">
|
|
|
|
<template #suffix>chars</template>
|
|
|
|
<template #suffix>chars</template>
|
|
|
|
</MkInput>
|
|
|
|
</MkInput>
|
|
|
|
<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 : ''">
|
|
|
|
<MkRange v-model="role.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 : ''">
|
|
|
|
<template #label>{{ i18n.ts._role.priority }}</template>
|
|
|
|
<template #label>{{ i18n.ts._role.priority }}</template>
|
|
|
|
</MkRange>
|
|
|
|
</MkRange>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
@ -263,17 +263,17 @@
|
|
|
|
<MkFolder v-if="matchQuery([i18n.ts._role._options.webhookMax, 'webhookLimit'])">
|
|
|
|
<MkFolder v-if="matchQuery([i18n.ts._role._options.webhookMax, 'webhookLimit'])">
|
|
|
|
<template #label>{{ i18n.ts._role._options.webhookMax }}</template>
|
|
|
|
<template #label>{{ i18n.ts._role._options.webhookMax }}</template>
|
|
|
|
<template #suffix>
|
|
|
|
<template #suffix>
|
|
|
|
<span v-if="policies.webhookLimit.useDefault" :class="$style.useDefaultLabel">{{ i18n.ts._role.useBaseValue }}</span>
|
|
|
|
<span v-if="role.policies.webhookLimit.useDefault" :class="$style.useDefaultLabel">{{ i18n.ts._role.useBaseValue }}</span>
|
|
|
|
<span v-else>{{ policies.webhookLimit.value }}</span>
|
|
|
|
<span v-else>{{ role.policies.webhookLimit.value }}</span>
|
|
|
|
<span :class="$style.priorityIndicator"><i :class="getPriorityIcon(policies.webhookLimit)"></i></span>
|
|
|
|
<span :class="$style.priorityIndicator"><i :class="getPriorityIcon(role.policies.webhookLimit)"></i></span>
|
|
|
|
</template>
|
|
|
|
</template>
|
|
|
|
<div class="_gaps">
|
|
|
|
<div class="_gaps">
|
|
|
|
<MkSwitch v-model="policies.webhookLimit.useDefault" :readonly="readonly">
|
|
|
|
<MkSwitch v-model="role.policies.webhookLimit.useDefault" :readonly="readonly">
|
|
|
|
<template #label>{{ i18n.ts._role.useBaseValue }}</template>
|
|
|
|
<template #label>{{ i18n.ts._role.useBaseValue }}</template>
|
|
|
|
</MkSwitch>
|
|
|
|
</MkSwitch>
|
|
|
|
<MkInput v-model="policies.webhookLimit.value" :disabled="policies.webhookLimit.useDefault" type="number" :readonly="readonly">
|
|
|
|
<MkInput v-model="role.policies.webhookLimit.value" :disabled="role.policies.webhookLimit.useDefault" type="number" :readonly="readonly">
|
|
|
|
</MkInput>
|
|
|
|
</MkInput>
|
|
|
|
<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 : ''">
|
|
|
|
<MkRange v-model="role.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 : ''">
|
|
|
|
<template #label>{{ i18n.ts._role.priority }}</template>
|
|
|
|
<template #label>{{ i18n.ts._role.priority }}</template>
|
|
|
|
</MkRange>
|
|
|
|
</MkRange>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
@ -282,17 +282,17 @@
|
|
|
|
<MkFolder v-if="matchQuery([i18n.ts._role._options.clipMax, 'clipLimit'])">
|
|
|
|
<MkFolder v-if="matchQuery([i18n.ts._role._options.clipMax, 'clipLimit'])">
|
|
|
|
<template #label>{{ i18n.ts._role._options.clipMax }}</template>
|
|
|
|
<template #label>{{ i18n.ts._role._options.clipMax }}</template>
|
|
|
|
<template #suffix>
|
|
|
|
<template #suffix>
|
|
|
|
<span v-if="policies.clipLimit.useDefault" :class="$style.useDefaultLabel">{{ i18n.ts._role.useBaseValue }}</span>
|
|
|
|
<span v-if="role.policies.clipLimit.useDefault" :class="$style.useDefaultLabel">{{ i18n.ts._role.useBaseValue }}</span>
|
|
|
|
<span v-else>{{ policies.clipLimit.value }}</span>
|
|
|
|
<span v-else>{{ role.policies.clipLimit.value }}</span>
|
|
|
|
<span :class="$style.priorityIndicator"><i :class="getPriorityIcon(policies.clipLimit)"></i></span>
|
|
|
|
<span :class="$style.priorityIndicator"><i :class="getPriorityIcon(role.policies.clipLimit)"></i></span>
|
|
|
|
</template>
|
|
|
|
</template>
|
|
|
|
<div class="_gaps">
|
|
|
|
<div class="_gaps">
|
|
|
|
<MkSwitch v-model="policies.clipLimit.useDefault" :readonly="readonly">
|
|
|
|
<MkSwitch v-model="role.policies.clipLimit.useDefault" :readonly="readonly">
|
|
|
|
<template #label>{{ i18n.ts._role.useBaseValue }}</template>
|
|
|
|
<template #label>{{ i18n.ts._role.useBaseValue }}</template>
|
|
|
|
</MkSwitch>
|
|
|
|
</MkSwitch>
|
|
|
|
<MkInput v-model="policies.clipLimit.value" :disabled="policies.clipLimit.useDefault" type="number" :readonly="readonly">
|
|
|
|
<MkInput v-model="role.policies.clipLimit.value" :disabled="role.policies.clipLimit.useDefault" type="number" :readonly="readonly">
|
|
|
|
</MkInput>
|
|
|
|
</MkInput>
|
|
|
|
<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 : ''">
|
|
|
|
<MkRange v-model="role.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 : ''">
|
|
|
|
<template #label>{{ i18n.ts._role.priority }}</template>
|
|
|
|
<template #label>{{ i18n.ts._role.priority }}</template>
|
|
|
|
</MkRange>
|
|
|
|
</MkRange>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
@ -301,17 +301,17 @@
|
|
|
|
<MkFolder v-if="matchQuery([i18n.ts._role._options.noteEachClipsMax, 'noteEachClipsLimit'])">
|
|
|
|
<MkFolder v-if="matchQuery([i18n.ts._role._options.noteEachClipsMax, 'noteEachClipsLimit'])">
|
|
|
|
<template #label>{{ i18n.ts._role._options.noteEachClipsMax }}</template>
|
|
|
|
<template #label>{{ i18n.ts._role._options.noteEachClipsMax }}</template>
|
|
|
|
<template #suffix>
|
|
|
|
<template #suffix>
|
|
|
|
<span v-if="policies.noteEachClipsLimit.useDefault" :class="$style.useDefaultLabel">{{ i18n.ts._role.useBaseValue }}</span>
|
|
|
|
<span v-if="role.policies.noteEachClipsLimit.useDefault" :class="$style.useDefaultLabel">{{ i18n.ts._role.useBaseValue }}</span>
|
|
|
|
<span v-else>{{ policies.noteEachClipsLimit.value }}</span>
|
|
|
|
<span v-else>{{ role.policies.noteEachClipsLimit.value }}</span>
|
|
|
|
<span :class="$style.priorityIndicator"><i :class="getPriorityIcon(policies.noteEachClipsLimit)"></i></span>
|
|
|
|
<span :class="$style.priorityIndicator"><i :class="getPriorityIcon(role.policies.noteEachClipsLimit)"></i></span>
|
|
|
|
</template>
|
|
|
|
</template>
|
|
|
|
<div class="_gaps">
|
|
|
|
<div class="_gaps">
|
|
|
|
<MkSwitch v-model="policies.noteEachClipsLimit.useDefault" :readonly="readonly">
|
|
|
|
<MkSwitch v-model="role.policies.noteEachClipsLimit.useDefault" :readonly="readonly">
|
|
|
|
<template #label>{{ i18n.ts._role.useBaseValue }}</template>
|
|
|
|
<template #label>{{ i18n.ts._role.useBaseValue }}</template>
|
|
|
|
</MkSwitch>
|
|
|
|
</MkSwitch>
|
|
|
|
<MkInput v-model="policies.noteEachClipsLimit.value" :disabled="policies.noteEachClipsLimit.useDefault" type="number" :readonly="readonly">
|
|
|
|
<MkInput v-model="role.policies.noteEachClipsLimit.value" :disabled="role.policies.noteEachClipsLimit.useDefault" type="number" :readonly="readonly">
|
|
|
|
</MkInput>
|
|
|
|
</MkInput>
|
|
|
|
<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 : ''">
|
|
|
|
<MkRange v-model="role.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 : ''">
|
|
|
|
<template #label>{{ i18n.ts._role.priority }}</template>
|
|
|
|
<template #label>{{ i18n.ts._role.priority }}</template>
|
|
|
|
</MkRange>
|
|
|
|
</MkRange>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
@ -320,17 +320,17 @@
|
|
|
|
<MkFolder v-if="matchQuery([i18n.ts._role._options.userListMax, 'userListLimit'])">
|
|
|
|
<MkFolder v-if="matchQuery([i18n.ts._role._options.userListMax, 'userListLimit'])">
|
|
|
|
<template #label>{{ i18n.ts._role._options.userListMax }}</template>
|
|
|
|
<template #label>{{ i18n.ts._role._options.userListMax }}</template>
|
|
|
|
<template #suffix>
|
|
|
|
<template #suffix>
|
|
|
|
<span v-if="policies.userListLimit.useDefault" :class="$style.useDefaultLabel">{{ i18n.ts._role.useBaseValue }}</span>
|
|
|
|
<span v-if="role.policies.userListLimit.useDefault" :class="$style.useDefaultLabel">{{ i18n.ts._role.useBaseValue }}</span>
|
|
|
|
<span v-else>{{ policies.userListLimit.value }}</span>
|
|
|
|
<span v-else>{{ role.policies.userListLimit.value }}</span>
|
|
|
|
<span :class="$style.priorityIndicator"><i :class="getPriorityIcon(policies.userListLimit)"></i></span>
|
|
|
|
<span :class="$style.priorityIndicator"><i :class="getPriorityIcon(role.policies.userListLimit)"></i></span>
|
|
|
|
</template>
|
|
|
|
</template>
|
|
|
|
<div class="_gaps">
|
|
|
|
<div class="_gaps">
|
|
|
|
<MkSwitch v-model="policies.userListLimit.useDefault" :readonly="readonly">
|
|
|
|
<MkSwitch v-model="role.policies.userListLimit.useDefault" :readonly="readonly">
|
|
|
|
<template #label>{{ i18n.ts._role.useBaseValue }}</template>
|
|
|
|
<template #label>{{ i18n.ts._role.useBaseValue }}</template>
|
|
|
|
</MkSwitch>
|
|
|
|
</MkSwitch>
|
|
|
|
<MkInput v-model="policies.userListLimit.value" :disabled="policies.userListLimit.useDefault" type="number" :readonly="readonly">
|
|
|
|
<MkInput v-model="role.policies.userListLimit.value" :disabled="role.policies.userListLimit.useDefault" type="number" :readonly="readonly">
|
|
|
|
</MkInput>
|
|
|
|
</MkInput>
|
|
|
|
<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 : ''">
|
|
|
|
<MkRange v-model="role.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 : ''">
|
|
|
|
<template #label>{{ i18n.ts._role.priority }}</template>
|
|
|
|
<template #label>{{ i18n.ts._role.priority }}</template>
|
|
|
|
</MkRange>
|
|
|
|
</MkRange>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
@ -339,17 +339,17 @@
|
|
|
|
<MkFolder v-if="matchQuery([i18n.ts._role._options.userEachUserListsMax, 'userEachUserListsLimit'])">
|
|
|
|
<MkFolder v-if="matchQuery([i18n.ts._role._options.userEachUserListsMax, 'userEachUserListsLimit'])">
|
|
|
|
<template #label>{{ i18n.ts._role._options.userEachUserListsMax }}</template>
|
|
|
|
<template #label>{{ i18n.ts._role._options.userEachUserListsMax }}</template>
|
|
|
|
<template #suffix>
|
|
|
|
<template #suffix>
|
|
|
|
<span v-if="policies.userEachUserListsLimit.useDefault" :class="$style.useDefaultLabel">{{ i18n.ts._role.useBaseValue }}</span>
|
|
|
|
<span v-if="role.policies.userEachUserListsLimit.useDefault" :class="$style.useDefaultLabel">{{ i18n.ts._role.useBaseValue }}</span>
|
|
|
|
<span v-else>{{ policies.userEachUserListsLimit.value }}</span>
|
|
|
|
<span v-else>{{ role.policies.userEachUserListsLimit.value }}</span>
|
|
|
|
<span :class="$style.priorityIndicator"><i :class="getPriorityIcon(policies.userEachUserListsLimit)"></i></span>
|
|
|
|
<span :class="$style.priorityIndicator"><i :class="getPriorityIcon(role.policies.userEachUserListsLimit)"></i></span>
|
|
|
|
</template>
|
|
|
|
</template>
|
|
|
|
<div class="_gaps">
|
|
|
|
<div class="_gaps">
|
|
|
|
<MkSwitch v-model="policies.userEachUserListsLimit.useDefault" :readonly="readonly">
|
|
|
|
<MkSwitch v-model="role.policies.userEachUserListsLimit.useDefault" :readonly="readonly">
|
|
|
|
<template #label>{{ i18n.ts._role.useBaseValue }}</template>
|
|
|
|
<template #label>{{ i18n.ts._role.useBaseValue }}</template>
|
|
|
|
</MkSwitch>
|
|
|
|
</MkSwitch>
|
|
|
|
<MkInput v-model="policies.userEachUserListsLimit.value" :disabled="policies.userEachUserListsLimit.useDefault" type="number" :readonly="readonly">
|
|
|
|
<MkInput v-model="role.policies.userEachUserListsLimit.value" :disabled="role.policies.userEachUserListsLimit.useDefault" type="number" :readonly="readonly">
|
|
|
|
</MkInput>
|
|
|
|
</MkInput>
|
|
|
|
<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 : ''">
|
|
|
|
<MkRange v-model="role.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 : ''">
|
|
|
|
<template #label>{{ i18n.ts._role.priority }}</template>
|
|
|
|
<template #label>{{ i18n.ts._role.priority }}</template>
|
|
|
|
</MkRange>
|
|
|
|
</MkRange>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
@ -358,105 +358,74 @@
|
|
|
|
<MkFolder v-if="matchQuery([i18n.ts._role._options.canHideAds, 'canHideAds'])">
|
|
|
|
<MkFolder v-if="matchQuery([i18n.ts._role._options.canHideAds, 'canHideAds'])">
|
|
|
|
<template #label>{{ i18n.ts._role._options.canHideAds }}</template>
|
|
|
|
<template #label>{{ i18n.ts._role._options.canHideAds }}</template>
|
|
|
|
<template #suffix>
|
|
|
|
<template #suffix>
|
|
|
|
<span v-if="policies.canHideAds.useDefault" :class="$style.useDefaultLabel">{{ i18n.ts._role.useBaseValue }}</span>
|
|
|
|
<span v-if="role.policies.canHideAds.useDefault" :class="$style.useDefaultLabel">{{ i18n.ts._role.useBaseValue }}</span>
|
|
|
|
<span v-else>{{ policies.canHideAds.value ? i18n.ts.yes : i18n.ts.no }}</span>
|
|
|
|
<span v-else>{{ role.policies.canHideAds.value ? i18n.ts.yes : i18n.ts.no }}</span>
|
|
|
|
<span :class="$style.priorityIndicator"><i :class="getPriorityIcon(policies.canHideAds)"></i></span>
|
|
|
|
<span :class="$style.priorityIndicator"><i :class="getPriorityIcon(role.policies.canHideAds)"></i></span>
|
|
|
|
</template>
|
|
|
|
</template>
|
|
|
|
<div class="_gaps">
|
|
|
|
<div class="_gaps">
|
|
|
|
<MkSwitch v-model="policies.canHideAds.useDefault" :readonly="readonly">
|
|
|
|
<MkSwitch v-model="role.policies.canHideAds.useDefault" :readonly="readonly">
|
|
|
|
<template #label>{{ i18n.ts._role.useBaseValue }}</template>
|
|
|
|
<template #label>{{ i18n.ts._role.useBaseValue }}</template>
|
|
|
|
</MkSwitch>
|
|
|
|
</MkSwitch>
|
|
|
|
<MkSwitch v-model="policies.canHideAds.value" :disabled="policies.canHideAds.useDefault" :readonly="readonly">
|
|
|
|
<MkSwitch v-model="role.policies.canHideAds.value" :disabled="role.policies.canHideAds.useDefault" :readonly="readonly">
|
|
|
|
<template #label>{{ i18n.ts.enable }}</template>
|
|
|
|
<template #label>{{ i18n.ts.enable }}</template>
|
|
|
|
</MkSwitch>
|
|
|
|
</MkSwitch>
|
|
|
|
<MkRange v-model="policies.canHideAds.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 : ''">
|
|
|
|
<MkRange v-model="role.policies.canHideAds.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 : ''">
|
|
|
|
<template #label>{{ i18n.ts._role.priority }}</template>
|
|
|
|
<template #label>{{ i18n.ts._role.priority }}</template>
|
|
|
|
</MkRange>
|
|
|
|
</MkRange>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</MkFolder>
|
|
|
|
</MkFolder>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</FormSlot>
|
|
|
|
</FormSlot>
|
|
|
|
|
|
|
|
|
|
|
|
<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>
|
|
|
|
</div>
|
|
|
|
</template>
|
|
|
|
</template>
|
|
|
|
|
|
|
|
|
|
|
|
<script lang="ts" setup>
|
|
|
|
<script lang="ts" setup>
|
|
|
|
import { reactive, watch } from 'vue';
|
|
|
|
import { watch } from 'vue';
|
|
|
|
import { v4 as uuid } from 'uuid';
|
|
|
|
import { throttle } from 'throttle-debounce';
|
|
|
|
import RolesEditorFormula from './RolesEditorFormula.vue';
|
|
|
|
import RolesEditorFormula from './RolesEditorFormula.vue';
|
|
|
|
import MkInput from '@/components/MkInput.vue';
|
|
|
|
import MkInput from '@/components/MkInput.vue';
|
|
|
|
import MkSelect from '@/components/MkSelect.vue';
|
|
|
|
import MkSelect from '@/components/MkSelect.vue';
|
|
|
|
import MkTextarea from '@/components/MkTextarea.vue';
|
|
|
|
import MkTextarea from '@/components/MkTextarea.vue';
|
|
|
|
import MkFolder from '@/components/MkFolder.vue';
|
|
|
|
import MkFolder from '@/components/MkFolder.vue';
|
|
|
|
import MkSwitch from '@/components/MkSwitch.vue';
|
|
|
|
import MkSwitch from '@/components/MkSwitch.vue';
|
|
|
|
import MkButton from '@/components/MkButton.vue';
|
|
|
|
|
|
|
|
import MkRange from '@/components/MkRange.vue';
|
|
|
|
import MkRange from '@/components/MkRange.vue';
|
|
|
|
import FormSlot from '@/components/form/slot.vue';
|
|
|
|
import FormSlot from '@/components/form/slot.vue';
|
|
|
|
import * as os from '@/os';
|
|
|
|
|
|
|
|
import { i18n } from '@/i18n';
|
|
|
|
import { i18n } from '@/i18n';
|
|
|
|
|
|
|
|
import { ROLE_POLICIES } from '@/const';
|
|
|
|
import { instance } from '@/instance';
|
|
|
|
import { instance } from '@/instance';
|
|
|
|
|
|
|
|
import { deepClone } from '@/scripts/clone';
|
|
|
|
const ROLE_POLICIES = [
|
|
|
|
|
|
|
|
'gtlAvailable',
|
|
|
|
|
|
|
|
'ltlAvailable',
|
|
|
|
|
|
|
|
'canPublicNote',
|
|
|
|
|
|
|
|
'canInvite',
|
|
|
|
|
|
|
|
'canManageCustomEmojis',
|
|
|
|
|
|
|
|
'canHideAds',
|
|
|
|
|
|
|
|
'driveCapacityMb',
|
|
|
|
|
|
|
|
'pinLimit',
|
|
|
|
|
|
|
|
'antennaLimit',
|
|
|
|
|
|
|
|
'wordMuteLimit',
|
|
|
|
|
|
|
|
'webhookLimit',
|
|
|
|
|
|
|
|
'clipLimit',
|
|
|
|
|
|
|
|
'noteEachClipsLimit',
|
|
|
|
|
|
|
|
'userListLimit',
|
|
|
|
|
|
|
|
'userEachUserListsLimit',
|
|
|
|
|
|
|
|
'rateLimitFactor',
|
|
|
|
|
|
|
|
] as const;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
const emit = defineEmits<{
|
|
|
|
const emit = defineEmits<{
|
|
|
|
(ev: 'created', payload: any): void;
|
|
|
|
(ev: 'update:modelValue', v: any): void;
|
|
|
|
(ev: 'updated'): void;
|
|
|
|
|
|
|
|
}>();
|
|
|
|
}>();
|
|
|
|
|
|
|
|
|
|
|
|
const props = defineProps<{
|
|
|
|
const props = defineProps<{
|
|
|
|
role?: any;
|
|
|
|
modelValue: any;
|
|
|
|
readonly?: boolean;
|
|
|
|
readonly?: boolean;
|
|
|
|
}>();
|
|
|
|
}>();
|
|
|
|
|
|
|
|
|
|
|
|
const role = props.role;
|
|
|
|
let role = $ref(deepClone(props.modelValue));
|
|
|
|
let q = $ref('');
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
let name = $ref(role?.name ?? 'New Role');
|
|
|
|
// fill missing policy
|
|
|
|
let description = $ref(role?.description ?? '');
|
|
|
|
|
|
|
|
let rolePermission = $ref(role?.isAdministrator ? 'administrator' : role?.isModerator ? 'moderator' : 'normal');
|
|
|
|
|
|
|
|
let color = $ref(role?.color ?? null);
|
|
|
|
|
|
|
|
let iconUrl = $ref(role?.iconUrl ?? null);
|
|
|
|
|
|
|
|
let target = $ref(role?.target ?? 'manual');
|
|
|
|
|
|
|
|
let condFormula = $ref(role?.condFormula ?? { id: uuid(), type: 'isRemote' });
|
|
|
|
|
|
|
|
let isPublic = $ref(role?.isPublic ?? false);
|
|
|
|
|
|
|
|
let asBadge = $ref(role?.asBadge ?? false);
|
|
|
|
|
|
|
|
let canEditMembersByModerator = $ref(role?.canEditMembersByModerator ?? false);
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
const policies = reactive<Record<typeof ROLE_POLICIES[number], { useDefault: boolean; priority: number; value: any; }>>({});
|
|
|
|
|
|
|
|
for (const ROLE_POLICY of ROLE_POLICIES) {
|
|
|
|
for (const ROLE_POLICY of ROLE_POLICIES) {
|
|
|
|
const _policies = role?.policies ?? {};
|
|
|
|
if (role.policies[ROLE_POLICY] == null) {
|
|
|
|
policies[ROLE_POLICY] = {
|
|
|
|
role.policies[ROLE_POLICY] = {
|
|
|
|
useDefault: _policies[ROLE_POLICY]?.useDefault ?? true,
|
|
|
|
useDefault: true,
|
|
|
|
priority: _policies[ROLE_POLICY]?.priority ?? 0,
|
|
|
|
priority: 0,
|
|
|
|
value: _policies[ROLE_POLICY]?.value ?? instance.policies[ROLE_POLICY],
|
|
|
|
value: instance.policies[ROLE_POLICY],
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
if (_DEV_) {
|
|
|
|
let rolePermission = $computed({
|
|
|
|
watch($$(condFormula), () => {
|
|
|
|
get: () => role.isAdministrator ? 'administrator' : role.isModerator ? 'moderator' : 'normal',
|
|
|
|
console.log(JSON.parse(JSON.stringify(condFormula)));
|
|
|
|
set: (val) => {
|
|
|
|
}, { deep: true });
|
|
|
|
role.isAdministrator = val === 'administrator';
|
|
|
|
}
|
|
|
|
role.isModerator = val === 'moderator';
|
|
|
|
|
|
|
|
},
|
|
|
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
let q = $ref('');
|
|
|
|
|
|
|
|
|
|
|
|
function getPriorityIcon(option) {
|
|
|
|
function getPriorityIcon(option) {
|
|
|
|
if (option.priority === 2) return 'ti ti-arrows-up';
|
|
|
|
if (option.priority === 2) return 'ti ti-arrows-up';
|
|
|
@ -469,43 +438,26 @@ function matchQuery(keywords: string[]): boolean {
|
|
|
|
return keywords.some(keyword => keyword.toLowerCase().includes(q.toLowerCase()));
|
|
|
|
return keywords.some(keyword => keyword.toLowerCase().includes(q.toLowerCase()));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
async function save() {
|
|
|
|
const save = throttle(100, () => {
|
|
|
|
if (props.readonly) return;
|
|
|
|
const data = {
|
|
|
|
if (role) {
|
|
|
|
name: role.name,
|
|
|
|
os.apiWithDialog('admin/roles/update', {
|
|
|
|
description: role.description,
|
|
|
|
roleId: role.id,
|
|
|
|
color: role.color === '' ? null : role.color,
|
|
|
|
name,
|
|
|
|
iconUrl: role.iconUrl === '' ? null : role.iconUrl,
|
|
|
|
description,
|
|
|
|
target: role.target,
|
|
|
|
color: color === '' ? null : color,
|
|
|
|
condFormula: role.condFormula,
|
|
|
|
iconUrl: iconUrl === '' ? null : iconUrl,
|
|
|
|
isAdministrator: role.isAdministrator,
|
|
|
|
target,
|
|
|
|
isModerator: role.isModerator,
|
|
|
|
condFormula,
|
|
|
|
isPublic: role.isPublic,
|
|
|
|
isAdministrator: rolePermission === 'administrator',
|
|
|
|
asBadge: role.asBadge,
|
|
|
|
isModerator: rolePermission === 'moderator',
|
|
|
|
canEditMembersByModerator: role.canEditMembersByModerator,
|
|
|
|
isPublic,
|
|
|
|
policies: role.policies,
|
|
|
|
asBadge,
|
|
|
|
};
|
|
|
|
canEditMembersByModerator,
|
|
|
|
|
|
|
|
policies,
|
|
|
|
emit('update:modelValue', data);
|
|
|
|
});
|
|
|
|
});
|
|
|
|
emit('updated');
|
|
|
|
|
|
|
|
} else {
|
|
|
|
watch($$(role), save, { deep: true });
|
|
|
|
const created = await os.apiWithDialog('admin/roles/create', {
|
|
|
|
|
|
|
|
name,
|
|
|
|
|
|
|
|
description,
|
|
|
|
|
|
|
|
color: color === '' ? null : color,
|
|
|
|
|
|
|
|
iconUrl: iconUrl === '' ? null : iconUrl,
|
|
|
|
|
|
|
|
target,
|
|
|
|
|
|
|
|
condFormula,
|
|
|
|
|
|
|
|
isAdministrator: rolePermission === 'administrator',
|
|
|
|
|
|
|
|
isModerator: rolePermission === 'moderator',
|
|
|
|
|
|
|
|
isPublic,
|
|
|
|
|
|
|
|
asBadge,
|
|
|
|
|
|
|
|
canEditMembersByModerator,
|
|
|
|
|
|
|
|
policies,
|
|
|
|
|
|
|
|
});
|
|
|
|
|
|
|
|
emit('created', created);
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
</script>
|
|
|
|
</script>
|
|
|
|
|
|
|
|
|
|
|
|
<style lang="scss" module>
|
|
|
|
<style lang="scss" module>
|
|
|
|