diff --git a/.DS_Store b/.DS_Store
new file mode 100644
index 0000000..682ab74
Binary files /dev/null and b/.DS_Store differ
diff --git a/.idea/.gitignore b/.idea/.gitignore
new file mode 100644
index 0000000..35410ca
--- /dev/null
+++ b/.idea/.gitignore
@@ -0,0 +1,8 @@
+# 默认忽略的文件
+/shelf/
+/workspace.xml
+# 基于编辑器的 HTTP 客户端请求
+/httpRequests/
+# Datasource local storage ignored files
+/dataSources/
+/dataSources.local.xml
diff --git a/.idea/CoverCrawler.iml b/.idea/CoverCrawler.iml
new file mode 100644
index 0000000..5e764c4
--- /dev/null
+++ b/.idea/CoverCrawler.iml
@@ -0,0 +1,9 @@
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/.idea/MarsCodeWorkspaceAppSettings.xml b/.idea/MarsCodeWorkspaceAppSettings.xml
new file mode 100644
index 0000000..05ed8ba
--- /dev/null
+++ b/.idea/MarsCodeWorkspaceAppSettings.xml
@@ -0,0 +1,6 @@
+
+
+
+
+
+
\ No newline at end of file
diff --git a/.idea/elasticsearchSettings.xml b/.idea/elasticsearchSettings.xml
new file mode 100644
index 0000000..b796368
--- /dev/null
+++ b/.idea/elasticsearchSettings.xml
@@ -0,0 +1,6 @@
+
+
+
+
+
+
\ No newline at end of file
diff --git a/.idea/modules.xml b/.idea/modules.xml
new file mode 100644
index 0000000..24486a4
--- /dev/null
+++ b/.idea/modules.xml
@@ -0,0 +1,8 @@
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/.idea/vcs.xml b/.idea/vcs.xml
new file mode 100644
index 0000000..94a25f7
--- /dev/null
+++ b/.idea/vcs.xml
@@ -0,0 +1,6 @@
+
+
+
+
+
+
\ No newline at end of file
diff --git a/__debug_bin3905452747 b/__debug_bin3905452747
new file mode 100755
index 0000000..61daee3
Binary files /dev/null and b/__debug_bin3905452747 differ
diff --git a/fyne-cross/.DS_Store b/fyne-cross/.DS_Store
new file mode 100644
index 0000000..c20349c
Binary files /dev/null and b/fyne-cross/.DS_Store differ
diff --git a/fyne-cross/bin/.DS_Store b/fyne-cross/bin/.DS_Store
new file mode 100644
index 0000000..7141c2c
Binary files /dev/null and b/fyne-cross/bin/.DS_Store differ
diff --git a/fyne-cross/bin/windows-amd64/CoverCrawler.exe b/fyne-cross/bin/windows-amd64/CoverCrawler.exe
new file mode 100755
index 0000000..bb9c468
Binary files /dev/null and b/fyne-cross/bin/windows-amd64/CoverCrawler.exe differ
diff --git a/fyne-cross/dist/windows-amd64/CoverCrawler.exe.zip b/fyne-cross/dist/windows-amd64/CoverCrawler.exe.zip
new file mode 100644
index 0000000..18fa433
Binary files /dev/null and b/fyne-cross/dist/windows-amd64/CoverCrawler.exe.zip differ
diff --git a/fyne-cross/tmp/windows-amd64/Icon.png b/fyne-cross/tmp/windows-amd64/Icon.png
new file mode 100644
index 0000000..2365791
Binary files /dev/null and b/fyne-cross/tmp/windows-amd64/Icon.png differ
diff --git a/main.go b/main.go
index ad12af7..c63f57e 100644
--- a/main.go
+++ b/main.go
@@ -17,78 +17,58 @@ func main() {
myWindow.Resize(fyne.NewSize(640, 480))
// 创建显示框
- displayBox1 := widget.NewLabel("未选择")
- displayBox2 := widget.NewLabel("未选择")
+ sourceDirLabel := widget.NewLabel("未选择")
+ targetDirLabel := widget.NewLabel("未选择")
displayBoxInfo := canvas.NewText("", colornames.Blue)
// 创建目录选择框
- dirSelect1 := widget.NewButton("选择作品存放目录", func() {
- dirDialog := dialog.NewFolderOpen(func(d fyne.ListableURI, err error) {
- if err == nil && d != nil {
- displayBox1.SetText(d.Path())
+ selectSourceDir := widget.NewButton("选择作品存放目录", func() {
+ dialog.ShowFolderOpen(func(uri fyne.ListableURI, err error) {
+ if err != nil {
+ sourceDirLabel.SetText("选择目录失败: " + err.Error())
+ return
+ }
+ if uri != nil {
+ sourceDirLabel.SetText(uri.Path())
}
}, myWindow)
- dirDialog.Show()
})
- dirSelect2 := widget.NewButton("选择输出目录", func() {
- dirDialog := dialog.NewFolderOpen(func(d fyne.ListableURI, err error) {
- if err == nil && d != nil {
- displayBox2.SetText(d.Path())
+ selectTargetDir := widget.NewButton("选择输出目录", func() {
+ dialog.ShowFolderOpen(func(uri fyne.ListableURI, err error) {
+ if err != nil {
+ targetDirLabel.SetText("选择目录失败: " + err.Error())
+ return
+ }
+ if uri != nil {
+ targetDirLabel.SetText(uri.Path())
}
}, myWindow)
- dirDialog.Show()
})
- // 创建确定按钮
- okButton := widget.NewButton("确 定", func() {
- dir1 := displayBox1.Text
- dir2 := displayBox2.Text
-
- displayBoxInfo.Color = colornames.Blue
- displayBoxInfo.Text = "处理中ing..."
-
- crawler := NewCrawler(dir1, dir2)
- if err := crawler.Handle(); err != nil {
- displayBoxInfo.Color = colornames.Red
- displayBoxInfo.Text = err.Error()
- } else {
- displayBoxInfo.Color = colornames.Green
- displayBoxInfo.Text = "处理完成"
- }
- })
-
- // 创建水平布局,将目录选择框和显示框并排排列
- dirSelect1WithDisplay := container.NewHBox(
- dirSelect1,
- displayBox1,
- )
-
- dirSelect2WithDisplay := container.NewHBox(
- dirSelect2,
- displayBox2,
- )
-
- dirSelect3WithDisplay := container.NewHBox(
- layout.NewSpacer(),
- displayBoxInfo,
- layout.NewSpacer(),
- )
-
- // 创建水平布局,将确定按钮居中
- okButtonContainer := container.NewHBox(
- layout.NewSpacer(),
- okButton,
- layout.NewSpacer(),
- )
-
- // 创建垂直布局,将上述水平布局和确定按钮垂直排列
+ // 创建主布局
content := container.NewVBox(
- dirSelect1WithDisplay,
- dirSelect2WithDisplay,
- dirSelect3WithDisplay,
+ container.NewHBox(selectSourceDir, sourceDirLabel),
+ container.NewHBox(selectTargetDir, targetDirLabel),
+ container.NewCenter(displayBoxInfo),
layout.NewSpacer(),
- okButtonContainer,
+ container.NewCenter(
+ widget.NewButton("开始处理", func() {
+ displayBoxInfo.Text = "处理中..."
+ displayBoxInfo.Color = colornames.Blue
+ displayBoxInfo.Refresh()
+
+ crawler := NewCrawler(sourceDirLabel.Text, targetDirLabel.Text)
+ if err := crawler.Handle(); err != nil {
+ displayBoxInfo.Text = "处理失败: " + err.Error()
+ displayBoxInfo.Color = colornames.Red
+ } else {
+ displayBoxInfo.Text = "处理完成"
+ displayBoxInfo.Color = colornames.Green
+ }
+ displayBoxInfo.Refresh()
+ }),
+ ),
)
myWindow.SetContent(content)