aboutsummaryrefslogtreecommitdiff
path: root/lua/cmake/telescope/pickers.lua
blob: c82de90da719ea839928ded1b5c162a4eaa69b75 (plain)
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
local pickers = require("telescope.pickers")
local finders = require("telescope.finders")
local conf = require("telescope.config").values
local actions = require("telescope.actions")
local action_state = require("telescope.actions.state")
local cmake_make_entry = require("cmake.telescope.make_entry")
local previewers = require("cmake.telescope.previewers")

local M = {}

M.build_dirs = function(opts)
  local cmake = require("cmake")
  pickers
    .new(opts, {
      prompt_title = "CMake Builds",
      finder = finders.new_table({
        results = cmake.project.fileapis,
        -- entry_maker = cmake_make_entry.gen_from_fileapi(opts),
        entry_maker = function(entry)
          return {
            value = entry,
            display = entry.path,
            ordinal = entry.path,
          }
        end,
        sorter = conf.generic_sorter(opts),
        -- attach_mappings = function(prompt_bufnr, map)
        --   actions.select_default:replace(function() end)
        --   return true
        -- end,
      }),
    })
    :find()
end

M.configure = function(opts)
  local cmake = require("cmake")
  local runner = require("cmake.runner")
  opts.layout_strategy = "vertical"
  opts.layout_config = {
    prompt_position = "top",
    preview_cutoff = 0,
    preview_height = 5,
    mirror = true,
  }
  pickers
    .new(opts, {
      default_selection_index = cmake.project:current_configure_index(),
      prompt_title = "CMake Configure Options",
      finder = finders.new_table({
        results = cmake.project:list_configs(),
        entry_maker = cmake_make_entry.gen_from_configure(opts),
      }),
      sorter = conf.generic_sorter(opts),
      previewer = previewers.configure_previewer(),
      attach_mappings = function(prompt_bufnr, map)
        actions.select_default:replace(function()
          actions.close(prompt_bufnr)
          local selection = action_state.get_selected_entry()
          cmake.project.current_config = selection.value
          runner.start(selection.value.generate_command)
        end)
        return true
      end,
    })
    :find()
end

M.build = function(opts)
  local cmake = require("cmake")
  local runner = require("cmake.runner")
  opts.layout_strategy = "vertical"
  opts.layout_config = {
    prompt_position = "top",
    preview_cutoff = 0,
    preview_height = 5,
    mirror = true,
  }
  pickers
    .new(opts, {
      default_selection_index = cmake.project:current_build_index(),
      prompt_title = "CMake Build Options",
      finder = finders.new_table({
        results = cmake.project:list_builds(),
        entry_maker = cmake_make_entry.gen_from_configure(opts),
      }),
      sorter = conf.generic_sorter(opts),
      previewer = previewers.build_previewer(),
      attach_mappings = function(prompt_bufnr, map)
        actions.select_default:replace(function()
          actions.close(prompt_bufnr)
          local selection = action_state.get_selected_entry()
          cmake.project.current_config = selection.value
          runner.start(selection.value.build_command)
        end)
        return true
      end,
    })
    :find()
end

return M