lucky_sheet.go 18 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342
  1. package excel
  2. import (
  3. "encoding/json"
  4. "fmt"
  5. "reflect"
  6. "strconv"
  7. )
  8. type LuckySheetDataBak struct {
  9. CalcChain []interface{} `json:"calcChain" description:"公式链"`
  10. CellData []LuckySheetCellData `json:"celldata" description:"单元格数据"`
  11. ChWidth int64 `json:"ch_width" description:"工作表区域的宽度"`
  12. Config struct {
  13. BorderInfo []struct {
  14. BorderType string `json:"borderType" description:""`
  15. Color string `json:"color" description:""`
  16. Range []struct {
  17. Column []int64 `json:"column" description:""`
  18. Row []int64 `json:"row" description:""`
  19. } `json:"range" description:""`
  20. RangeType string `json:"rangeType" description:""`
  21. Style string `json:"style" description:""`
  22. Value struct {
  23. B struct {
  24. Color string `json:"color" description:""`
  25. Style string `json:"style" description:""`
  26. } `json:"b" description:""`
  27. ColIndex int64 `json:"col_index" description:""`
  28. L struct {
  29. Color string `json:"color" description:""`
  30. Style string `json:"style" description:""`
  31. } `json:"l" description:""`
  32. R struct {
  33. Color string `json:"color" description:""`
  34. Style string `json:"style" description:""`
  35. } `json:"r" description:""`
  36. RowIndex int64 `json:"row_index" description:""`
  37. T struct {
  38. Color string `json:"color" description:""`
  39. Style string `json:"style" description:""`
  40. } `json:"t" description:""`
  41. } `json:"value" description:"" description:""`
  42. } `json:"borderInfo" description:""`
  43. Colhidden struct{} `json:"colhidden" description:""`
  44. Columnlen map[string]float64 `json:"columnlen" description:""`
  45. CustomHeight struct {
  46. Zero int64 `json:"0"`
  47. } `json:"customHeight" description:""`
  48. CustomWidth struct {
  49. Two int64 `json:"2" description:""`
  50. } `json:"customWidth" description:""`
  51. Merge struct{} `json:"merge" description:""`
  52. Rowlen map[string]float64 `json:"rowlen" description:""`
  53. } `json:"config" description:""`
  54. Data [][]struct {
  55. Ct struct {
  56. Fa string `json:"fa"`
  57. T string `json:"t"`
  58. } `json:"ct"`
  59. M string `json:"m"`
  60. V interface{} `json:"v"`
  61. } `json:"data" description:""`
  62. DataVerification struct{} `json:"dataVerification" description:""`
  63. Filter interface{} `json:"filter" description:""`
  64. FilterSelect interface{} `json:"filter_select" description:""`
  65. Hyperlink struct{} `json:"hyperlink" description:""`
  66. Images struct{} `json:"images" description:""`
  67. Index string `json:"index" description:""`
  68. JfgirdSelectSave []interface{} `json:"jfgird_select_save" description:""`
  69. LuckysheetAlternateformatSave []interface{} `json:"luckysheet_alternateformat_save" description:""`
  70. LuckysheetConditionformatSave []interface{} `json:"luckysheet_conditionformat_save" description:""`
  71. LuckysheetSelectSave []struct {
  72. Column []int64 `json:"column" description:""`
  73. ColumnFocus int64 `json:"column_focus" description:""`
  74. Height int64 `json:"height" description:""`
  75. HeightMove int64 `json:"height_move" description:""`
  76. Left int64 `json:"left" description:""`
  77. LeftMove int64 `json:"left_move" description:""`
  78. Row []int64 `json:"row" description:""`
  79. RowFocus int64 `json:"row_focus" description:""`
  80. Top int64 `json:"top" description:""`
  81. TopMove int64 `json:"top_move" description:""`
  82. Width int64 `json:"width" description:""`
  83. WidthMove int64 `json:"width_move" description:""`
  84. } `json:"luckysheet_select_save" description:"" description:""`
  85. LuckysheetSelectionRange []struct {
  86. Column []int64 `json:"column" description:""`
  87. Row []int64 `json:"row" description:""`
  88. } `json:"luckysheet_selection_range" description:""`
  89. RhHeight float64 `json:"rh_height" description:""`
  90. ScrollLeft float64 `json:"scrollLeft" description:""`
  91. ScrollTop float64 `json:"scrollTop" description:""`
  92. Status int64 `json:"status" description:""`
  93. Visibledatacolumn []int64 `json:"visibledatacolumn" description:""`
  94. Visibledatarow []int64 `json:"visibledatarow" description:""`
  95. ZoomRatio float64 `json:"zoomRatio" description:"sheet缩放比例"`
  96. }
  97. // LuckySheetData sheet表格数据
  98. type LuckySheetData struct {
  99. CellData []LuckySheetCellData `json:"celldata" description:"单元格数据"`
  100. ChWidth int64 `json:"ch_width" description:"工作表区域的宽度"`
  101. Config LuckySheetDataConfig `json:"config" description:""`
  102. //Index int `json:"index" description:"工作表索引"`
  103. RhHeight float64 `json:"rh_height" description:"工作表区域的高度"`
  104. ScrollLeft float64 `json:"scrollLeft" description:"左右滚动条位置"`
  105. ScrollTop float64 `json:"scrollTop" description:"上下滚动条位置"`
  106. Status interface{} `json:"status" description:"激活状态"`
  107. VisibleDataColumn []int64 `json:"visibledatacolumn" description:"所有列的位置信息,递增的列位置数据,初始化无需设置"`
  108. VisibleDataRow []int64 `json:"visibledatarow" description:"所有行的位置信息,递增的行位置数据,初始化无需设置"`
  109. ZoomRatio float64 `json:"zoomRatio" description:"sheet缩放比例"`
  110. }
  111. // LuckySheetDataConfig sheet表单的配置
  112. type LuckySheetDataConfig struct {
  113. BorderInfo []LuckySheetDataConfigBorderInfo `json:"borderInfo" description:"边框"`
  114. Colhidden map[string]int64 `json:"colhidden" description:"隐藏列,示例值:\"colhidden\":{\"30\":0,\"31\":0}"`
  115. Columnlen map[string]float64 `json:"columnlen" description:"每个单元格的列宽"`
  116. //CustomHeight struct {
  117. // Zero int64 `json:"0"`
  118. //} `json:"customHeight" description:""`
  119. //CustomWidth struct {
  120. // Two int64 `json:"2" description:""`
  121. //} `json:"customWidth" description:""`
  122. Merge map[string]LuckySheetDataConfigMerge `json:"merge" description:"合并单元格"`
  123. Rowlen map[string]float64 `json:"rowlen" description:"每个单元格的行高"`
  124. }
  125. // LuckySheetDataConfigMerge 合并单元格设置
  126. type LuckySheetDataConfigMerge struct {
  127. Row int `json:"r" description:"行数"`
  128. Column int `json:"c" description:"列数"`
  129. Rs int `json:"rs" description:"合并的行数"`
  130. Cs int `json:"cs" description:"合并的列数"`
  131. }
  132. // LuckySheetDataConfigBorderInfo 单元格边框信息
  133. type LuckySheetDataConfigBorderInfo struct {
  134. BorderType string `json:"borderType" description:"边框类型 border-left | border-right | border-top | border-bottom | border-all | border-outside | border-inside | border-horizontal | border-vertical | border-none"`
  135. Color string `json:"color" description:"边框颜色 color: 16进制颜色值"`
  136. Range []struct {
  137. Column []int64 `json:"column" description:"行"`
  138. Row []int64 `json:"row" description:"列"`
  139. } `json:"range" description:"选区范围 range: 行列信息数组"`
  140. RangeType string `json:"rangeType" description:"选区 rangeType: range | cell "`
  141. Style string `json:"style" description:"边框粗细 style: 1 Thin | 2 Hair | 3 Dotted | 4 Dashed | 5 DashDot | 6 DashDotDot | 7 Double | 8 Medium | 9 MediumDashed | 10 MediumDashDot | 11 MediumDashDotDot | 12 SlantedDashDot | 13 Thick ,和aspose.cells的getLineStyle()的值对应的话,需要自己做个转换,参考 aspose.cells"`
  142. Value LuckySheetDataConfigBorderInfoCellValue `json:"value" description:"" description:"范围类型分单个单元格的数据"`
  143. }
  144. // LuckySheetDataConfigBorderInfoCellValue 单元格边框信息(范围类型为:单个单元格)
  145. type LuckySheetDataConfigBorderInfoCellValue struct {
  146. B LuckySheetDataConfigBorderInfoCell `json:"b" description:"下边框"`
  147. L LuckySheetDataConfigBorderInfoCell `json:"l" description:"左边框"`
  148. R LuckySheetDataConfigBorderInfoCell `json:"r" description:"右边框"`
  149. T LuckySheetDataConfigBorderInfoCell `json:"t" description:"上边框"`
  150. ColIndex int64 `json:"col_index" description:"第几行"`
  151. RowIndex int64 `json:"row_index" description:"第几列"`
  152. }
  153. // LuckySheetDataConfigBorderInfoCell 单元格边框信息(cell类型)
  154. type LuckySheetDataConfigBorderInfoCell struct {
  155. Color string `json:"color" description:"边框颜色 color: 16进制颜色值"`
  156. Style int `description:"边框粗细 style: 1 Thin | 2 Hair | 3 Dotted | 4 Dashed | 5 DashDot | 6 DashDotDot | 7 Double | 8 Medium | 9 MediumDashed | 10 MediumDashDot | 11 MediumDashDotDot | 12 SlantedDashDot | 13 Thick ,和aspose.cells的getLineStyle()的值对应的话,需要自己做个转换,参考 aspose.cells"`
  157. Sl interface{} `json:"style" description:"边框粗细 style: 1 Thin | 2 Hair | 3 Dotted | 4 Dashed | 5 DashDot | 6 DashDotDot | 7 Double | 8 Medium | 9 MediumDashed | 10 MediumDashDot | 11 MediumDashDotDot | 12 SlantedDashDot | 13 Thick ,和aspose.cells的getLineStyle()的值对应的话,需要自己做个转换,参考 aspose.cells"`
  158. }
  159. // LuckySheetCellData 单个单元格数据
  160. type LuckySheetCellData struct {
  161. Col int64 `json:"c" description:"列"`
  162. Row int64 `json:"r" description:"行"`
  163. Value LuckySheetDataValue `json:"v" description:"单元格内值的数据"`
  164. }
  165. // LuckySheetDataValue 单元格内值的数据
  166. type LuckySheetDataValue struct {
  167. CellType LuckySheetDataCellType `json:"ct" description:"单元格值格式:文本、时间等 "`
  168. Value interface{} `json:"v" description:"原始值"`
  169. Monitor string `json:"m" description:"显示值"`
  170. Background string `json:"bg" description:"背景色,实例值:#fff000"`
  171. FontFamily int `description:"字体,0 Times New Roman、 1 Arial、2 Tahoma 、3 Verdana、4 微软雅黑、5 宋体(Song)、6 黑体(ST Heiti)、7 楷体(ST Kaiti)、 8 仿宋(ST FangSong)、9 新宋体(ST Song)、10 华文新魏、11 华文行楷、12 华文隶书 "`
  172. FF interface{} `json:"ff" description:"字体,0 Times New Roman、 1 Arial、2 Tahoma 、3 Verdana、4 微软雅黑、5 宋体(Song)、6 黑体(ST Heiti)、7 楷体(ST Kaiti)、 8 仿宋(ST FangSong)、9 新宋体(ST Song)、10 华文新魏、11 华文行楷、12 华文隶书 "`
  173. FontColor string `json:"fc" description:"字体颜色,示例值:#fff000" `
  174. Bold int `json:"bl" description:"粗体,0 常规 、 1加粗 "`
  175. Italic int `json:"it" description:"斜体,0 常规 、 1 斜体"`
  176. Fontsize int `description:"字体大小,14"`
  177. CancelLine int ` description:"删除线, 0 常规 、 1 删除线"`
  178. HorizontalType int `description:"水平对齐, 0 居中、1 左、2右"`
  179. VerticalType int ` description:"垂直对齐, 0 中间、1 上、2下"`
  180. Fs interface{} `json:"fs" description:"字体大小,14"`
  181. Cl interface{} `json:"cl" description:"删除线, 0 常规 、 1 删除线"`
  182. Ht interface{} `json:"ht" description:"水平对齐, 0 居中、1 左、2右"`
  183. Vt interface{} `json:"vt" description:"垂直对齐, 0 中间、1 上、2下"`
  184. //TextRotate string `json:"tr" description:"竖排文字, 3"`
  185. //RotateText string `json:"rt" description:"文字旋转角度, 介于0~180之间的整数,包含0和180"`
  186. TextBeak int `description:"文本换行, 0 截断、1溢出、2 自动换行"`
  187. Tb interface{} `json:"tb" description:"文本换行, 0 截断、1溢出、2 自动换行"`
  188. Ps LuckySheetDataCellComment `json:"ps" description:"批注"`
  189. Function string `json:"f" description:"公式"`
  190. MergeCell LuckySheetDataConfigMerge `json:"mc" description:"合并单元格信息"`
  191. }
  192. // LuckySheetDataCellType 单元格值格式:文本、时间等
  193. type LuckySheetDataCellType struct {
  194. Fa string `json:"fa" description:"格式名称,例如:“General”为自动格式"`
  195. T string `json:"t" description:"格式类型,例如:“n”为数字类型"`
  196. S []struct {
  197. FontFamily int `description:"字体,0 Times New Roman、 1 Arial、2 Tahoma 、3 Verdana、4 微软雅黑、5 宋体(Song)、6 黑体(ST Heiti)、7 楷体(ST Kaiti)、 8 仿宋(ST FangSong)、9 新宋体(ST Song)、10 华文新魏、11 华文行楷、12 华文隶书 "`
  198. FF interface{} `json:"ff" description:"字体,0 Times New Roman、 1 Arial、2 Tahoma 、3 Verdana、4 微软雅黑、5 宋体(Song)、6 黑体(ST Heiti)、7 楷体(ST Kaiti)、 8 仿宋(ST FangSong)、9 新宋体(ST Song)、10 华文新魏、11 华文行楷、12 华文隶书 "`
  199. FontColor string `json:"fc" description:"字体颜色,示例值:#fff000" `
  200. Fontsize int `description:"字体大小,14"`
  201. CancelLine int ` description:"删除线, 0 常规 、 1 删除线"`
  202. HorizontalType int `description:"水平对齐, 0 居中、1 左、2右"`
  203. VerticalType int `description:"垂直对齐, 0 中间、1 上、2下"`
  204. Fs interface{} `json:"fs" description:"字体大小,14"`
  205. Cl interface{} `json:"cl" description:"删除线, 0 常规 、 1 删除线"`
  206. Ht interface{} `json:"ht" description:"水平对齐, 0 居中、1 左、2右"`
  207. Vt interface{} `json:"vt" description:"垂直对齐, 0 中间、1 上、2下"`
  208. Un interface{} `json:"un" description:""`
  209. Bold interface{} `json:"bl" description:"粗体,0 常规 、 1加粗 "`
  210. Italic interface{} `json:"it" description:"斜体,0 常规 、 1 斜体"`
  211. Value interface{} `json:"v" description:"原始值"`
  212. } `json:"s"`
  213. }
  214. // LuckySheetDataCellComment 批注
  215. type LuckySheetDataCellComment struct {
  216. Left int `json:"left" description:"批注框距离左边工作表边缘位置"`
  217. Top int `json:"top" description:"批注框距离上边工作表边缘位置"`
  218. Width int `json:"width" description:"批注框宽度"`
  219. Height int `json:"height" description:"批注框高度"`
  220. Value string `json:"value" description:"批注内容"`
  221. IsShow bool `json:"isshow" description:"是否显示批注"`
  222. }
  223. // GetLuckySheetData 获取LuckySheetData的结构体
  224. func GetLuckySheetData(jsonStr string) (item *LuckySheetData, err error) {
  225. err = json.Unmarshal([]byte(jsonStr), &item)
  226. for k, v := range item.CellData {
  227. value := v.Value
  228. value.Fontsize = getIntValueByInterface(value.Fs)
  229. value.CancelLine = getIntValueByInterface(value.Cl)
  230. value.HorizontalType = getIntValueByInterface(value.Ht)
  231. value.VerticalType = getIntValueByInterface(value.Vt)
  232. value.FontFamily = getIntValueByInterface(value.FF)
  233. value.TextBeak = getIntValueByInterface(value.Tb)
  234. if len(value.CellType.S) > 0 {
  235. for kk, vv := range value.CellType.S {
  236. vv.Fontsize = getIntValueByInterface(vv.Fs)
  237. vv.CancelLine = getIntValueByInterface(vv.Cl)
  238. vv.HorizontalType = getIntValueByInterface(vv.Ht)
  239. vv.VerticalType = getIntValueByInterface(vv.Vt)
  240. vv.FontFamily = getIntValueByInterface(vv.FF)
  241. value.CellType.S[kk] = vv
  242. }
  243. }
  244. item.CellData[k].Value = value
  245. }
  246. //边框
  247. if len(item.Config.BorderInfo) > 0 {
  248. for k, v := range item.Config.BorderInfo {
  249. v.Value.T.Style = getIntValueByInterface(v.Value.T.Style)
  250. v.Value.B.Style = getIntValueByInterface(v.Value.B.Style)
  251. v.Value.L.Style = getIntValueByInterface(v.Value.L.Style)
  252. v.Value.R.Style = getIntValueByInterface(v.Value.R.Style)
  253. item.Config.BorderInfo[k] = v
  254. }
  255. }
  256. return
  257. }
  258. // 兼容前端js传递的数据类型
  259. func getIntValueByInterface(valInterface interface{}) (val int) {
  260. if valInterface == nil {
  261. return
  262. }
  263. switch reflect.TypeOf(valInterface).Kind() {
  264. case reflect.String:
  265. tmpValue := reflect.ValueOf(valInterface).String()
  266. tmpValInt, err := strconv.Atoi(tmpValue)
  267. if err != nil {
  268. val = 0
  269. } else {
  270. val = tmpValInt
  271. }
  272. case reflect.Int, reflect.Int32, reflect.Int64:
  273. tmpValue := reflect.ValueOf(valInterface).Int()
  274. val = int(tmpValue)
  275. }
  276. return
  277. }
  278. // TableData 表格数据
  279. type TableData struct {
  280. TableDataList [][]LuckySheetDataValue
  281. RowWidthList []float64
  282. RowHeightList []float64
  283. RemoveTopRow int `description:"移除表格上方的行数"`
  284. RemoveBottomRow int `description:"移除表格下方的行数"`
  285. RemoveLeftColumn int `description:"移除表格左侧的列数"`
  286. RemoveRightColumn int `description:"移除表格右侧的列数"`
  287. MergeList []TableDataMerge `description:"合并数据列"`
  288. }
  289. // TableDataMerge 表格数据合并单元格配置
  290. type TableDataMerge struct {
  291. StartRowIndex int `json:"start_row_index" description:"开始的行下标"`
  292. StartColumnIndex int `json:"start_column" description:"开始的列下标"`
  293. MergeRowNum int `json:"merge_row_num" description:"合并的行数"`
  294. MergeColumnNum int `json:"merge_column_num" description:"合并的列数"`
  295. }
  296. // TableRemoveNum 上下左右移除的空行空列数量
  297. type TableRemoveNum struct {
  298. RemoveTopRow int `description:"移除表格上方的行数"`
  299. RemoveBottomRow int `description:"移除表格下方的行数"`
  300. RemoveLeftColumn int `description:"移除表格左侧的列数"`
  301. RemoveRightColumn int `description:"移除表格右侧的列数"`
  302. }
  303. // handleCellVal 处理单元格数据
  304. func handleCellVal(tmpTableColData LuckySheetDataValue) (valueStr string) {
  305. valueStr = tmpTableColData.Monitor
  306. if valueStr == `` {
  307. //valueStr = fmt.Sprint(cellInfo.Value)
  308. if valueStr == `` && tmpTableColData.CellType.S != nil {
  309. //不是设置在单元格上面,而是设置在文本上
  310. for _, cellS := range tmpTableColData.CellType.S {
  311. valueStr += fmt.Sprint(cellS.Value)
  312. }
  313. }
  314. }
  315. return
  316. }
  317. type CellPosition struct {
  318. RowIndex int
  319. ColumnIndex int
  320. }