コード例 #1
0
ファイル: helpers_test.go プロジェクト: JC1738/raymond
func detectDataHelper(options *raymond.Options) string {
	if val, ok := options.DataFrame().Get("exclaim").(string); ok {
		return val
	}

	return ""
}
コード例 #2
0
ファイル: template.go プロジェクト: curx/drone-go
// isSuccess is a helper function that executes a block iff the status
// is success, else it executes the else block.
func isSuccess(conditional bool, options *raymond.Options) string {
	if !conditional {
		return options.Inverse()
	}

	switch options.ParamStr(0) {
	case "success":
		return options.Fn()
	default:
		return options.Inverse()
	}
}
コード例 #3
0
ファイル: template.go プロジェクト: curx/drone-go
// isFailure is a helper function that executes a block iff the status
// is a form of failure, else it executes the else block.
func isFailure(conditional bool, options *raymond.Options) string {
	if !conditional {
		return options.Inverse()
	}

	switch options.ParamStr(0) {
	case "failure", "error", "killed":
		return options.Fn()
	default:
		return options.Inverse()
	}
}
コード例 #4
0
ファイル: helpers_test.go プロジェクト: JC1738/raymond
func listHelper(context interface{}, options *raymond.Options) string {
	val := reflect.ValueOf(context)
	switch val.Kind() {
	case reflect.Array, reflect.Slice:
		if val.Len() > 0 {
			result := "<ul>"
			for i := 0; i < val.Len(); i++ {
				result += "<li>"
				result += options.FnWith(val.Index(i).Interface())
				result += "</li>"
			}
			result += "</ul>"

			return result
		}
	}

	return "<p>" + options.Inverse() + "</p>"
}
コード例 #5
0
ファイル: template.go プロジェクト: Guoshusheng/drone-go
func urlencode(options *raymond.Options) string {
	return url.QueryEscape(options.Fn())
}
コード例 #6
0
ファイル: helpers_test.go プロジェクト: JC1738/raymond
func formCtxHelper(context interface{}, options *raymond.Options) string {
	return "<form>" + options.FnWith(context) + "</form>"
}
コード例 #7
0
ファイル: helpers_test.go プロジェクト: JC1738/raymond
func formHelper(options *raymond.Options) string {
	return "<form>" + options.Fn() + "</form>"
}
コード例 #8
0
ファイル: helpers_test.go プロジェクト: JC1738/raymond
func rawThreeHelper(a, b, c string, options *raymond.Options) string {
	return options.Fn() + a + b + c
}
コード例 #9
0
ファイル: helpers_test.go プロジェクト: JC1738/raymond
func rawHelper(options *raymond.Options) string {
	return options.Fn()
}
コード例 #10
0
ファイル: helpers_test.go プロジェクト: JC1738/raymond
func linkHelper(prefix string, options *raymond.Options) string {
	return fmt.Sprintf(`<a href="%s/%s">%s</a>`, prefix, options.ValueStr("url"), options.ValueStr("text"))
}