From 7e013f822593545a967fb0f50768e864bc88caba Mon Sep 17 00:00:00 2001 From: "Daniel J. Summers" Date: Fri, 24 Jan 2025 18:51:48 -0500 Subject: [PATCH] First cut of fixi library --- .gitignore | 3 + src/Directory.Build.props | 18 +++++ src/Giraffe.Fixi.sln | 28 +++++++ src/Library/Giraffe.Fixi.fsproj | 12 +++ src/Library/Library.fs | 116 ++++++++++++++++++++++++++++ src/Tests/Giraffe.Fixi.Tests.fsproj | 12 +++ src/Tests/Program.fs | 2 + 7 files changed, 191 insertions(+) create mode 100644 .gitignore create mode 100644 src/Directory.Build.props create mode 100644 src/Giraffe.Fixi.sln create mode 100644 src/Library/Giraffe.Fixi.fsproj create mode 100644 src/Library/Library.fs create mode 100644 src/Tests/Giraffe.Fixi.Tests.fsproj create mode 100644 src/Tests/Program.fs diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..a33248f --- /dev/null +++ b/.gitignore @@ -0,0 +1,3 @@ +src/.idea +src/**/bin +src/**/obj diff --git a/src/Directory.Build.props b/src/Directory.Build.props new file mode 100644 index 0000000..149c471 --- /dev/null +++ b/src/Directory.Build.props @@ -0,0 +1,18 @@ + + + + net8.0;net9.0 + 0.2.2 + true + Initial version + danieljsummers + Bit Badger Solutions + https://git.bitbadger.solutions/bit-badger/Giraffe.Fixi + false + https://git.bitbadger.solutions/bit-badger/Giraffe.Fixi + Git + MIT License + MIT + Giraffe fixi + + diff --git a/src/Giraffe.Fixi.sln b/src/Giraffe.Fixi.sln new file mode 100644 index 0000000..815071c --- /dev/null +++ b/src/Giraffe.Fixi.sln @@ -0,0 +1,28 @@ + +Microsoft Visual Studio Solution File, Format Version 12.00 +# Visual Studio Version 17 +VisualStudioVersion = 17.0.31903.59 +MinimumVisualStudioVersion = 10.0.40219.1 +Project("{F2A71F9B-5D33-465A-A702-920D77279786}") = "Giraffe.Fixi", "Library\Giraffe.Fixi.fsproj", "{E450411F-C6F9-4373-B9B3-9788CBA3CA36}" +EndProject +Project("{F2A71F9B-5D33-465A-A702-920D77279786}") = "Giraffe.Fixi.Tests", "Tests\Giraffe.Fixi.Tests.fsproj", "{4C327E9B-3340-4608-8444-05770274285C}" +EndProject +Global + GlobalSection(SolutionConfigurationPlatforms) = preSolution + Debug|Any CPU = Debug|Any CPU + Release|Any CPU = Release|Any CPU + EndGlobalSection + GlobalSection(SolutionProperties) = preSolution + HideSolutionNode = FALSE + EndGlobalSection + GlobalSection(ProjectConfigurationPlatforms) = postSolution + {E450411F-C6F9-4373-B9B3-9788CBA3CA36}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {E450411F-C6F9-4373-B9B3-9788CBA3CA36}.Debug|Any CPU.Build.0 = Debug|Any CPU + {E450411F-C6F9-4373-B9B3-9788CBA3CA36}.Release|Any CPU.ActiveCfg = Release|Any CPU + {E450411F-C6F9-4373-B9B3-9788CBA3CA36}.Release|Any CPU.Build.0 = Release|Any CPU + {4C327E9B-3340-4608-8444-05770274285C}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {4C327E9B-3340-4608-8444-05770274285C}.Debug|Any CPU.Build.0 = Debug|Any CPU + {4C327E9B-3340-4608-8444-05770274285C}.Release|Any CPU.ActiveCfg = Release|Any CPU + {4C327E9B-3340-4608-8444-05770274285C}.Release|Any CPU.Build.0 = Release|Any CPU + EndGlobalSection +EndGlobal diff --git a/src/Library/Giraffe.Fixi.fsproj b/src/Library/Giraffe.Fixi.fsproj new file mode 100644 index 0000000..f551555 --- /dev/null +++ b/src/Library/Giraffe.Fixi.fsproj @@ -0,0 +1,12 @@ + + + + + + + + + + + + diff --git a/src/Library/Library.fs b/src/Library/Library.fs new file mode 100644 index 0000000..c65b48e --- /dev/null +++ b/src/Library/Library.fs @@ -0,0 +1,116 @@ +namespace Giraffe.Fixi + +open Microsoft.AspNetCore.Http +open Microsoft.Extensions.Primitives + +/// Module to hold extensions +[] +module Extensions = + + /// Extensions to the header dictionary + type IHeaderDictionary with + + /// Indicates that the request was generated from fixi + member this.FxRequest + with get () = not (this["FX-Request"] = StringValues.Empty) + +/// Valid values for the fx-swap attribute +type FxSwap = + + /// Replace the entire target element with the response (the default) + | OuterHtml + + /// Replace the inner HTML of the target element + | InnerHtml + + /// Insert the response before the target element + | BeforeBegin + + /// Insert the response before the first child of the target element + | AfterBegin + + /// Insert the response after the last child of the target element + | BeforeEnd + + /// Insert the response after the target element + | AfterEnd + + override this.ToString() = + match this with + | OuterHtml -> "outerHTML" + | InnerHtml -> "innerHTML" + | BeforeBegin -> "beforebegin" + | AfterBegin -> "afterbegin" + | BeforeEnd -> "beforeend" + | AfterEnd -> "afterend" + + +open Giraffe.ViewEngine + +/// Attributes and flags for fixi +[] +module FixiAttrs = + + /// Issue a request to the given URL + /// The URL to which the request should be issued + /// A configured fx-action attribute + let _fxAction url = + attr "fx-action" url + + /// Exclude this element (and below) from fixi's behavior + let _fxIgnore = + flag "fx-ignore" + + /// Specify the HTTP method for the fixi request + /// The HTTP method to use for the request + /// A configured fx-method attribute + /// Consider _fxGet, _fxPost, etc. + let _fxMethod (it: string) = + attr "fx-method" (it.ToUpperInvariant()) + + /// Specify the swap strategy + /// The swap strategy to use + /// A configured fx-swap attribute + let _fxSwap (swap: FxSwap) = + attr "fx-swap" (string swap) + + /// Specify the target for the swap + /// The CSS selector for the swap target + /// A configured fx-target attribute + let _fxTarget selector = + attr "fx-target" selector + + /// The event which should trigger this request + /// The name of the event + /// A configured fx-trigger attribute + /// The event should not start with "on"; use "click", not "onclick" + let _fxTrigger event = + attr "fx-trigger" event + +/// Canned fx-method attributes for common HTTP methods +[] +module FixiMethods = + + /// An fx-method="DELETE" attribute + let _fxDelete = + _fxMethod "DELETE" + + /// An fx-method="HEAD" attribute + let _fxHead = + _fxMethod "HEAD" + + /// An fx-method="GET" attribute + let _fxGet = + _fxMethod "GET" + + /// An fx-method="PATCH" attribute + let _fxPatch = + _fxMethod "PATCH" + + /// An fx-method="POST" attribute + let _fxPost = + _fxMethod "POST" + + /// An fx-method="PUT" attribute + let _fxPut = + _fxMethod "PUT" diff --git a/src/Tests/Giraffe.Fixi.Tests.fsproj b/src/Tests/Giraffe.Fixi.Tests.fsproj new file mode 100644 index 0000000..248c750 --- /dev/null +++ b/src/Tests/Giraffe.Fixi.Tests.fsproj @@ -0,0 +1,12 @@ + + + + Exe + net9.0 + + + + + + + diff --git a/src/Tests/Program.fs b/src/Tests/Program.fs new file mode 100644 index 0000000..d6818ab --- /dev/null +++ b/src/Tests/Program.fs @@ -0,0 +1,2 @@ +// For more information see https://aka.ms/fsharp-console-apps +printfn "Hello from F#"