mirror of
https://github.com/vale981/Vulcan
synced 2025-03-09 20:16:39 -04:00
15 lines
482 B
JavaScript
15 lines
482 B
JavaScript
import React from 'react';
|
|
import { registerComponent } from 'meteor/vulcan:core';
|
|
|
|
const parseUrl = value => {
|
|
return value.slice(0,4) === 'http' ? <a href={value} target="_blank">{value}</a> : value;
|
|
}
|
|
|
|
const StaticComponent = ({ value, label }) => (
|
|
<div className="form-group row">
|
|
<label className="control-label col-sm-3">{label}</label>
|
|
<div className="col-sm-9">{parseUrl(value)}</div>
|
|
</div>
|
|
);
|
|
|
|
registerComponent('FormComponentStaticText', StaticComponent);
|