commit 8e79a2bd2376a15a103dc2c2cd459190dc78a93c
Author: david-swift
Date: Wed Jul 10 14:41:11 2024 +0200
Initial commit
diff --git a/.github/ISSUE_TEMPLATE/bug_report.yml b/.github/ISSUE_TEMPLATE/bug_report.yml
new file mode 100644
index 0000000..ee1a591
--- /dev/null
+++ b/.github/ISSUE_TEMPLATE/bug_report.yml
@@ -0,0 +1,40 @@
+name: Bug report
+description: Something is not working as expected.
+title: Description of the bug
+labels: bug
+
+body:
+ - type: textarea
+ attributes:
+ label: Describe the bug
+ description: >-
+ A clear and concise description of what the bug is.
+ validations:
+ required: true
+
+ - type: textarea
+ attributes:
+ label: To Reproduce
+ description: >-
+ Steps to reproduce the behavior.
+ placeholder: |
+ 1. Go to '...'
+ 2. Click on '....'
+ 3. Scroll down to '....'
+ 4. See error
+ validations:
+ required: true
+
+ - type: textarea
+ attributes:
+ label: Expected behavior
+ description: >-
+ A clear and concise description of what you expected to happen.
+ validations:
+ required: true
+
+ - type: textarea
+ attributes:
+ label: Additional context
+ description: >-
+ Add any other context about the problem here.
diff --git a/.github/ISSUE_TEMPLATE/feature_request.yml b/.github/ISSUE_TEMPLATE/feature_request.yml
new file mode 100644
index 0000000..c244dbb
--- /dev/null
+++ b/.github/ISSUE_TEMPLATE/feature_request.yml
@@ -0,0 +1,36 @@
+name: Feature request
+description: Suggest an idea for this project
+title: Description of the feature request
+labels: enhancement
+
+body:
+ - type: input
+ attributes:
+ label: Is your feature request related to a problem? Please describe.
+ placeholder: A clear and concise description of what the problem is. Ex. I'm always frustrated when [...]
+ validations:
+ required: false
+
+ - type: textarea
+ attributes:
+ label: Describe the solution you'd like
+ placeholder: >-
+ A clear and concise description of what you want to happen.
+ validations:
+ required: true
+
+ - type: textarea
+ attributes:
+ label: Describe alternatives you've considered
+ placeholder: >-
+ A clear and concise description of any alternative solutions or features you've considered.
+ validations:
+ required: true
+
+ - type: textarea
+ attributes:
+ label: Additional context
+ placeholder: >-
+ Add any other context or screenshots about the feature request here.
+ validations:
+ required: true
diff --git a/.github/PULL_REQUEST_TEMPLATE.md b/.github/PULL_REQUEST_TEMPLATE.md
new file mode 100644
index 0000000..cce03ae
--- /dev/null
+++ b/.github/PULL_REQUEST_TEMPLATE.md
@@ -0,0 +1,11 @@
+## Steps
+- [ ] Build the project on your machine. If it does not compile, fix the errors.
+- [ ] Describe the purpose and approach of your pull request below.
+- [ ] Submit the pull request. Thank you very much for your contribution!
+
+## Purpose
+_Describe the problem or feature._
+_If there is a related issue, add the link._
+
+## Approach
+_Describe how this pull request solves the problem or adds the feature._
diff --git a/.github/workflows/docs.yml b/.github/workflows/docs.yml
new file mode 100644
index 0000000..fae842f
--- /dev/null
+++ b/.github/workflows/docs.yml
@@ -0,0 +1,45 @@
+name: Deploy Docs
+
+on:
+ push:
+ branches: ["main"]
+
+permissions:
+ contents: read
+ pages: write
+ id-token: write
+
+concurrency:
+ group: "pages"
+ cancel-in-progress: true
+
+jobs:
+ Deploy:
+ environment:
+ name: github-pages
+ url: ${{ steps.deployment.outputs.page_url }}
+ runs-on: macos-14
+ steps:
+ - uses: actions/checkout@v4
+ - name: Build Docs
+ run: |
+ xcrun xcodebuild docbuild \
+ -scheme TermKitBackend \
+ -destination 'generic/platform=macOS' \
+ -derivedDataPath "$PWD/.derivedData" \
+ -skipPackagePluginValidation
+ xcrun docc process-archive transform-for-static-hosting \
+ "$PWD/.derivedData/Build/Products/Debug/TermKitBackend.doccarchive" \
+ --output-path "docs" \
+ --hosting-base-path "TermKitBackend"
+ - name: Modify Docs
+ run: |
+ echo "" > docs/index.html;
+ sed -i '' 's/,2px/,10px/g' docs/css/index.038e887c.css
+ - name: Upload Artifact
+ uses: actions/upload-pages-artifact@v3
+ with:
+ path: 'docs'
+ - name: Deploy to GitHub Pages
+ id: deployment
+ uses: actions/deploy-pages@v4
diff --git a/.github/workflows/swiftlint.yml b/.github/workflows/swiftlint.yml
new file mode 100644
index 0000000..5348bdb
--- /dev/null
+++ b/.github/workflows/swiftlint.yml
@@ -0,0 +1,30 @@
+name: SwiftLint
+
+on:
+ push:
+ paths:
+ - '.github/workflows/swiftlint.yml'
+ - '.swiftlint.yml'
+ - '**/*.swift'
+ pull_request:
+ paths:
+ - '.github/workflows/swiftlint.yml'
+ - '.swiftlint.yml'
+ - '**/*.swift'
+ workflow_dispatch:
+ paths:
+ - '.github/workflows/swiftlint.yml'
+ - '.swiftlint.yml'
+ - '**/*.swift'
+
+jobs:
+ SwiftLint:
+ runs-on: ubuntu-latest
+ steps:
+ - uses: actions/checkout@v1
+ - name: SwiftLint
+ uses: norio-nomura/action-swiftlint@3.2.1
+ with:
+ args: --strict
+ env:
+ WORKING_DIRECTORY: Source
diff --git a/.gitignore b/.gitignore
new file mode 100644
index 0000000..2e48c43
--- /dev/null
+++ b/.gitignore
@@ -0,0 +1,10 @@
+.DS_Store
+/.build
+/Packages
+xcuserdata/
+DerivedData/
+.swiftpm/configuration/registries.json
+.swiftpm/xcode/package.xcworkspace/contents.xcworkspacedata
+.netrc
+/.swiftpm
+/Package.resolved
\ No newline at end of file
diff --git a/.swiftlint.yml b/.swiftlint.yml
new file mode 100644
index 0000000..3de8ae8
--- /dev/null
+++ b/.swiftlint.yml
@@ -0,0 +1,165 @@
+# Opt-In Rules
+opt_in_rules:
+ - anonymous_argument_in_multiline_closure
+ - array_init
+ - attributes
+ - closure_body_length
+ - closure_end_indentation
+ - closure_spacing
+ - collection_alignment
+ - comma_inheritance
+ - conditional_returns_on_newline
+ - contains_over_filter_count
+ - contains_over_filter_is_empty
+ - contains_over_first_not_nil
+ - contains_over_range_nil_comparison
+ - convenience_type
+ - discouraged_none_name
+ - discouraged_object_literal
+ - discouraged_optional_boolean
+ - discouraged_optional_collection
+ - empty_collection_literal
+ - empty_count
+ - empty_string
+ - enum_case_associated_values_count
+ - explicit_init
+ - fallthrough
+ - file_header
+ - file_name
+ - file_name_no_space
+ - first_where
+ - flatmap_over_map_reduce
+ - force_unwrapping
+ - function_default_parameter_at_end
+ - identical_operands
+ - implicit_return
+ - implicitly_unwrapped_optional
+ - joined_default_parameter
+ - last_where
+ - legacy_multiple
+ - let_var_whitespace
+ - literal_expression_end_indentation
+ - local_doc_comment
+ - lower_acl_than_parent
+ - missing_docs
+ - modifier_order
+ - multiline_arguments
+ - multiline_arguments_brackets
+ - multiline_function_chains
+ - multiline_literal_brackets
+ - multiline_parameters
+ - multiline_parameters_brackets
+ - no_extension_access_modifier
+ - no_grouping_extension
+ - no_magic_numbers
+ - number_separator
+ - operator_usage_whitespace
+ - optional_enum_case_matching
+ - prefer_self_in_static_references
+ - prefer_self_type_over_type_of_self
+ - prefer_zero_over_explicit_init
+ - prohibited_interface_builder
+ - redundant_nil_coalescing
+ - redundant_type_annotation
+ - return_value_from_void_function
+ - shorthand_optional_binding
+ - sorted_first_last
+ - sorted_imports
+ - static_operator
+ - strict_fileprivate
+ - switch_case_on_newline
+ - toggle_bool
+ - trailing_closure
+ - type_contents_order
+ - unneeded_parentheses_in_closure_argument
+ - yoda_condition
+
+# Disabled Rules
+disabled_rules:
+ - block_based_kvo
+ - class_delegate_protocol
+ - dynamic_inline
+ - is_disjoint
+ - no_fallthrough_only
+ - notification_center_detachment
+ - ns_number_init_as_function_reference
+ - nsobject_prefer_isequal
+ - private_over_fileprivate
+ - redundant_objc_attribute
+ - self_in_property_initialization
+ - todo
+ - unavailable_condition
+ - valid_ibinspectable
+ - xctfail_message
+
+# Custom Rules
+custom_rules:
+ github_issue:
+ name: 'GitHub Issue'
+ regex: '//.(TODO|FIXME):.(?!.*(https://github\.com/david-swift/TermKitBackend/issues/\d))'
+ message: 'The related GitHub issue must be included in a TODO or FIXME.'
+ severity: warning
+
+ fatal_error:
+ name: 'Fatal Error'
+ regex: 'fatalError.*\(.*\)'
+ message: 'Fatal error should not be used.'
+ severity: error
+
+ enum_case_parameter:
+ name: 'Enum Case Parameter'
+ regex: 'case [a-zA-Z0-9]*\([a-zA-Z0-9\.<>?,\n\t =]+\)'
+ message: 'The associated values of an enum case should have parameters.'
+ severity: warning
+
+ tab:
+ name: 'Whitespaces Instead of Tab'
+ regex: '\t'
+ message: 'Spaces should be used instead of tabs.'
+ severity: warning
+
+ # Thanks to the creator of the SwiftLint rule
+ # "empty_first_line"
+ # https://github.com/coteditor/CotEditor/blob/main/.swiftlint.yml
+ # in the GitHub repository
+ # "CotEditor"
+ # https://github.com/coteditor/CotEditor
+ empty_first_line:
+ name: 'Empty First Line'
+ regex: '(^[ a-zA-Z ]*(?:protocol|extension|class|struct) (?!(?:var|let))[ a-zA-Z:]*\{\n *\S+)'
+ message: 'There should be an empty line after a declaration'
+ severity: error
+
+# Analyzer Rules
+analyzer_rules:
+ - unused_declaration
+ - unused_import
+
+# Options
+file_header:
+ required_pattern: '(// swift-tools-version: .+)?//\n// .*.swift\n// TermKitBackend\n//\n// Created by .* on .*\.(\n// Edited by (.*,)+\.)*\n(\n// Thanks to .* for the .*:\n// ".*"\n// https://.* \(\d\d.\d\d.\d\d\))*//\n'
+missing_docs:
+ warning: [internal, private]
+ error: [open, public]
+ excludes_extensions: false
+ excludes_inherited_types: false
+type_contents_order:
+ order:
+ - case
+ - type_alias
+ - associated_type
+ - type_property
+ - instance_property
+ - ib_inspectable
+ - ib_outlet
+ - subscript
+ - initializer
+ - deinitializer
+ - subtype
+ - type_method
+ - view_life_cycle_method
+ - ib_action
+ - other_method
+excluded:
+ - Sources/TestApp/
+ - .build/
\ No newline at end of file
diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md
new file mode 100644
index 0000000..6ef81b6
--- /dev/null
+++ b/CONTRIBUTING.md
@@ -0,0 +1,34 @@
+# Contributing
+
+Thank you very much for taking the time for contributing to this project.
+
+## Report a Bug
+Just open a new issue on GitHub and describe the bug. It helps if your description is detailed. Thank you very much for your contribution!
+
+## Suggest a New Feature
+Just open a new issue on GitHub and describe the idea. Thank you very much for your contribution!
+
+## Pull Requests
+I am happy for every pull request, you do not have to follow these guidelines. However, it might help you to understand the project structure and make it easier for me to merge your pull request. Thank you very much for your contribution!
+
+### 1. Fork & Clone this Project
+Start by clicking on the `Fork` button at the top of the page. Then, clone this repository to your computer.
+
+### 2. Open the Project
+Open the project folder in GNOME Builder, Xcode or another IDE.
+
+### 3. Understand the Project Structure
+- The `README.md` file contains a description of the app or package.
+- The `LICENSE.md` contains an MIT license.
+- `CONTRIBUTING.md` is this file.
+- Directory `Icons` that contains SVG files for the images used in the app and guides.
+- `Sources` contains the source code of the project as well as a test app.
+
+### 4. Edit the Code
+Edit the code. If you add a new type, add documentation in the code.
+
+### 5. Commit to the Fork
+Commit and push the fork.
+
+### 6. Pull Request
+Open GitHub to submit a pull request. Thank you very much for your contribution!
diff --git a/LICENSE.md b/LICENSE.md
new file mode 100644
index 0000000..626e124
--- /dev/null
+++ b/LICENSE.md
@@ -0,0 +1,21 @@
+MIT License
+
+Copyright (c) 2024 david-swift
+
+Permission is hereby granted, free of charge, to any person obtaining a copy
+of this software and associated documentation files (the "Software"), to deal
+in the Software without restriction, including without limitation the rights
+to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+copies of the Software, and to permit persons to whom the Software is
+furnished to do so, subject to the following conditions:
+
+The above copyright notice and this permission notice shall be included in all
+copies or substantial portions of the Software.
+
+THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
+SOFTWARE.
diff --git a/Package.swift b/Package.swift
new file mode 100644
index 0000000..679bb18
--- /dev/null
+++ b/Package.swift
@@ -0,0 +1,35 @@
+// swift-tools-version: 5.9
+//
+// Package.swift
+// TermKitBackend
+//
+// Created by david-swift on 01.07.2024.
+//
+
+import PackageDescription
+
+/// The TermKitBackend package.
+let package = Package(
+ name: "TermKitBackend",
+ platforms: [.macOS(.v10_15), .iOS(.v13), .tvOS(.v13), .watchOS(.v6), .macCatalyst(.v13)],
+ products: [
+ .library(
+ name: "TermKitBackend",
+ targets: ["TermKitBackend"]
+ )
+ ],
+ dependencies: [
+ .package(url: "https://github.com/AparokshaUI/Meta", branch: "main"),
+ .package(url: "https://github.com/david-swift/TermKit", branch: "main")
+ ],
+ targets: [
+ .target(
+ name: "TermKitBackend",
+ dependencies: ["TermKit", "Meta"]
+ ),
+ .executableTarget(
+ name: "TestApp",
+ dependencies: ["TermKitBackend"]
+ )
+ ]
+)
diff --git a/README.md b/README.md
new file mode 100644
index 0000000..94bf1b4
--- /dev/null
+++ b/README.md
@@ -0,0 +1,45 @@
+
+
+_TermKitBackend_ is a declarative framework allowing the creation of user interface for the terminal. It works on Linux, macOS and Windows thanks to the [TermKit project](https://github.com/migueldeicaza/TermKit).
+
+## Table of Contents
+
+- [Overview](#overview)
+- [Usage](#usage)
+- [Thanks](#thanks)
+
+## Overview
+
+The declarative approach is based on the [Meta package](https://aparokshaui.github.io/meta/) which can be found on [GitHub](https://github.com/AparokshaUI/Meta).
+It is powered by [a fork of TermKit for Swift](https://github.com/david-swift/TermKit).
+
+Detailed information about the declarative approach can be found in the [Meta docs](https://aparokshaui.github.io/meta/). Find the available widgets [here](https://david-swift.github.io/termkitbackend).
+
+## Usage
+
+Follow the tutorial in the [docs](https://david-swift.github.io/termkitbackend).
+
+## Thanks
+
+### Dependencies
+
+- [TermKit](https://github.com/david-swift/TermKit) licensed under the [MIT License](https://github.com/david-swift/TermKit/blob/main/LICENSE)
+- [Meta](https://github.com/AparokshaUI/Meta) licensed under the [MIT License](https://github.com/AparokshaUI/Meta/blob/main/LICENSE.md)
+
+### Other Thanks
+
+- [DocC](https://github.com/apple/swift-docc) used for the documentation
+- [SwiftLint](https://github.com/realm/SwiftLint) for checking whether code style conventions are violated
+- The programming language [Swift](https://github.com/swiftlang/swift)
diff --git a/Sources/TermKitBackend/Menu/Menu.swift b/Sources/TermKitBackend/Menu/Menu.swift
new file mode 100644
index 0000000..43b6082
--- /dev/null
+++ b/Sources/TermKitBackend/Menu/Menu.swift
@@ -0,0 +1,55 @@
+//
+// Menu.swift
+// TermKitBackend
+//
+// Created by david-swift on 07.07.2024.
+//
+
+import TermKit
+
+/// A menu is an item of a ``MenuBar``.
+public struct Menu: Renderable {
+
+ /// The menu's label, displayed in the menu bar.
+ var label: String
+ /// The content of the menu.
+ var content: [Button]
+
+ /// Initialize a menu.
+ /// - Parameters:
+ /// - label: The menu's label, displayed in the menu bar.
+ /// - content: The content of the menu.
+ public init(_ label: String, @Builder