-
Notifications
You must be signed in to change notification settings - Fork 16
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
419186a
commit c715921
Showing
7 changed files
with
170 additions
and
31 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,85 @@ | ||
package docxplate | ||
|
||
import ( | ||
"bytes" | ||
"strings" | ||
|
||
"golang.org/x/text/cases" | ||
"golang.org/x/text/language" | ||
) | ||
|
||
// Format - how to format an element | ||
const ( | ||
FormatLower = ":lower" | ||
FormatUpper = ":upper" | ||
FormatTitle = ":title" | ||
FormatCapitalize = ":capitalize" | ||
) | ||
|
||
type ParamFormatter struct { | ||
raw string | ||
|
||
Format string | ||
} | ||
|
||
// NewFormatter - take raw ":empty:remove:list" and make formatter and its fields from it | ||
func NewFormatter(raw []byte) *ParamFormatter { | ||
raw = bytes.TrimSpace(raw) | ||
raw = bytes.ToLower(raw) | ||
|
||
// init with defaults | ||
f := &ParamFormatter{ | ||
raw: string(raw), | ||
} | ||
|
||
// Always must start with ":" | ||
if !strings.HasPrefix(f.raw, ":") { | ||
return nil | ||
} | ||
|
||
// Remove the first ":" so split parts counting is more readable | ||
// Split into parts | ||
parts := strings.Split(f.raw[1:], ":") | ||
|
||
for _, part := range parts { | ||
switch part { | ||
case "lower", "upper", "title", "capitalize": | ||
f.Format = ":" + part | ||
} | ||
} | ||
|
||
return f | ||
} | ||
|
||
// applyFormat - apply formatting to the given content based on the formatter | ||
func (p *ParamFormatter) ApplyFormat(format string, content []byte) []byte { | ||
switch format { | ||
case FormatLower: | ||
return bytes.ToLower(content) | ||
case FormatUpper: | ||
return bytes.ToUpper(content) | ||
case FormatTitle: | ||
titleCaser := cases.Title(language.Und) | ||
return []byte(titleCaser.String(string(content))) | ||
case FormatCapitalize: | ||
content = bytes.TrimSpace(content) | ||
if len(content) > 0 { | ||
content[0] = bytes.ToUpper([]byte{content[0]})[0] | ||
if len(content) > 1 { | ||
content = append([]byte{content[0]}, bytes.ToLower(content[1:])...) | ||
} | ||
} | ||
return content | ||
default: | ||
return content | ||
} | ||
} | ||
|
||
// String - return rebuilt formatter string | ||
func (p *ParamFormatter) String() string { | ||
if p == nil { | ||
return "" | ||
} | ||
s := p.Format | ||
return s | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters