forked from AkkomaGang/admin-fe
Merge branch 'develop' into 'feature/emoji-packs-pagination'
# Conflicts: # CHANGELOG.md
This commit is contained in:
commit
1bae1cd3c9
6 changed files with 33 additions and 22 deletions
|
@ -14,6 +14,7 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).
|
||||||
- In Notes add link to the note author's profile page
|
- In Notes add link to the note author's profile page
|
||||||
- In Moderation log add link to the actor's profile page
|
- In Moderation log add link to the actor's profile page
|
||||||
- Support pagination of local emoji packs and files
|
- Support pagination of local emoji packs and files
|
||||||
|
- Adds MRF Activity Expiration setting
|
||||||
|
|
||||||
### Changed
|
### Changed
|
||||||
|
|
||||||
|
@ -23,6 +24,8 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).
|
||||||
- Settings that can't be altered in Admin FE are removed: HTTP Signatures settings, Federation publisher modules and Oban Repo
|
- Settings that can't be altered in Admin FE are removed: HTTP Signatures settings, Federation publisher modules and Oban Repo
|
||||||
- When rendering user's profile, statuses, reports and notes check if required properties exist
|
- When rendering user's profile, statuses, reports and notes check if required properties exist
|
||||||
- Remove ability to moderate users that don't have valid nickname
|
- Remove ability to moderate users that don't have valid nickname
|
||||||
|
- Displays both labels and description in the header of group of settiings
|
||||||
|
- Ability to add custom values in Pleroma.Upload.Filter.Mogrify setting
|
||||||
|
|
||||||
### Fixed
|
### Fixed
|
||||||
|
|
||||||
|
|
|
@ -327,8 +327,7 @@ export default {
|
||||||
type.includes('module') ||
|
type.includes('module') ||
|
||||||
(type.includes('list') && type.includes('string')) ||
|
(type.includes('list') && type.includes('string')) ||
|
||||||
(type.includes('list') && type.includes('atom')) ||
|
(type.includes('list') && type.includes('atom')) ||
|
||||||
(type.includes('regex') && type.includes('string')) ||
|
(type.includes('regex') && type.includes('string'))
|
||||||
this.setting.key === ':args'
|
|
||||||
)
|
)
|
||||||
},
|
},
|
||||||
renderSingleSelect(type) {
|
renderSingleSelect(type) {
|
||||||
|
|
|
@ -34,6 +34,10 @@
|
||||||
<setting :setting-group="mrfObjectAge" :data="mrfObjectAgeData"/>
|
<setting :setting-group="mrfObjectAge" :data="mrfObjectAgeData"/>
|
||||||
</el-form>
|
</el-form>
|
||||||
<el-divider v-if="mrfObjectAge" class="divider thick-line"/>
|
<el-divider v-if="mrfObjectAge" class="divider thick-line"/>
|
||||||
|
<el-form ref="mrfActivityExpiration" :model="mrfActivityExpirationData" :label-position="labelPosition" :label-width="labelWidth">
|
||||||
|
<setting :setting-group="mrfActivityExpiration" :data="mrfActivityExpirationData"/>
|
||||||
|
</el-form>
|
||||||
|
<el-divider v-if="mrfActivityExpiration" class="divider thick-line"/>
|
||||||
<el-form ref="modules" :model="modulesData" :label-position="labelPosition" :label-width="labelWidth">
|
<el-form ref="modules" :model="modulesData" :label-position="labelPosition" :label-width="labelWidth">
|
||||||
<setting :setting-group="modules" :data="modulesData"/>
|
<setting :setting-group="modules" :data="modulesData"/>
|
||||||
</el-form>
|
</el-form>
|
||||||
|
@ -86,6 +90,12 @@ export default {
|
||||||
modulesData() {
|
modulesData() {
|
||||||
return _.get(this.settings.settings, [':pleroma', ':modules']) || {}
|
return _.get(this.settings.settings, [':pleroma', ':modules']) || {}
|
||||||
},
|
},
|
||||||
|
mrfActivityExpiration() {
|
||||||
|
return this.settings.description.find(setting => setting.key === ':mrf_activity_expiration')
|
||||||
|
},
|
||||||
|
mrfActivityExpirationData() {
|
||||||
|
return _.get(this.settings.settings, [':pleroma', ':mrf_activity_expiration']) || {}
|
||||||
|
},
|
||||||
mrfSimple() {
|
mrfSimple() {
|
||||||
return this.settings.description.find(setting => setting.key === ':mrf_simple')
|
return this.settings.description.find(setting => setting.key === ':mrf_simple')
|
||||||
},
|
},
|
||||||
|
|
|
@ -1,7 +1,8 @@
|
||||||
<template>
|
<template>
|
||||||
<div v-if="!loading">
|
<div v-if="!loading">
|
||||||
<el-form-item v-if="settingGroup.description" :data-search="settingGroup.key || settingGroup.group" class="description-container">
|
<el-form-item v-if="settingGroup.label || settingGroup.description" :data-search="settingGroup.key || settingGroup.group" class="description-container">
|
||||||
<span class="description" v-html="getFormattedDescription(settingGroup.description)"/>
|
<span v-if="settingGroup.label" class="setting-label">{{ settingGroup.label }}</span>
|
||||||
|
<span v-if="settingGroup.description" class="expl no-top-margin" v-html="getFormattedDescription(settingGroup.description)"/>
|
||||||
</el-form-item>
|
</el-form-item>
|
||||||
<div v-if="settingGroup.key === 'Pleroma.Emails.Mailer'">
|
<div v-if="settingGroup.key === 'Pleroma.Emails.Mailer'">
|
||||||
<div v-for="setting in settingGroup.children.filter(setting => !setting.group)" :key="setting.key">
|
<div v-for="setting in settingGroup.children.filter(setting => !setting.group)" :key="setting.key">
|
||||||
|
|
|
@ -16,6 +16,8 @@
|
||||||
:value="data[setting.key]"
|
:value="data[setting.key]"
|
||||||
:data-search="setting.key || setting.group"
|
:data-search="setting.key || setting.group"
|
||||||
multiple
|
multiple
|
||||||
|
filterable
|
||||||
|
allow-create
|
||||||
class="input"
|
class="input"
|
||||||
@change="updateSetting($event, settingGroup.group, settingGroup.key, setting.key, setting.type)">
|
@change="updateSetting($event, settingGroup.group, settingGroup.key, setting.key, setting.type)">
|
||||||
<el-option value="strip" label="strip"/>
|
<el-option value="strip" label="strip"/>
|
||||||
|
|
|
@ -17,22 +17,11 @@
|
||||||
.delete-setting-button {
|
.delete-setting-button {
|
||||||
margin-left: 5px;
|
margin-left: 5px;
|
||||||
}
|
}
|
||||||
.description > p {
|
|
||||||
font-size: 14px;
|
|
||||||
color: #606266;
|
|
||||||
font-family: "Helvetica Neue",Helvetica,"PingFang SC","Hiragino Sans GB","Microsoft YaHei";
|
|
||||||
font-weight: 700;
|
|
||||||
line-height: 20px;
|
|
||||||
margin: 0 0 14px 0;
|
|
||||||
code {
|
|
||||||
display: inline;
|
|
||||||
padding: 2px 3px;
|
|
||||||
font-size: 14px;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
.description-container {
|
.description-container {
|
||||||
overflow-wrap: break-word;
|
overflow-wrap: break-word;
|
||||||
margin-bottom: 0;
|
.el-form-item__content {
|
||||||
|
line-height: 20px;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
.divider {
|
.divider {
|
||||||
margin: 0 0 18px 0;
|
margin: 0 0 18px 0;
|
||||||
|
@ -186,6 +175,9 @@
|
||||||
width: 30%;
|
width: 30%;
|
||||||
margin-right: 8px
|
margin-right: 8px
|
||||||
}
|
}
|
||||||
|
.no-top-margin {
|
||||||
|
margin-top: 0;
|
||||||
|
}
|
||||||
.pattern-input {
|
.pattern-input {
|
||||||
width: 20%;
|
width: 20%;
|
||||||
margin-right: 8px
|
margin-right: 8px
|
||||||
|
@ -267,6 +259,14 @@
|
||||||
display: flex;
|
display: flex;
|
||||||
margin-bottom: 10px;
|
margin-bottom: 10px;
|
||||||
}
|
}
|
||||||
|
.setting-label {
|
||||||
|
font-size: 14px;
|
||||||
|
color: #606266;
|
||||||
|
font-family: "Helvetica Neue",Helvetica,"PingFang SC","Hiragino Sans GB","Microsoft YaHei";
|
||||||
|
font-weight: 700;
|
||||||
|
line-height: 20px;
|
||||||
|
margin: 0 0 14px 0;
|
||||||
|
}
|
||||||
.settings-container {
|
.settings-container {
|
||||||
max-width: 1824px;
|
max-width: 1824px;
|
||||||
margin: auto;
|
margin: auto;
|
||||||
|
@ -500,10 +500,6 @@
|
||||||
.scale-input {
|
.scale-input {
|
||||||
width: 45%;
|
width: 45%;
|
||||||
}
|
}
|
||||||
.setting-label {
|
|
||||||
display: flex;
|
|
||||||
justify-content: space-between;
|
|
||||||
}
|
|
||||||
.settings-header {
|
.settings-header {
|
||||||
width: fit-content;
|
width: fit-content;
|
||||||
display: inline-block;
|
display: inline-block;
|
||||||
|
|
Loading…
Reference in a new issue