mirror of
https://iceshrimp.dev/limepotato/jormungandr-bite.git
synced 2025-03-04 07:18:50 -07:00
[Client:Mobile] Implement file rename
This commit is contained in:
parent
56008dac6a
commit
7e20a544a4
1 changed files with 12 additions and 0 deletions
|
@ -183,7 +183,19 @@
|
|||
@bytes-to-size = require '../../../common/scripts/bytes-to-size.js'
|
||||
@get-gcd = require '../../../common/scripts/gcd.js'
|
||||
|
||||
@mixin \api
|
||||
|
||||
@file = @opts.file
|
||||
@kind = @file.type.split \/ .0
|
||||
|
||||
@rename = ~>
|
||||
name = window.prompt '名前を変更' @file.name
|
||||
if name? and name != '' and name != @file.name
|
||||
@api \drive/files/update do
|
||||
file_id: @file.id
|
||||
name: name
|
||||
.then ~>
|
||||
@parent.cf @file
|
||||
|
||||
</script>
|
||||
</mk-drive-file-viewer>
|
||||
|
|
Loading…
Add table
Reference in a new issue