diff --git a/locales/ja-JP.yml b/locales/ja-JP.yml
index abfe37416..cc6fe2b08 100644
--- a/locales/ja-JP.yml
+++ b/locales/ja-JP.yml
@@ -964,7 +964,6 @@ desktop/views/components/post-form.vue:
posting: "投稿中"
attach-media-from-local: "PCからメディアを添付"
attach-media-from-drive: "ドライブからメディアを添付"
- attach-cancel: "添付取り消し"
insert-a-kao: "v('ω')v"
create-poll: "アンケートを作成"
text-remain: "残り{}文字"
@@ -1070,6 +1069,11 @@ common/views/components/password-settings.vue:
changed: "パスワードを変更しました"
failed: "パスワード変更に失敗しました"
+common/views/components/post-form-attaches.vue:
+ attach-cancel: "添付取り消し"
+ mark-as-sensitive: "閲覧注意に設定"
+ unmark-as-sensitive: "閲覧注意を解除"
+
desktop/views/components/sub-note-content.vue:
private: "この投稿は非公開です"
deleted: "この投稿は削除されました"
diff --git a/src/client/app/admin/views/drive.vue b/src/client/app/admin/views/drive.vue
index 1f35de100..e4565b78f 100644
--- a/src/client/app/admin/views/drive.vue
+++ b/src/client/app/admin/views/drive.vue
@@ -38,7 +38,7 @@
@@ -75,10 +75,15 @@ import Vue from 'vue';
import i18n from '../../i18n';
import { faCloud, faTerminal, faSearch } from '@fortawesome/free-solid-svg-icons';
import { faTrashAlt, faEye, faEyeSlash } from '@fortawesome/free-regular-svg-icons';
+import XFileThumbnail from '../../common/views/components/drive-file-thumbnail.vue';
export default Vue.extend({
i18n: i18n('admin/views/drive.vue'),
+ components: {
+ XFileThumbnail
+ },
+
data() {
return {
file: null,
@@ -151,13 +156,6 @@ export default Vue.extend({
});
},
- thumbnail(file: any): any {
- return {
- 'background-color': file.properties.avgColor || 'transparent',
- 'background-image': `url(${file.thumbnailUrl})`
- };
- },
-
async del(file: any) {
const process = async () => {
await this.$root.api('drive/files/delete', { fileId: file.id });
@@ -179,9 +177,9 @@ export default Vue.extend({
this.$root.api('drive/files/update', {
fileId: file.id,
isSensitive: !file.isSensitive
+ }).then(() => {
+ file.isSensitive = !file.isSensitive;
});
-
- file.isSensitive = !file.isSensitive;
},
async show() {
diff --git a/src/client/app/common/views/components/drive-file-thumbnail.vue b/src/client/app/common/views/components/drive-file-thumbnail.vue
index c432de172..1a3ef3719 100644
--- a/src/client/app/common/views/components/drive-file-thumbnail.vue
+++ b/src/client/app/common/views/components/drive-file-thumbnail.vue
@@ -105,9 +105,7 @@ export default Vue.extend({
},
isThumbnailAvailable(): boolean {
return this.file.thumbnailUrl
- ? this.file.thumbnailUrl.endsWith('?thumbnail')
- ? (this.is === 'image' || this.is === 'video')
- : true
+ ? (this.is === 'image' || this.is === 'video')
: false;
},
background(): string {
diff --git a/src/client/app/common/views/components/post-form-attaches.vue b/src/client/app/common/views/components/post-form-attaches.vue
new file mode 100644
index 000000000..467e430cc
--- /dev/null
+++ b/src/client/app/common/views/components/post-form-attaches.vue
@@ -0,0 +1,139 @@
+
+
+
+
+
+
+
+
+
+
+
+
{{ 4 - files.length }}/4
+
+
+
+
+
+
diff --git a/src/client/app/common/views/widgets/post-form.vue b/src/client/app/common/views/widgets/post-form.vue
index f1826cc59..b30168b87 100644
--- a/src/client/app/common/views/widgets/post-form.vue
+++ b/src/client/app/common/views/widgets/post-form.vue
@@ -21,14 +21,7 @@
-
-
-
-
-
-
-
-
+
@@ -65,7 +57,6 @@
import Vue from 'vue';
import i18n from '../../../i18n';
import insertTextAtCursor from 'insert-text-at-cursor';
-import * as XDraggable from 'vuedraggable';
import getFace from '../../../common/scripts/get-face';
import MkVisibilityChooser from '../../../common/views/components/visibility-chooser.vue';
import { parse } from '../../../../../mfm/parse';
@@ -74,13 +65,14 @@ import { erase, unique } from '../../../../../prelude/array';
import { length } from 'stringz';
import { toASCII } from 'punycode';
import extractMentions from '../../../../../misc/extract-mentions';
+import XPostFormAttaches from '../../../common/views/components/post-form-attaches.vue';
export default Vue.extend({
i18n: i18n('desktop/views/components/post-form.vue'),
components: {
- XDraggable,
- MkVisibilityChooser
+ MkVisibilityChooser,
+ XPostFormAttaches
},
props: {
@@ -513,7 +505,7 @@ export default Vue.extend({
kao() {
this.text += getFace();
- }
+ },
}
});
@@ -618,46 +610,6 @@ export default Vue.extend({
border-bottom solid 1px var(--primaryAlpha01) !important
border-radius 0
- > .remain
- display block
- position absolute
- top 8px
- right 8px
- margin 0
- padding 0
- color var(--primaryAlpha04)
-
- > div
- padding 4px
-
- &:after
- content ""
- display block
- clear both
-
- > div
- float left
- border solid 4px transparent
- cursor move
-
- &:hover > .remove
- display block
-
- > .img
- width 64px
- height 64px
- background-size cover
- background-position center center
-
- > .remove
- display none
- position absolute
- top -6px
- right -6px
- width 16px
- height 16px
- cursor pointer
-
> .mk-poll-editor
background var(--desktopPostFormTextareaBg)
border solid 1px var(--primaryAlpha01)
diff --git a/src/client/app/mobile/views/components/post-form.vue b/src/client/app/mobile/views/components/post-form.vue
index 9c1072b4a..6b26cdf89 100644
--- a/src/client/app/mobile/views/components/post-form.vue
+++ b/src/client/app/mobile/views/components/post-form.vue
@@ -21,13 +21,7 @@
-
+