Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
nghyd
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Admin message
A compter du 1er avril, attention à vos pipelines :
Nouvelles limitations de Docker Hub
Show more breadcrumbs
Cassiopée
nghyd
Commits
a24f9db4
Commit
a24f9db4
authored
4 years ago
by
Mathias Chouet
Committed by
mathias.chouet
4 years ago
Browse files
Options
Downloads
Patches
Plain Diff
[WIP] subform system for PreBarrage
parent
4e2c3c7e
No related branches found
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
src/app/components/pb-schema/pb-schema.component.html
+1
-1
1 addition, 1 deletion
src/app/components/pb-schema/pb-schema.component.html
src/app/formulaire/definition/form-definition.ts
+0
-12
0 additions, 12 deletions
src/app/formulaire/definition/form-definition.ts
with
1 addition
and
13 deletions
src/app/components/pb-schema/pb-schema.component.html
+
1
−
1
View file @
a24f9db4
...
...
@@ -46,6 +46,6 @@
<div
id=
"schema"
#schema
></div>
<!--
<pre id="debug">{{ graphDef }} </pre>
-->
<pre
id=
"debug"
>
{{ graphDef }}
</pre>
</mat-card-content>
This diff is collapsed.
Click to expand it.
src/app/formulaire/definition/form-definition.ts
+
0
−
12
View file @
a24f9db4
...
...
@@ -24,7 +24,6 @@ import { TopFormulaireElementIterator } from "../form-iterator/top-element-itera
import
{
CalculatorResults
}
from
"
../../results/calculator-results
"
;
import
{
ServiceFactory
}
from
"
../../services/service-factory
"
;
import
{
PabTable
}
from
"
../elements/pab-table
"
;
import
{
PbSchema
}
from
'
../elements/pb-schema
'
;
/**
* classe de base pour tous les formulaires
...
...
@@ -223,13 +222,6 @@ export abstract class FormulaireDefinition extends FormulaireNode implements Obs
this
.
kids
.
push
(
tab
);
}
private
parse_pb_schema
(
json
:
{})
{
const
sch
:
PbSchema
=
new
PbSchema
(
this
);
sch
.
parseConfig
(
json
);
this
.
kids
.
push
(
sch
);
}
/**
* 1ère passe d'analyse de la configuration
*/
...
...
@@ -287,10 +279,6 @@ export abstract class FormulaireDefinition extends FormulaireNode implements Obs
this
.
parse_pab_table
(
conf
);
break
;
case
"
pb_schema
"
:
// not generic at all
this
.
parse_pb_schema
(
conf
);
break
;
default
:
throw
new
Error
(
`type d'objet de module de calcul
${
type
}
non pris en charge`
);
}
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment