[Client:Mobile] 🍮

This commit is contained in:
syuilo⭐️ 2017-02-17 18:00:13 +09:00
parent 2943cf4899
commit 3e00b13039

View file

@ -25,27 +25,33 @@
@Progress.done!
@refs.ui.refs.browser.on \move-root ~>
# Rewrite URL
history.push-state null null '/i/drive'
title = 'Misskey Drive'
document.title = 'Misskey Drive'
# Rewrite URL
history.push-state null, title, '/i/drive'
document.title = title
@ui.trigger \title '<i class="fa fa-cloud"></i>ドライブ'
@refs.ui.refs.browser.on \open-folder (folder, silent) ~>
title = folder.name + ' | Misskey Drive'
if !silent
# Rewrite URL
history.push-state null null '/i/drive/folder/' + folder.id
history.push-state null, title, '/i/drive/folder/' + folder.id
document.title = folder.name + ' | Misskey Drive'
document.title = title
# TODO: escape html characters in folder.name
@ui.trigger \title '<i class="fa fa-folder-open"></i>' + folder.name
@refs.ui.refs.browser.on \open-file (file, silent) ~>
title = file.name + ' | Misskey Drive'
if !silent
# Rewrite URL
history.push-state null null '/i/drive/file/' + file.id
history.push-state null, title, '/i/drive/file/' + file.id
document.title = file.name + ' | Misskey Drive'
document.title = title
# TODO: escape html characters in file.name
@ui.trigger \title '<mk-file-type-icon class="icon"></mk-file-type-icon>' + file.name
riot.mount \mk-file-type-icon do