1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
| const fs = require('fs')
| const path = require('path')
|
| const {
| removeExt,
| normalizePath,
| getFlexDirection,
| parseManifestJson
| } = require('@dcloudio/uni-cli-shared')
|
| const {
| normalizeNodeModules
| } = require('./shared')
|
| module.exports = function (content, map) {
| this.cacheable && this.cacheable()
|
| if (!process.env.UNI_USING_NVUE_COMPILER) {
| return this.callback(null, content, map)
| }
| if (path.extname(this.resourcePath) !== '.nvue') {
| return this.callback(null, content, map)
| }
| const resourcePath = normalizeNodeModules(
| removeExt(
| normalizePath(path.relative(process.env.UNI_INPUT_DIR, this.resourcePath))
| )
| )
| if (!process.UNI_ENTRY[resourcePath]) {
| return this.callback(null, content, map)
| }
|
| const manifestJsonPath = path.resolve(process.env.UNI_INPUT_DIR, 'manifest.json')
| const manifestJson = parseManifestJson(fs.readFileSync(manifestJsonPath, 'utf8'))
|
| this.callback(null,
| `<style>
| view,
| label,
| swiper-item,
| scroll-view {
| display:flex;
| flex-direction:${getFlexDirection(manifestJson['app-plus'])};
| flex-shrink: 0;
| flex-grow: 0;
| flex-basis: auto;
| align-items: stretch;
| align-content: flex-start;
| }
| view,
| image,
| input,
| scroll-view,
| swiper,
| swiper-item,
| text,
| textarea,
| video {
| position: relative;
| border: 0px solid #000000;
| box-sizing: border-box;
| }
| swiper-item {
| position: absolute;
| }
| button {
| margin: 0;
| }
| </style>
| ${content}`,
| map)
| }
|
|