Toggle navigation
Toggle navigation
This project
Loading...
Sign in
fe
/
yoho-app-web
·
Commits
Go to a project
GitLab
Go to group
Project
Activity
Files
Commits
Pipelines
0
Builds
0
Graphs
Milestones
Issues
0
Merge Requests
1
Members
Labels
Wiki
Forks
Network
Create a new issue
Download as
Email Patches
Plain Diff
Browse Files
Authored by
陈峰
6 years ago
Commit
afe646e3150894d98eb8ee96a0872222f91257e7
1 parent
022ce7e6
commit
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
51 additions
and
17 deletions
apps/components/img-size.vue
apps/entry-client.js
apps/entry-server.js
apps/index.html
apps/pages/single/coupon/index.js
doraemon/middleware/ssr.js
apps/components/img-size.vue
View file @
afe646e
<template>
<img v-lazy="currentSrc" :alt="alt">
<img v-lazy="currentSrc" :alt="alt"
v-if="!refresh"
>
</template>
<script>
...
...
@@ -9,7 +9,20 @@ export default {
src: String,
width: Number,
height: Number,
alt: String
alt: String,
},
data() {
return {
refresh: false
};
},
watch: {
src() {
this.refresh = true;
this.$nextTick(() => {
this.refresh = false;
});
}
},
computed: {
currentSrc() {
...
...
apps/entry-client.js
View file @
afe646e
...
...
@@ -11,8 +11,9 @@ import 'statics/scss/common.scss';
import
'statics/font/iconfont.css'
;
import
'statics/font/ufofont.css'
;
const
{
app
,
router
,
store
}
=
createApp
(
window
.
__INITIAL_STATE__
&&
window
.
__INITIAL_STATE__
.
yoho
.
context
);
const
isDegrade
=
Boolean
(
!
window
.
__INITIAL_STATE__
);
const
context
=
window
.
__INITIAL_STATE__
&&
window
.
__INITIAL_STATE__
.
yoho
.
context
;
const
{
app
,
router
,
store
}
=
createApp
(
context
);
if
(
window
.
__INITIAL_STATE__
)
{
store
.
replaceState
(
window
.
__INITIAL_STATE__
);
...
...
@@ -26,6 +27,28 @@ Vue.use(Dialog);
Vue
.
prop
(
'api'
,
createApi
());
Vue
.
use
(
Lazy
,
{
error
:
''
});
const
fetchAsycData
=
(
matched
,
r
)
=>
{
const
asyncDataPromises
=
matched
.
map
(({
asyncData
})
=>
{
try
{
return
asyncData
&&
asyncData
({
store
,
router
:
r
});
}
catch
(
error
)
{
return
Promise
.
reject
(
error
);
}
}).
filter
(
p
=>
p
);
return
Promise
.
all
(
asyncDataPromises
);
};
const
trackPage
=
(
path
)
=>
{
if
(
window
.
_hmt
)
{
try
{
window
.
_hmt
.
push
([
'_trackPageview'
,
path
]);
}
catch
(
error
)
{
console
.
error
(
error
);
}
}
};
router
.
onReady
(()
=>
{
store
.
dispatch
(
'reportYas'
,
{
params
:
{
...
...
@@ -38,15 +61,17 @@ router.onReady(() => {
}
});
if
(
isDegrade
)
{
fetchAsycData
(
router
.
getMatchedComponents
(),
router
.
currentRoute
);
}
router
.
beforeResolve
((
to
,
from
,
next
)
=>
{
try
{
trackPage
(
to
.
fullPath
);
const
matched
=
router
.
getMatchedComponents
(
to
);
store
.
commit
(
ROUTE_CHANGE
,
{
to
,
from
});
if
(
window
.
_hmt
)
{
window
.
_hmt
.
push
([
'_trackPageview'
,
to
.
fullPath
]);
}
store
.
dispatch
(
'reportYas'
,
{
params
:
{
appop
:
'YB_H5_PAGE_OPEN_L'
,
...
...
@@ -58,15 +83,8 @@ router.onReady(() => {
}
});
Promise
.
all
(
matched
.
map
(({
asyncData
})
=>
asyncData
&&
asyncData
({
store
,
router
:
to
})))
.
then
(()
=>
{
if
(
!
false
||
store
.
state
.
yoho
.
visible
)
{
return
next
();
}
else
{
history
.
pushState
({},
''
,
from
.
fullPath
);
}
})
fetchAsycData
(
matched
,
to
)
.
then
(
next
)
.
catch
(
e
=>
{
store
.
dispatch
(
'reportError'
,
{
error
:
e
});
console
.
error
(
e
);
...
...
apps/entry-server.js
View file @
afe646e
...
...
@@ -32,7 +32,7 @@ export default context => {
}
catch
(
error
)
{
return
Promise
.
reject
(
error
);
}
});
})
.
filter
(
p
=>
p
)
;
Promise
.
all
(
asyncDataPromises
)
.
then
(()
=>
{
...
...
apps/index.html
View file @
afe646e
...
...
@@ -17,7 +17,6 @@
<body>
<!--vue-ssr-outlet-->
<div
id=
"degrade-app"
></div>
div
<div
id=
"main-wrap"
>
<div
id=
"no-download"
></div>
</div>
...
...
apps/pages/single/coupon/index.js
View file @
afe646e
import
YohoPage
from
'./list'
;
export
default
[{
name
:
'coupon'
,
path
:
'/mapp/coupon/yoho.html'
,
component
:
YohoPage
,
}];
...
...
doraemon/middleware/ssr.js
View file @
afe646e
...
...
@@ -114,6 +114,9 @@ const devRender = (route) => {
res
.
setHeader
(
'X-YOHO-Version'
,
pkg
.
version
);
const
ck
=
route
.
cackeKey
?
getCacheKey
(
req
.
url
,
route
.
cackeKey
)
:
void
0
;
// return require('request-promise')({
// url: 'http://m.yohobuy.com:6005/degrade.html'
// }).pipe(res);
if
(
config
.
useCache
&&
route
.
cache
&&
ck
)
{
const
html
=
await
redis
.
getAsync
(
ck
);
...
...
Please
register
or
login
to post a comment