Skip to content

Commit

Permalink
Changing prompt style for SecMan permissions to modal, adapting Appli…
Browse files Browse the repository at this point in the history
…cationUser layout, adding missing fieldSet id in CommandJdo layout
  • Loading branch information
mwhesse authored and andi-huber committed Apr 15, 2021
1 parent 74c5a0a commit b463781
Show file tree
Hide file tree
Showing 8 changed files with 199 additions and 148 deletions.
Expand Up @@ -45,7 +45,7 @@
</cpt:fieldSet>
</bs3:col>
<bs3:col span="0">
<cpt:fieldSet name="Hidden">
<cpt:fieldSet name="Hidden" id="hidden">
<cpt:property id="preValue" hidden="EVERYWHERE"/>
<cpt:property id="postValue" hidden="EVERYWHERE"/>
</cpt:fieldSet>
Expand Down
Expand Up @@ -27,6 +27,7 @@
import org.apache.isis.applib.annotation.Optionality;
import org.apache.isis.applib.annotation.Parameter;
import org.apache.isis.applib.annotation.ParameterLayout;
import org.apache.isis.applib.annotation.PromptStyle;
import org.apache.isis.applib.services.appfeat.ApplicationFeature;
import org.apache.isis.applib.services.appfeat.ApplicationFeatureRepository;
import org.apache.isis.extensions.secman.api.permission.ApplicationPermission;
Expand All @@ -44,7 +45,10 @@
@Action(
domainEvent = AddPermissionDomainEvent.class,
associateWith = "permissions")
@ActionLayout(named="Add", sequence = "0")
@ActionLayout(
named="Add",
sequence = "0",
promptStyle = PromptStyle.DIALOG_MODAL)
@RequiredArgsConstructor
public class ApplicationRole_addPermission {

Expand Down
Expand Up @@ -26,6 +26,7 @@
import org.apache.isis.applib.annotation.Action;
import org.apache.isis.applib.annotation.ActionLayout;
import org.apache.isis.applib.annotation.MemberSupport;
import org.apache.isis.applib.annotation.PromptStyle;
import org.apache.isis.applib.services.message.MessageService;
import org.apache.isis.applib.services.repository.RepositoryService;
import org.apache.isis.commons.internal.base._NullSafe;
Expand All @@ -40,7 +41,10 @@
@Action(
domainEvent = RemovePermissionDomainEvent.class,
associateWith = "permissions")
@ActionLayout(named="Remove", sequence = "10")
@ActionLayout(
named="Remove",
sequence = "10",
promptStyle = PromptStyle.DIALOG_MODAL)
@RequiredArgsConstructor
public class ApplicationRole_removePermissions {

Expand Down
Expand Up @@ -32,6 +32,7 @@
import org.apache.isis.applib.annotation.Optionality;
import org.apache.isis.applib.annotation.Parameter;
import org.apache.isis.applib.annotation.ParameterLayout;
import org.apache.isis.applib.annotation.PromptStyle;
import org.apache.isis.applib.annotation.SemanticsOf;
import org.apache.isis.applib.services.appfeat.ApplicationFeature;
import org.apache.isis.applib.services.appfeat.ApplicationFeatureId;
Expand All @@ -47,7 +48,7 @@
@Action(
semantics = SemanticsOf.SAFE,
associateWith = "permissions")
@ActionLayout(sequence = "1")
@ActionLayout(sequence = "1", promptStyle = PromptStyle.DIALOG_MODAL)
@RequiredArgsConstructor
public class ApplicationUser_filterPermissions {

Expand Down
@@ -0,0 +1,93 @@
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<!--
Licensed to the Apache Software Foundation (ASF) under one
or more contributor license agreements. See the NOTICE file
distributed with this work for additional information
regarding copyright ownership. The ASF licenses this file
to you under the Apache License, Version 2.0 (the
"License"); you may not use this file except in compliance
with the License. You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing,
software distributed under the License is distributed on an
"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
KIND, either express or implied. See the License for the
specific language governing permissions and limitations
under the License.
-->
<bs3:grid xsi:schemaLocation="http://isis.apache.org/applib/layout/component http://isis.apache.org/applib/layout/component/component.xsd http://isis.apache.org/applib/layout/links http://isis.apache.org/applib/layout/links/links.xsd http://isis.apache.org/applib/layout/grid/bootstrap3 http://isis.apache.org/applib/layout/grid/bootstrap3/bootstrap3.xsd" xmlns:bs3="http://isis.apache.org/applib/layout/grid/bootstrap3" xmlns:cpt="http://isis.apache.org/applib/layout/component" xmlns:lnk="http://isis.apache.org/applib/layout/links" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<bs3:row>
<bs3:col span="12" unreferencedActions="true">
<cpt:domainObject/>
<cpt:action id="delete"/>
<cpt:action id="open"/>
</bs3:col>
</bs3:row>
<bs3:row>
<bs3:col span="4">
<cpt:fieldSet name="Id" id="id" unreferencedProperties="true">
<cpt:property id="name"/>
<cpt:property id="username"/>
<cpt:property id="encryptedPassword"/>
</cpt:fieldSet>
<cpt:fieldSet name="Status" id="status">
<cpt:property id="accountType"/>
<cpt:property id="hasPassword"/>
<cpt:property id="status"/>
<cpt:property id="atPath"/>
</cpt:fieldSet>
<cpt:fieldSet name="Metadata" id="metadata">
<cpt:property id="datanucleusIdLong"/>
<cpt:property id="datanucleusVersionLong"/>
<cpt:property id="datanucleusVersionTimestamp"/>
</cpt:fieldSet>
</bs3:col>
<bs3:col span="8">
<bs3:row>
<bs3:col span="12">
<bs3:tabGroup>
<bs3:tab name="Name and Contact Details">
<bs3:row>
<bs3:col span="6">
<cpt:fieldSet name="Contact Details" id="contactDetails">
<cpt:property id="emailAddress"/>
<cpt:property id="phoneNumber"/>
<cpt:property id="faxNumber"/>
</cpt:fieldSet>
</bs3:col>
<bs3:col span="6">
<cpt:fieldSet name="Name" id="name">
<cpt:property id="familyName"/>
<cpt:property id="givenName"/>
<cpt:property id="knownAs"/>
</cpt:fieldSet>
</bs3:col>
</bs3:row>
</bs3:tab>
<bs3:tab name="Roles">
<bs3:row>
<bs3:col span="12">
<cpt:collection id="roles"/>
</bs3:col>
</bs3:row>
</bs3:tab>
<bs3:tab name="Permissions">
<bs3:row>
<bs3:col span="12">
<cpt:collection id="permissions"/>
</bs3:col>
</bs3:row>
</bs3:tab>
<bs3:tab name="Other">
<bs3:row>
<bs3:col span="12" unreferencedCollections="true" />
</bs3:row>
</bs3:tab>
</bs3:tabGroup>
</bs3:col>
</bs3:row>
</bs3:col>
</bs3:row>
</bs3:grid>

This file was deleted.

@@ -0,0 +1,93 @@
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<!--
Licensed to the Apache Software Foundation (ASF) under one
or more contributor license agreements. See the NOTICE file
distributed with this work for additional information
regarding copyright ownership. The ASF licenses this file
to you under the Apache License, Version 2.0 (the
"License"); you may not use this file except in compliance
with the License. You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing,
software distributed under the License is distributed on an
"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
KIND, either express or implied. See the License for the
specific language governing permissions and limitations
under the License.
-->
<bs3:grid xsi:schemaLocation="http://isis.apache.org/applib/layout/component http://isis.apache.org/applib/layout/component/component.xsd http://isis.apache.org/applib/layout/links http://isis.apache.org/applib/layout/links/links.xsd http://isis.apache.org/applib/layout/grid/bootstrap3 http://isis.apache.org/applib/layout/grid/bootstrap3/bootstrap3.xsd" xmlns:bs3="http://isis.apache.org/applib/layout/grid/bootstrap3" xmlns:cpt="http://isis.apache.org/applib/layout/component" xmlns:lnk="http://isis.apache.org/applib/layout/links" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<bs3:row>
<bs3:col span="12" unreferencedActions="true">
<cpt:domainObject/>
<cpt:action id="delete"/>
<cpt:action id="open"/>
</bs3:col>
</bs3:row>
<bs3:row>
<bs3:col span="4">
<cpt:fieldSet name="Id" id="id" unreferencedProperties="true">
<cpt:property id="name"/>
<cpt:property id="username"/>
<cpt:property id="encryptedPassword"/>
</cpt:fieldSet>
<cpt:fieldSet name="Status" id="status">
<cpt:property id="accountType"/>
<cpt:property id="hasPassword"/>
<cpt:property id="status"/>
<cpt:property id="atPath"/>
</cpt:fieldSet>
<cpt:fieldSet name="Metadata" id="metadata">
<cpt:property id="datanucleusIdLong"/>
<cpt:property id="datanucleusVersionLong"/>
<cpt:property id="datanucleusVersionTimestamp"/>
</cpt:fieldSet>
</bs3:col>
<bs3:col span="8">
<bs3:row>
<bs3:col span="12">
<bs3:tabGroup>
<bs3:tab name="Name and Contact Details">
<bs3:row>
<bs3:col span="6">
<cpt:fieldSet name="Contact Details" id="contactDetails">
<cpt:property id="emailAddress"/>
<cpt:property id="phoneNumber"/>
<cpt:property id="faxNumber"/>
</cpt:fieldSet>
</bs3:col>
<bs3:col span="6">
<cpt:fieldSet name="Name" id="name">
<cpt:property id="familyName"/>
<cpt:property id="givenName"/>
<cpt:property id="knownAs"/>
</cpt:fieldSet>
</bs3:col>
</bs3:row>
</bs3:tab>
<bs3:tab name="Roles">
<bs3:row>
<bs3:col span="12">
<cpt:collection id="roles"/>
</bs3:col>
</bs3:row>
</bs3:tab>
<bs3:tab name="Permissions">
<bs3:row>
<bs3:col span="12">
<cpt:collection id="permissions"/>
</bs3:col>
</bs3:row>
</bs3:tab>
<bs3:tab name="Other">
<bs3:row>
<bs3:col span="12" unreferencedCollections="true" />
</bs3:row>
</bs3:tab>
</bs3:tabGroup>
</bs3:col>
</bs3:row>
</bs3:col>
</bs3:row>
</bs3:grid>

0 comments on commit b463781

Please sign in to comment.