-
Notifications
You must be signed in to change notification settings - Fork 713
/
Copy pathCommand.js
155 lines (148 loc) · 4.62 KB
/
Command.js
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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
import React from 'react'
import CodeBlock from '@theme/CodeBlock'
import Tabs from '@theme/Tabs'
import TabItem from '@theme/TabItem'
const types = [
{ value: 'npm', content: 'npm run tauri ' },
{ value: 'Yarn', content: 'yarn tauri ' },
{ value: 'pnpm', content: 'pnpm tauri ' },
{ value: 'bun', content: 'bunx tauri ' },
{ value: 'Cargo', content: 'cargo tauri ' },
]
function insertDashDashBeforeOption(value, name) {
let idx = name.indexOf(' --')
if (idx === -1) {
idx = name.indexOf(' -')
}
if (idx === -1) {
return value + name
}
return value + name.slice(0, idx + 1) + '--' + name.slice(idx)
}
export const CreateTauriApp = () => {
return (
<Tabs groupId="package-manager">
<TabItem value="Bash">
<CodeBlock className="language-shell" language="shell">
{`sh <(curl https://create.tauri.app/sh) --tauri-version 1`}
</CodeBlock>
</TabItem>
<TabItem value="PowerShell">
<CodeBlock className="language-shell" language="powershell">
$Env:CTA_ARGS = "--tauri-version 1"; irm https://create.tauri.app/ps | iex
</CodeBlock>
</TabItem>
<TabItem value="Cargo">
<CodeBlock className="language-shell" language="shell">
{`cargo install create-tauri-app --locked
cargo create-tauri-app --tauri-version 1`}
</CodeBlock>
</TabItem>
<TabItem value="npm">
<CodeBlock className="language-shell" language="shell">
npm create tauri-app@latest -- --tauri-version 1
</CodeBlock>
</TabItem>
<TabItem value="Yarn">
<CodeBlock className="language-shell" language="shell">
yarn create tauri-app --tauri-version 1
</CodeBlock>
</TabItem>
<TabItem value="pnpm">
<CodeBlock className="language-shell" language="shell">
pnpm create tauri-app --tauri-version 1
</CodeBlock>
</TabItem>
<TabItem value="Bun">
<CodeBlock className="language-shell" language="shell">
bunx create-tauri-app --tauri-version 1
</CodeBlock>
</TabItem>
</Tabs>
)
}
export const InstallTauriCli = () => {
return (
<Tabs groupId="package-manager">
<TabItem value="npm" default>
<CodeBlock className="language-shell" language="shell">
npm install --save-dev @tauri-apps/cli@">1.0.0"
</CodeBlock>
<div style={{ margin: 8 }}>
For npm to detect Tauri correctly you need to add it to the "scripts"
section in your package.json file:
</div>
<CodeBlock
className="language-json"
language="json"
title="package.json"
>
{`"scripts": {
"tauri": "tauri"
}`}
</CodeBlock>
</TabItem>
<TabItem value="Yarn">
<CodeBlock className="language-shell" language="shell">
yarn add -D @tauri-apps/cli@^1.0.0
</CodeBlock>
</TabItem>
<TabItem value="pnpm">
<CodeBlock className="language-shell" language="shell">
pnpm add -D @tauri-apps/cli@1
</CodeBlock>
</TabItem>
<TabItem value="Bun">
<CodeBlock className="language-shell" language="shell">
bun add -D @tauri-apps/[email protected]
</CodeBlock>
</TabItem>
<TabItem value="Cargo">
<CodeBlock className="language-shell" language="shell">
cargo install tauri-cli --version "^1.0.0"
</CodeBlock>
</TabItem>
</Tabs>
)
}
export const InstallTauriApi = () => {
return (
<Tabs groupId="package-manager">
<TabItem value="npm" default>
<CodeBlock className="language-shell" language="shell">
npm install @tauri-apps/api@1
</CodeBlock>
</TabItem>
<TabItem value="Yarn">
<CodeBlock className="language-shell" language="shell">
yarn add @tauri-apps/api@^1.0.0
</CodeBlock>
</TabItem>
<TabItem value="pnpm">
<CodeBlock className="language-shell" language="shell">
pnpm add @tauri-apps/api@1
</CodeBlock>
</TabItem>
<TabItem value="Bun">
<CodeBlock className="language-shell" language="shell">
bun add @tauri-apps/[email protected]
</CodeBlock>
</TabItem>
</Tabs>
)
}
export default ({ name }) => {
return (
<Tabs groupId="package-manager" values={types}>
{types.map((type) => (
<TabItem value={type.value}>
<CodeBlock className="language-shell" language="shell">
{type.value !== 'npm'
? type.content + name
: insertDashDashBeforeOption(type.content, name)}
</CodeBlock>
</TabItem>
))}
</Tabs>
)
}