From dc4ace8ba7989c827b0d8c4f92f0e5256d695796 Mon Sep 17 00:00:00 2001 From: Paul Duncan Date: Mon, 23 May 2016 15:01:17 -0400 Subject: simplify state buttons --- src/guff.cr | 41 +++++++++++++++++++++++++++++++++++++++++ 1 file changed, 41 insertions(+) (limited to 'src/guff.cr') diff --git a/src/guff.cr b/src/guff.cr index 8228e88..01e0cb4 100644 --- a/src/guff.cr +++ b/src/guff.cr @@ -1447,6 +1447,17 @@ module Guff ", + + state_button: " + + + %s + + ", } def tabs(id : String) @@ -1465,6 +1476,36 @@ module Guff end end + STATES = [{ + id: "draft", + name: "Draft", + icon: "fa-wrench", + css: "btn-primary", + }, { + id: "posted", + name: "Posted", + icon: "fa-bullhorn", + css: "btn-default", + }, { + id: "deleted", + name: "Deleted", + icon: "fa-trash", + css: "btn-default", + }] + + private def state_buttons + @state_buttons ||= String.build do |io| + STATES.each do |row| + io << TEMPLATES[:state_button] % [ + h(row[:css]), + h(row[:name]), + h(row[:icon]), + h(row[:name]) + ] + end + end + end + ECR.def_to_s("src/views/admin-page.ecr") end -- cgit v1.2.3