Skip to content

Commit

Permalink
First Commit (#1)
Browse files Browse the repository at this point in the history
* First Commit

* Update build
  • Loading branch information
ChrisPulman authored May 29, 2024
1 parent ebed694 commit 5d24f2f
Show file tree
Hide file tree
Showing 24 changed files with 1,536 additions and 1 deletion.
532 changes: 532 additions & 0 deletions .editorconfig

Large diffs are not rendered by default.

45 changes: 45 additions & 0 deletions .github/CODEOWNERS
Original file line number Diff line number Diff line change
@@ -0,0 +1,45 @@
# A CODEOWNERS file uses a pattern that follows the same rules used in gitignore files.
# The pattern is followed by one or more GitHub usernames or team names using the
# standard @username or @org/team-name format. You can also refer to a user by an
# email address that has been added to their GitHub account, for example [email protected]

.github/* @reactiveui/maintainers

* @reactiveui/core-team
version.json @reactiveui/maintainers

build.* @reactiveui/devops-team
SignPackages.* @reactiveui/devops-team
NuGet.* @reactiveui/devops-team
.vsts-ci.yml @reactiveui/devops-team
script/* @reactiveui/devops-team

samples/* @reactiveui/learning-team
snippets/* @reactiveui/learning-team
*.md @reactiveui/learning-team

src/ReactiveUI.AndroidSupport/* @reactiveui/android-team
src/ReactiveUI/Platforms/android/* @reactiveui/android-team
src/ReactiveUI/Platforms/apple-common/* @reactiveui/ios-team @reactiveui/mac-team
src/ReactiveUI/Platforms/ios/* @reactiveui/ios-team
src/ReactiveUI/Platforms/mac/* @reactiveui/mac-team
src/ReactiveUI/Platforms/net461/* @reactiveui/wpf-team @reactiveui/winforms-team
src/ReactiveUI/Platforms/netcoreapp/* @reactiveui/dotnetcore-team @reactiveui/webassembly-team
src/ReactiveUI/Platforms/uap10/* @reactiveui/uwp-team
src/ReactiveUI/Platforms/tizen/* @reactiveui/tizen-team
src/ReactiveUI/Platforms/tvos/* @reactiveui/tvos-team
src/ReactiveUI/Platforms/windows-common/* @reactiveui/wpf-team @reactiveui/winforms-team @reactiveui/uwp-team
src/ReactiveUI/Platforms/xamarin-common/* @reactiveui/xamarin-forms-team

src/ReactiveUI.Blend/* @reactiveui/wpf-team @reactiveui/winforms-team @reactiveui/uwp-team

src/ReactiveUI.Events.WPF/* @reactiveui/wpf-team
src/ReactiveUI.Events.XamForms/* @reactiveui/xamarin-forms-team

src/ReactiveUI.Fody*/* @reactiveui/fody-team

src/ReactiveUI.Winforms/* @reactiveui/winforms-team

src/ReactiveUI.Wpf/* @reactiveui/wpf-team

src/ReactiveUI.XamForms/* @reactiveui/xamarin-forms-team
102 changes: 102 additions & 0 deletions .github/ISSUE_TEMPLATE/bug-report.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,102 @@
name: Bug Report
description: Create a report to help us improve
title: "[Bug]: "
labels: ["bug"]
body:
- type: markdown
attributes:
value: |
## Please note although we can't commit to any timeline, priority will be given to those who are [Contributors](https://github.com/reactiveui/ReactiveUI#contribute ) to the project.
- type: textarea
id: description
attributes:
label: Describe the bug 🐞
description: A clear and concise description of what the bug is.
value: "A bug happened!"
validations:
required: true
- type: textarea
id: reproduce-steps
attributes:
label: Step to reproduce
description: "Steps to reproduce the behavior:"
value: |
1. Go to '...'
2. Click on '....'
3. Scroll down to '....'
4. See error
validations:
required: true
- type: input
id: reproduce-repository
attributes:
label: Reproduction repository
description: "Simple repository representing the bug"
placeholder: https://github.com/reactiveui/ReactiveUI
value: |
https://github.com/reactiveui/ReactiveUI
validations:
required: false
- type: textarea
id: expected-behavior
attributes:
label: Expected behavior
description: A clear and concise description of what you expected to happen.
value: This should happen...
validations:
required: true
- type: textarea
id: screenshots
attributes:
label: Screenshots 🖼️
description: If applicable, add screenshots to help explain your problem.
validations:
required: false
- type: dropdown
id: ide
attributes:
label: IDE
multiple: true
options:
- Visual Studio 2022
- Visual Studio 2019
- Visual Studio 2017
- Visual Studio for Mac
- Rider Windows
- Rider macOS
- Visual Studio Code
- type: input
id: operating-system
attributes:
label: Operating system
description: Windows, Linux, Mac OS...
validations:
required: false
- type: input
id: system-version
attributes:
label: Version
description: Version and distribution (if applicable)
validations:
required: false
- type: input
id: device
attributes:
label: Device
description: Device e.g. iPhone 6
validations:
required: false
- type: input
id: reactiveui-version
attributes:
label: ReactiveUI Version
description: e.g. 15.1.1
validations:
required: false
- type: textarea
id: additional-information
attributes:
label: Additional information ℹ️
description: Add any other information about the problem here.
validations:
required: false
8 changes: 8 additions & 0 deletions .github/ISSUE_TEMPLATE/config.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
blank_issues_enabled: false
contact_links:
- name: Questions
url: https://github.com/reactiveui/ReactiveUI/discussions
about: 'For general questions about ReactiveUI, ask in the GitHub discussions'
- name: Chat
url: https://www.reactiveui.net/slack
about: 'Our slack chat community invite'
37 changes: 37 additions & 0 deletions .github/ISSUE_TEMPLATE/feature_request.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@
---
name: Feature request
about: Suggest an idea for this project
title: ''
labels: feature request
assignees: ''

---

<!--
Please note although we can't commit to any timeline, priority will be given to those who are [Contributors](https://github.com/reactiveui/ReactiveUI#contribute ) to the project.
If this is a question please ask on [StackOverflow](https://stackoverflow.com/questions/tagged/reactiveui).
-->

**Is your feature request related to a problem? Please describe.**
<!-- A clear and concise description of what the problem is. -->



**Describe the solution you'd like**
<!-- A clear and concise description of what you want to happen. -->



**Describe alternatives you've considered**
<!-- A clear and concise description of any alternative solutions or features you've considered. -->



**Describe suggestions on how to achieve the feature**
<!-- A clear description to how to achieve the feature. -->



**Additional context**
<!-- Add any other context or screenshots about the feature request here. -->
4 changes: 4 additions & 0 deletions .github/renovate.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
{
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"extends": ["local>reactiveui/.github:renovate"]
}
27 changes: 27 additions & 0 deletions .github/workflows/build-samples.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
name: Sample Build

on:
workflow_dispatch:
inputs:
disable:
description: "temporarily disabled"

env:
productNamespacePrefix: "ReactiveUI"

permissions:
contents: read

jobs:
build:
permissions:
contents: none
uses: reactiveui/actions-common/.github/workflows/workflow-common-setup-and-build.yml@main
with:
configuration: Release
productNamespacePrefix: "ReactiveUI"
useVisualStudioPreview: false
useMauiCheckDotNetTool: false
srcFolder: 'integrationtests'
solutionFile: 'IntegrationTests.All.sln'
performTests: false
26 changes: 26 additions & 0 deletions .github/workflows/ci-build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
name: Build

on:
push:
branches: [ main ]
pull_request:
branches: [ main ]

env:
productNamespacePrefix: "ReactiveUI"

permissions:
contents: read

jobs:
build:
permissions:
contents: none
uses: reactiveui/actions-common/.github/workflows/workflow-common-setup-and-build.yml@main
with:
configuration: Release
productNamespacePrefix: "ReactiveUI"
dotNetBuild: true
useVisualStudioPreview: false
useMauiCheckDotNetTool: false
solutionFile: "ReactiveUI.Maui.Plugins.Popup.sln"
31 changes: 31 additions & 0 deletions .github/workflows/lock.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
name: 'Lock Threads'

on:
schedule:
- cron: '0 0 * * *'
workflow_dispatch:

permissions:
issues: write
pull-requests: write

concurrency:
group: lock

jobs:
action:
runs-on: ubuntu-latest
steps:
- uses: dessant/lock-threads@v5
with:
github-token: ${{ github.token }}
issue-inactive-days: '14'
pr-inactive-days: '14'
issue-comment: >
This issue has been automatically locked since there
has not been any recent activity after it was closed.
Please open a new issue for related bugs.
pr-comment: >
This pull request has been automatically locked since there
has not been any recent activity after it was closed.
Please open a new issue for related bugs.
26 changes: 26 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
name: Release

on:
push:
branches:
- main
- patches/*

env:
productNamespacePrefix: "ReactiveUI"

jobs:
release:
uses: reactiveui/actions-common/.github/workflows/workflow-common-release.yml@main
with:
configuration: Release
productNamespacePrefix: "ReactiveUI"
dotNetBuild: true
useVisualStudioPreview: false
useMauiCheckDotNetTool: false
solutionFile: "reactiveui.sln"
secrets:
SIGN_CLIENT_USER_ID: ${{ secrets.SIGN_CLIENT_USER_ID }}
SIGN_CLIENT_SECRET: ${{ secrets.SIGN_CLIENT_SECRET }}
SIGN_CLIENT_CONFIG: ${{ secrets.SIGN_CLIENT_CONFIG }}
NUGET_API_KEY: ${{ secrets.NUGET_API_KEY }}
63 changes: 62 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,2 +1,63 @@
# Maui.Plugins.Popup
# ReactiveUI.Maui.Plugins.Popup
ReactiveUI support for Maui Popups

## Usage

Use ConfigureReactiveUIPopup() with MauiAppBuilder to initialise ReactiveUI.Maui.Plugins.Popup

```csharp
using Microsoft.Maui;
using Microsoft.Maui.Controls.Hosting;
using Microsoft.Maui.Hosting;
using ReactiveUI.Maui.Plugins.Popup;

namespace MauiApp1
{
public class Startup : IStartup
{
public void Configure(IAppHostBuilder appBuilder)
{
appBuilder
.UseMauiApp<App>()
.ConfigureReactiveUIPopup();
}
}
}
```


The following methods are available

PopAllPopup
PopPopup
PushPopup
RemovePopupPage

The Following Observable Events are available

PoppingObservable
PoppedObservable
PushingObservable
PushedObservable

The following Controls are available

ReactivePopupPage
ReactivePopupPage<TViewModel>

## Sponsorship

The core team members, ReactiveUI contributors and contributors in the ecosystem do this open-source work in their free time. If you use ReactiveUI, a serious task, and you'd like us to invest more time on it, please donate. This project increases your income/productivity too. It makes development and applications faster and it reduces the required bandwidth.

[Become a sponsor](https://github.com/sponsors/reactivemarbles).

This is how we use the donations:

* Allow the core team to work on ReactiveUI
* Thank contributors if they invested a large amount of time in contributing
* Support projects in the ecosystem


## .NET Foundation

ReactiveUI is part of the [.NET Foundation](https://www.dotnetfoundation.org/). Other projects that are associated with the foundation include the Microsoft .NET Compiler Platform ("Roslyn") as well as the Microsoft ASP.NET family of projects, Microsoft .NET Core & Xamarin Forms.
Binary file added images/logo.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading

0 comments on commit 5d24f2f

Please sign in to comment.