mirror of
https://github.com/kuaifan/dootask.git
synced 2026-09-21 11:26:35 +00:00
新移动端从 EEUI(weex) 切到 Expo(react-native),UA 标识从 'eeui' 改为 'DooTaskApp', 桥接底层从全局 requireModuleJs 切到 window.__nativeBridge.call(method,args) Promise RPC。 约 52 个文件批量改名(256 处引用): - 平台识别:$A.isEEUIApp/Vue.prototype.$isEEUIApp → isMobileApp / $isMobileApp app.js 顶部 UA 正则 /eeui/i → /DooTaskApp/i app.js requireModuleJs 等待逻辑替换为 window.__nativeBridge 就绪判定 - 桥接 API:$A.eeuiAppXXX → $A.nativeAppXXX - functions/eeui.js 删除,重写为 functions/native-app.js 底层走 window.__nativeBridge.call;nativeAppSendMessage 把旧 sendMessage 的 各 action 拆解为独立 method 调用(updateTheme/windowSize/setBadge/vibrate/ callTel/picturePreview/videoPreview/startMeeting/updateMeetingInfo 等) - types/dootask-globals.d.ts:方法签名同步改名 - store/actions.js:清理 saveUserInfoBase 内旧的 userChatList/userUploadUrl sendMessage(二期由 /share 接收页直接调接口替代) 二期 /share 接收页(跨 App 分享): - pages/share.vue(新增):原生 Share Extension / Android Intent 通过 dootask://share?token=... 拉起 App 后跳本页; 调 nativeAppGetSharedPayload 取分享元数据; 复用 api/users/share/list 渲染会话列表; 用户选会话 → POST api/dialog/msg/sendfiles 上传 + sendtext 发文本/URL; 完成后 nativeAppClearSharedPayload 清理 + 跳目标会话 - routes.js 注册 /share 路由 - language/original-web.txt 加 share.vue 用到的文案 构建链路(electron/build.js): - appbuild app 子命令:前端产物从复制到 resources/mobile/src/public + EEUI docker 构建 改为同步到 resources/mobile/assets/web(由 plugins/withWebAssets 注入原生 bundle) - android-upload apk 路径:从 platforms/android/eeuiApp/... 改为 android/app/build/outputs/apk/release(Expo prebuild 标准布局) 子模块 resources/mobile 指针更新到新 Expo 工程提交(feat/mobile-expo-rewrite 分支)。 Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
209 lines
6.0 KiB
Vue
209 lines
6.0 KiB
Vue
<template>
|
|
<div class="file-history">
|
|
<Table
|
|
:width="(windowWidth - 40) > 480 ? 480 : (windowWidth - 40)"
|
|
:max-height="windowHeight - 180"
|
|
:columns="columns"
|
|
:data="list"
|
|
:loading="loadIng > 0"
|
|
:no-data-text="$L(noText)"
|
|
highlight-row
|
|
stripe/>
|
|
<Page
|
|
v-if="total > pageSize"
|
|
:total="total"
|
|
:current="page"
|
|
:page-size="pageSize"
|
|
:disabled="loadIng > 0"
|
|
:simple="true"
|
|
@on-change="setPage"
|
|
@on-page-size-change="setPageSize"/>
|
|
</div>
|
|
</template>
|
|
|
|
<style lang="scss" scoped>
|
|
.file-history {
|
|
.ivu-page {
|
|
margin-top: 12px;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
}
|
|
}
|
|
</style>
|
|
<script>
|
|
export default {
|
|
name: "FileHistory",
|
|
props: {
|
|
value: {
|
|
type: Boolean,
|
|
default: false
|
|
},
|
|
file: {
|
|
type: Object,
|
|
default: () => {
|
|
return {};
|
|
}
|
|
},
|
|
},
|
|
|
|
data() {
|
|
return {
|
|
loadIng: 0,
|
|
|
|
columns: [
|
|
{
|
|
title: this.$L('日期'),
|
|
key: 'created_at',
|
|
width: 168,
|
|
}, {
|
|
title: this.$L('创建人'),
|
|
width: 120,
|
|
render: (h, {row}) => {
|
|
return h('UserAvatar', {
|
|
props: {
|
|
showName: true,
|
|
size: 22,
|
|
userid: row.userid,
|
|
}
|
|
})
|
|
}
|
|
}, {
|
|
title: this.$L('大小'),
|
|
key: 'size',
|
|
width: 90,
|
|
render: (h, {row}) => {
|
|
return h('AutoTip', $A.bytesToSize(row.size));
|
|
}
|
|
}, {
|
|
title: this.$L('操作'),
|
|
align: 'center',
|
|
width: 100,
|
|
render: (h, {index, row, column}) => {
|
|
if (index === 0 && this.page === 1) {
|
|
return h('div', '-');
|
|
}
|
|
return h('TableAction', {
|
|
props: {
|
|
column: column,
|
|
menu: [
|
|
{
|
|
label: this.$L('查看'),
|
|
action: "preview",
|
|
}, {
|
|
label: this.$L('还原'),
|
|
action: "restore",
|
|
}
|
|
]
|
|
},
|
|
on: {
|
|
action: (name) => {
|
|
this.onAction(name, row)
|
|
}
|
|
}
|
|
});
|
|
}
|
|
}
|
|
],
|
|
list: [],
|
|
|
|
page: 1,
|
|
pageSize: 10,
|
|
total: 0,
|
|
noText: ''
|
|
}
|
|
},
|
|
|
|
mounted() {
|
|
|
|
},
|
|
|
|
watch: {
|
|
value: {
|
|
handler(val) {
|
|
if (val) {
|
|
this.setPage(1);
|
|
}
|
|
},
|
|
immediate: true,
|
|
},
|
|
},
|
|
|
|
computed: {
|
|
fileId() {
|
|
return this.file.id || 0
|
|
},
|
|
},
|
|
|
|
methods: {
|
|
getLists() {
|
|
if (this.fileId === 0) {
|
|
return;
|
|
}
|
|
this.loadIng++;
|
|
this.$store.dispatch("call", {
|
|
url: 'file/content/history',
|
|
data: {
|
|
id: this.fileId,
|
|
page: Math.max(this.page, 1),
|
|
pagesize: Math.max($A.runNum(this.pageSize), 10),
|
|
},
|
|
}).then(({data}) => {
|
|
this.page = data.current_page;
|
|
this.total = data.total;
|
|
this.list = data.data;
|
|
this.noText = '没有相关的数据';
|
|
}).catch(() => {
|
|
this.noText = '数据加载失败';
|
|
}).finally(_ => {
|
|
this.loadIng--;
|
|
})
|
|
},
|
|
|
|
setPage(page) {
|
|
this.page = page;
|
|
this.getLists();
|
|
},
|
|
|
|
setPageSize(pageSize) {
|
|
this.page = 1;
|
|
this.pageSize = pageSize;
|
|
this.getLists();
|
|
},
|
|
|
|
onAction(name, row) {
|
|
switch (name) {
|
|
case 'restore':
|
|
this.$emit('on-restore', row)
|
|
break;
|
|
|
|
case 'preview':
|
|
const title = $A.getFileName(this.file) + ` [${row.created_at}]`;
|
|
const path = `/single/file/${this.fileId}?history_id=${row.id}&history_title=${title}`;
|
|
if (this.$Electron) {
|
|
this.$store.dispatch('openWindow', {
|
|
name: `file-${this.fileId}-${row.id}`,
|
|
path: path,
|
|
title,
|
|
titleFixed: true,
|
|
});
|
|
} else if (this.$isMobileApp) {
|
|
this.$store.dispatch('openAppChildPage', {
|
|
pageType: 'app',
|
|
pageTitle: title,
|
|
url: 'web.js',
|
|
params: {
|
|
titleFixed: true,
|
|
url: $A.urlReplaceHash(path)
|
|
},
|
|
})
|
|
} else {
|
|
window.open($A.mainUrl(path.substring(1)))
|
|
}
|
|
break;
|
|
}
|
|
},
|
|
}
|
|
}
|
|
</script>
|